From 52c9802f4d008c45b651570315ebab421b694b74 Mon Sep 17 00:00:00 2001 From: Ayutac Date: Tue, 21 Dec 2021 22:47:01 +0100 Subject: [PATCH] Added Vacuum Freezer Recipe toasts w/o Helium Plasma --- .../recipes/vacuum_freezer/packed_ice.json | 32 +++++++++++++++++++ .../vacuum_freezer/tungstensteel_ingot.json | 32 +++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 src/main/resources/data/techreborn/advancements/recipes/vacuum_freezer/packed_ice.json create mode 100644 src/main/resources/data/techreborn/advancements/recipes/vacuum_freezer/tungstensteel_ingot.json diff --git a/src/main/resources/data/techreborn/advancements/recipes/vacuum_freezer/packed_ice.json b/src/main/resources/data/techreborn/advancements/recipes/vacuum_freezer/packed_ice.json new file mode 100644 index 000000000..527416419 --- /dev/null +++ b/src/main/resources/data/techreborn/advancements/recipes/vacuum_freezer/packed_ice.json @@ -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" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/advancements/recipes/vacuum_freezer/tungstensteel_ingot.json b/src/main/resources/data/techreborn/advancements/recipes/vacuum_freezer/tungstensteel_ingot.json new file mode 100644 index 000000000..eb1baedd7 --- /dev/null +++ b/src/main/resources/data/techreborn/advancements/recipes/vacuum_freezer/tungstensteel_ingot.json @@ -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" + ] + ] +} \ No newline at end of file