mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-07 22:16:44 +01:00
Added recipe to convert apple pie slices back into apple pies
This commit is contained in:
parent
cc1b91de20
commit
1d5bd75d6a
2 changed files with 42 additions and 0 deletions
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"parent": "minecraft:recipes/root",
|
||||
"rewards": {
|
||||
"recipes": [
|
||||
"unicopia:apple_pie_slice_to_apple_pie"
|
||||
]
|
||||
},
|
||||
"criteria": {
|
||||
"has_ingredients": {
|
||||
"trigger": "minecraft:inventory_changed",
|
||||
"conditions": {
|
||||
"items": [
|
||||
{ "tag": [ "unicopia:apple_pie_slice" ] }
|
||||
]
|
||||
}
|
||||
},
|
||||
"has_the_recipe": {
|
||||
"trigger": "minecraft:recipe_unlocked",
|
||||
"conditions": {
|
||||
"recipe": "unicopia:apple_pie_slice_to_apple_pie"
|
||||
}
|
||||
}
|
||||
},
|
||||
"requirements": [
|
||||
[
|
||||
"has_ingredients",
|
||||
"has_the_recipe"
|
||||
]
|
||||
]
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{ "item": "unicopia:apple_pie_slice" },
|
||||
{ "item": "unicopia:apple_pie_slice" },
|
||||
{ "item": "unicopia:apple_pie_slice" },
|
||||
{ "item": "unicopia:apple_pie_slice" }
|
||||
],
|
||||
"result": {
|
||||
"item": "unicopia:apple_pie"
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue