Fixed cloud lump recipe

This commit is contained in:
Sollace 2023-11-07 15:42:55 +00:00
parent 034cc77808
commit 53c16416c0
No known key found for this signature in database
GPG key ID: E52FACE7B5C773DB
2 changed files with 31 additions and 1 deletions

View file

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

View file

@ -1,7 +1,7 @@
{ {
"type": "minecraft:crafting_shapeless", "type": "minecraft:crafting_shapeless",
"ingredients": [ "ingredients": [
{ "tag": "cloud_jars" } { "tag": "unicopia:cloud_jars" }
], ],
"result": { "item": "unicopia:cloud_lump", "count": 4 } "result": { "item": "unicopia:cloud_lump", "count": 4 }
} }