Added toasts for fusion reactor

This commit is contained in:
Ayutac 2022-02-11 18:32:26 +01:00
parent 8a4e0397f4
commit 04290d2182
4 changed files with 180 additions and 0 deletions

View file

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

View file

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

View file

@ -0,0 +1,45 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:fusion_reactor/iridium_ore"
]
},
"criteria": {
"has_wolframium": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"fluid": "techreborn:wolframium",
"holder": "techreborn:cell"
}
]
}
},
"has_lithium": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"fluid": "techreborn:lithium",
"holder": "techreborn:cell"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:fusion_reactor/iridium_ore"
}
}
},
"requirements": [
[
"has_wolframium",
"has_lithium",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,45 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:fusion_reactor/platinum_dust"
]
},
"criteria": {
"has_wolframium": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"fluid": "techreborn:wolframium",
"holder": "techreborn:cell"
}
]
}
},
"has_beryllium": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"fluid": "techreborn:beryllium",
"holder": "techreborn:cell"
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:fusion_reactor/platinum_dust"
}
}
},
"requirements": [
[
"has_wolframium",
"has_beryllium",
"has_the_recipe"
]
]
}