Added recipes to obtain the hay burger, hay fries, and daffodil daisy sandwich

This commit is contained in:
Sollace 2022-09-28 22:44:48 +02:00
parent 9a614313b8
commit 0f60cbce34
5 changed files with 82 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -0,0 +1,30 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"unicopia:hay_fries"
]
},
"criteria": {
"has_ingredients": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{ "tag": "unicopia:oats" }
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "unicopia:hay_fries"
}
}
},
"requirements": [
[
"has_ingredients",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" # ",
"~~~",
" # "
],
"key": {
"#": {
"item": "minecraft:bread"
},
"~": {
"tag": "minecraft:small_flowers"
}
},
"result": {
"item": "unicopia:daffodil_daisy_sandwich"
}
}

View file

@ -0,0 +1,19 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
" # ",
"~~~",
" # "
],
"key": {
"#": {
"item": "minecraft:bread"
},
"~": {
"item": "unicopia:oats"
}
},
"result": {
"item": "unicopia:hay_burger"
}
}

View file

@ -0,0 +1,14 @@
{
"type": "minecraft:crafting_shaped",
"pattern": [
"###"
],
"key": {
"#": {
"item": "unicopia:oats"
}
},
"result": {
"item": "unicopia:hay_fries"
}
}