diff --git a/src/main/resources/data/techreborn/advancements/recipes/rolling_machine/cupronickel_heating_coil.json b/src/main/resources/data/techreborn/advancements/recipes/rolling_machine/cupronickel_heating_coil.json new file mode 100644 index 000000000..8ed29226a --- /dev/null +++ b/src/main/resources/data/techreborn/advancements/recipes/rolling_machine/cupronickel_heating_coil.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "techreborn:rolling_machine/cupronickel_heating_coil" + ] + }, + "criteria": { + "has_nickel_ingot": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "tag": "c:nickel_ingots" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "techreborn:rolling_machine/cupronickel_heating_coil" + } + } + }, + "requirements": [ + [ + "has_nickel_ingot", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/advancements/recipes/rolling_machine/magnalium_plate.json b/src/main/resources/data/techreborn/advancements/recipes/rolling_machine/magnalium_plate.json new file mode 100644 index 000000000..b67a331cf --- /dev/null +++ b/src/main/resources/data/techreborn/advancements/recipes/rolling_machine/magnalium_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "techreborn:rolling_machine/magnalium_plate" + ] + }, + "criteria": { + "has_magnesium_dust": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "tag": "c:magnesium_dusts" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "techreborn:rolling_machine/magnalium_plate" + } + } + }, + "requirements": [ + [ + "has_magnesium_dust", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/advancements/recipes/rolling_machine/nichrome_heating_coil.json b/src/main/resources/data/techreborn/advancements/recipes/rolling_machine/nichrome_heating_coil.json new file mode 100644 index 000000000..660af476f --- /dev/null +++ b/src/main/resources/data/techreborn/advancements/recipes/rolling_machine/nichrome_heating_coil.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "techreborn:rolling_machine/nichrome_heating_coil" + ] + }, + "criteria": { + "has_chrome_ingot": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "tag": "c:chrome_ingots" + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "techreborn:rolling_machine/nichrome_heating_coil" + } + } + }, + "requirements": [ + [ + "has_chrome_ingot", + "has_the_recipe" + ] + ] +} \ No newline at end of file