Added recipe advancement for rock stew

This commit is contained in:
Sollace 2021-09-02 20:10:21 +02:00
parent 5894c8745c
commit 3b4b0e66a1

View file

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