Added toast for new vacuum freezer recipe

This commit is contained in:
Ayutac 2022-02-10 08:50:28 +01:00
parent 1017ea672c
commit c2fa34c92b

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:vacuum_freezer/blue_ice"
]
},
"criteria": {
"has_packed_ice": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["minecraft:packed_ice"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:vacuum_freezer/blue_ice"
}
}
},
"requirements": [
[
"has_packed_ice",
"has_the_recipe"
]
]
}