Added missing fluid recipes to centrifuge

This commit is contained in:
Ayutac 2022-02-11 18:26:58 +01:00
parent 0e18f11dea
commit 8a4e0397f4
6 changed files with 198 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:centrifuge/calcium_carbonate_cell"
]
},
"criteria": {
"has_calcium_carbonate": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"fluid": "techreborn:calcium_carbonate",
"holder": "techreborn:cell"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:centrifuge/calcium_carbonate_cell"
}
}
},
"requirements": [
[
"has_calcium_carbonate",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,33 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:centrifuge/deuterium_cell"
]
},
"criteria": {
"has_deuterium": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"fluid": "techreborn:deuterium",
"holder": "techreborn:cell"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:centrifuge/deuterium_cell"
}
}
},
"requirements": [
[
"has_deuterium",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,33 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:centrifuge/helium_cell"
]
},
"criteria": {
"has_helium": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"fluid": "techreborn:helium",
"holder": "techreborn:cell"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:centrifuge/helium_cell"
}
}
},
"requirements": [
[
"has_helium",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,33 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:centrifuge/hydrogen_cell"
]
},
"criteria": {
"has_hydrogen": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"fluid": "techreborn:hydrogen",
"holder": "techreborn:cell"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:centrifuge/hydrogen_cell"
}
}
},
"requirements": [
[
"has_hydrogen",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,33 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:centrifuge/lava_cell"
]
},
"criteria": {
"has_lava": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"fluid": "techreborn:lava",
"holder": "techreborn:cell"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:centrifuge/lava_cell"
}
}
},
"requirements": [
[
"has_lava",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,33 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:centrifuge/sulfur_cell"
]
},
"criteria": {
"has_sulfur": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"fluid": "techreborn:sulfur",
"holder": "techreborn:cell"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:centrifuge/sulfur_cell"
}
}
},
"requirements": [
[
"has_sulfur",
"has_the_recipe"
]
]
}