diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/storage_block/raw_iridium_storage_block.json b/src/main/resources/data/techreborn/recipes/crafting_table/storage_block/raw_iridium_storage_block.json new file mode 100644 index 000000000..e1ab0e7b9 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/crafting_table/storage_block/raw_iridium_storage_block.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "techreborn:raw_iridium" + } + }, + "result": { + "item": "techreborn:raw_iridium_storage_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/storage_block/raw_lead_storage_block.json b/src/main/resources/data/techreborn/recipes/crafting_table/storage_block/raw_lead_storage_block.json new file mode 100644 index 000000000..5dc478558 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/crafting_table/storage_block/raw_lead_storage_block.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "techreborn:raw_lead" + } + }, + "result": { + "item": "techreborn:raw_lead_storage_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/storage_block/raw_silver_storage_block.json b/src/main/resources/data/techreborn/recipes/crafting_table/storage_block/raw_silver_storage_block.json new file mode 100644 index 000000000..abde9febc --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/crafting_table/storage_block/raw_silver_storage_block.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "techreborn:raw_silver" + } + }, + "result": { + "item": "techreborn:raw_silver_storage_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/storage_block/raw_tin_storage_block.json b/src/main/resources/data/techreborn/recipes/crafting_table/storage_block/raw_tin_storage_block.json new file mode 100644 index 000000000..e81137ff9 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/crafting_table/storage_block/raw_tin_storage_block.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "techreborn:raw_tin" + } + }, + "result": { + "item": "techreborn:raw_tin_storage_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/storage_block/raw_tungsten_storage_block.json b/src/main/resources/data/techreborn/recipes/crafting_table/storage_block/raw_tungsten_storage_block.json new file mode 100644 index 000000000..658ae3846 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/crafting_table/storage_block/raw_tungsten_storage_block.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "techreborn:raw_tungsten" + } + }, + "result": { + "item": "techreborn:raw_tungsten_storage_block" + } +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/smelting/copper_block_from_raw_by_blasting.json b/src/main/resources/data/techreborn/recipes/smelting/copper_block_from_raw_by_blasting.json new file mode 100644 index 000000000..b2c8a4864 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/smelting/copper_block_from_raw_by_blasting.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "ingredient": { + "item": "minecraft:raw_copper_block" + }, + "result": "minecraft:copper_block", + "experience": 4.5, + "cookingtime": 750 +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/smelting/gold_block_from_raw_by_blasting.json b/src/main/resources/data/techreborn/recipes/smelting/gold_block_from_raw_by_blasting.json new file mode 100644 index 000000000..e200b9b82 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/smelting/gold_block_from_raw_by_blasting.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "ingredient": { + "item": "minecraft:raw_gold_block" + }, + "result": "minecraft:gold_block", + "experience": 4.5, + "cookingtime": 750 +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/smelting/iron_block_from_raw_by_blasting.json b/src/main/resources/data/techreborn/recipes/smelting/iron_block_from_raw_by_blasting.json new file mode 100644 index 000000000..61da50e47 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/smelting/iron_block_from_raw_by_blasting.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "ingredient": { + "item": "minecraft:raw_iron_block" + }, + "result": "minecraft:iron_block", + "experience": 4.5, + "cookingtime": 750 +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/smelting/lead_block_from_raw_by_blasting.json b/src/main/resources/data/techreborn/recipes/smelting/lead_block_from_raw_by_blasting.json new file mode 100644 index 000000000..db634d753 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/smelting/lead_block_from_raw_by_blasting.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "ingredient": { + "item": "techreborn:raw_lead_storage_block" + }, + "result": "techreborn:lead_storage_block", + "experience": 4.5, + "cookingtime": 750 +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/smelting/refined_iron_block_by_blasting.json b/src/main/resources/data/techreborn/recipes/smelting/refined_iron_block_by_blasting.json new file mode 100644 index 000000000..f4f2687da --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/smelting/refined_iron_block_by_blasting.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "ingredient": { + "item": "minecraft:iron_block" + }, + "result": "techreborn:refined_iron_storage_block", + "experience": 4.5, + "cookingtime": 750 +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/smelting/silver_block_from_raw_by_blasting.json b/src/main/resources/data/techreborn/recipes/smelting/silver_block_from_raw_by_blasting.json new file mode 100644 index 000000000..7442ba2e2 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/smelting/silver_block_from_raw_by_blasting.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "ingredient": { + "item": "techreborn:raw_silver_storage_block" + }, + "result": "techreborn:silver_storage_block", + "experience": 4.5, + "cookingtime": 750 +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/smelting/tin_block_from_raw_by_blasting.json b/src/main/resources/data/techreborn/recipes/smelting/tin_block_from_raw_by_blasting.json new file mode 100644 index 000000000..edc00b997 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/smelting/tin_block_from_raw_by_blasting.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "ingredient": { + "item": "techreborn:raw_tin_storage_block" + }, + "result": "techreborn:tin_storage_block", + "experience": 4.5, + "cookingtime": 750 +} \ No newline at end of file