Added Chemical Reactor Recipe toasts w/o fluids

This commit is contained in:
Ayutac 2021-12-21 20:12:56 +01:00
parent 2928d8a713
commit 560d0b102f
8 changed files with 300 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:chemical_reactor/enchanted_golden_apple"
]
},
"criteria": {
"has_gold_block": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["minecraft:gold_block"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:chemical_reactor/enchanted_golden_apple"
}
}
},
"requirements": [
[
"has_gold_block",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,43 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:chemical_reactor/ender_eye"
]
},
"criteria": {
"has_blaze_powder": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["minecraft:blaze_powder"]
}
]
}
},
"has_ender_pearl": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["minecraft:ender_pearl"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:chemical_reactor/ender_eye"
}
}
},
"requirements": [
[
"has_blaze_powder",
"has_ender_pearl",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:chemical_reactor/glistering_melon_slice"
]
},
"criteria": {
"has_melon_slice": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["minecraft:melon_slice"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:chemical_reactor/glistering_melon_slice"
}
}
},
"requirements": [
[
"has_melon_slice",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:chemical_reactor/golden_apple"
]
},
"criteria": {
"has_apple": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["minecraft:apple"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:chemical_reactor/golden_apple"
}
}
},
"requirements": [
[
"has_apple",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,32 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:chemical_reactor/golden_carrot"
]
},
"criteria": {
"has_carrot": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["minecraft:carrot"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:chemical_reactor/golden_carrot"
}
}
},
"requirements": [
[
"has_carrot",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,43 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:chemical_reactor/leather"
]
},
"criteria": {
"has_rotten_flesh": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["minecraft:rotten_flesh"]
}
]
}
},
"has_ashes_dust": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["techreborn:ashes_dust"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:chemical_reactor/leather"
}
}
},
"requirements": [
[
"has_rotten_flesh",
"has_ashes_dust",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,43 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:chemical_reactor/magma_cream"
]
},
"criteria": {
"has_blaze_powder": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["minecraft:blaze_powder"]
}
]
}
},
"has_slime_ball": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["minecraft:slime_ball"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:chemical_reactor/magma_cream"
}
}
},
"requirements": [
[
"has_blaze_powder",
"has_slime_ball",
"has_the_recipe"
]
]
}

View file

@ -0,0 +1,43 @@
{
"parent": "minecraft:recipes/root",
"rewards": {
"recipes": [
"techreborn:chemical_reactor/synthetic_redstone_crystal"
]
},
"criteria": {
"has_redstone": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["minecraft:redstone"]
}
]
}
},
"has_diamond": {
"trigger": "minecraft:inventory_changed",
"conditions": {
"items": [
{
"items": ["minecraft:diamond"]
}
]
}
},
"has_the_recipe": {
"trigger": "minecraft:recipe_unlocked",
"conditions": {
"recipe": "techreborn:chemical_reactor/synthetic_redstone_crystal"
}
}
},
"requirements": [
[
"has_redstone",
"has_diamond",
"has_the_recipe"
]
]
}