Added Vacuum Freezer Recipe toasts w/o Helium Plasma

This commit is contained in:
Ayutac 2021-12-21 22:47:01 +01:00
parent 145427db0b
commit 52c9802f4d
2 changed files with 64 additions and 0 deletions

View file

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

View file

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