diff --git a/src/main/resources/data/techreborn/advancements/recipes/blast_furnace/soul_sand.json b/src/main/resources/data/techreborn/advancements/recipes/blast_furnace/soul_sand.json new file mode 100644 index 000000000..fa12c7125 --- /dev/null +++ b/src/main/resources/data/techreborn/advancements/recipes/blast_furnace/soul_sand.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "rewards": { + "recipes": [ + "techreborn:blast_furnace/soul_sand" + ] + }, + "criteria": { + "has_red_sand": { + "trigger": "minecraft:inventory_changed", + "conditions": { + "items": [ + { + "items": ["minecraft:red_sand"] + } + ] + } + }, + "has_the_recipe": { + "trigger": "minecraft:recipe_unlocked", + "conditions": { + "recipe": "techreborn:blast_furnace/soul_sand" + } + } + }, + "requirements": [ + [ + "has_red_sand", + "has_the_recipe" + ] + ] +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/blast_furnace/soul_sand.json b/src/main/resources/data/techreborn/recipes/blast_furnace/soul_sand.json new file mode 100644 index 000000000..2234e1c17 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/blast_furnace/soul_sand.json @@ -0,0 +1,23 @@ +{ + "type": "techreborn:blast_furnace", + "power": 128, + "time": 500, + "heat": 3000, + "ingredients": [ + { + "item": "minecraft:red_sand", + "count": 8 + }, + { + "fluid": "techreborn:carbon", + "holder": "techreborn:cell", + "count": 5 + } + ], + "results": [ + { + "item": "minecraft:soul_sand", + "count": 8 + } + ] +} \ No newline at end of file