From 42f0d5ce42dc5b77bdee2ec4734df5b59ea42743 Mon Sep 17 00:00:00 2001 From: drcrazy Date: Fri, 17 Sep 2021 23:20:11 +0300 Subject: [PATCH] Smelt iron block to refined iron block. Closes #2487 --- .../data/techreborn/recipes/compressor/wooden_plate.json | 4 ++-- .../data/techreborn/recipes/crafting_table/paper.json | 6 +++--- .../techreborn/recipes/smelting/refined_rion_block.json | 9 +++++++++ 3 files changed, 14 insertions(+), 5 deletions(-) create mode 100644 src/main/resources/data/techreborn/recipes/smelting/refined_rion_block.json diff --git a/src/main/resources/data/techreborn/recipes/compressor/wooden_plate.json b/src/main/resources/data/techreborn/recipes/compressor/wooden_plate.json index af65bce4d..4e37e3214 100644 --- a/src/main/resources/data/techreborn/recipes/compressor/wooden_plate.json +++ b/src/main/resources/data/techreborn/recipes/compressor/wooden_plate.json @@ -4,13 +4,13 @@ "time": 300, "ingredients": [ { - "tag": "c:sawdusts", + "tag": "c:saw_dusts", "count": 2 } ], "results": [ { - "item": "techreborn:wooden_plate" + "item": "techreborn:wood_plate" } ] } \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/paper.json b/src/main/resources/data/techreborn/recipes/crafting_table/paper.json index 46d751328..66bc652cb 100644 --- a/src/main/resources/data/techreborn/recipes/crafting_table/paper.json +++ b/src/main/resources/data/techreborn/recipes/crafting_table/paper.json @@ -2,13 +2,13 @@ "type": "minecraft:crafting_shapeless", "ingredients": [ { - "item": "c:sawdusts" + "tag": "c:saw_dusts" }, { - "item": "c:sawdusts" + "tag": "c:saw_dusts" }, { - "item": "c:sawdusts" + "tag": "c:saw_dusts" }, { "item": "minecraft:water_bucket" diff --git a/src/main/resources/data/techreborn/recipes/smelting/refined_rion_block.json b/src/main/resources/data/techreborn/recipes/smelting/refined_rion_block.json new file mode 100644 index 000000000..d0a195a81 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/smelting/refined_rion_block.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "ingredient": { + "item": "minecraft:iron_block" + }, + "result": "techreborn:refined_iron_storage_block", + "experience": 4.5, + "cookingtime": 1500 +} \ No newline at end of file