diff --git a/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/enchanted_golden_apple.json b/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/enchanted_golden_apple.json new file mode 100644 index 000000000..bb7cbb4b3 --- /dev/null +++ b/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/enchanted_golden_apple.json @@ -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" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/ender_eye.json b/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/ender_eye.json new file mode 100644 index 000000000..ecf3bbfee --- /dev/null +++ b/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/ender_eye.json @@ -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" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/glistering_melon_slice.json b/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/glistering_melon_slice.json new file mode 100644 index 000000000..c5900dbbc --- /dev/null +++ b/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/glistering_melon_slice.json @@ -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" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/golden_apple.json b/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/golden_apple.json new file mode 100644 index 000000000..14fccae5e --- /dev/null +++ b/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/golden_apple.json @@ -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" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/golden_carrot.json b/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/golden_carrot.json new file mode 100644 index 000000000..15b4d2e34 --- /dev/null +++ b/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/golden_carrot.json @@ -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" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/leather.json b/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/leather.json new file mode 100644 index 000000000..9bb3c4bee --- /dev/null +++ b/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/leather.json @@ -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" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/magma_cream.json b/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/magma_cream.json new file mode 100644 index 000000000..2fed52e8b --- /dev/null +++ b/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/magma_cream.json @@ -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" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/synthetic_redstone_crystal.json b/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/synthetic_redstone_crystal.json new file mode 100644 index 000000000..7c589ba97 --- /dev/null +++ b/src/main/resources/data/techreborn/advancements/recipes/chemical_reactor/synthetic_redstone_crystal.json @@ -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" + ] + ] +} \ No newline at end of file