diff --git a/src/main/resources/data/techreborn/recipes/crafting_shaped/adjustable_su.json b/src/main/resources/data/techreborn/recipes/crafting_shaped/adjustable_su.json new file mode 100644 index 000000000..787fc6ddd --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/crafting_shaped/adjustable_su.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "LLL", + "LCL", + "LLL" + ], + "key": { + "C": { + "item": "techreborn:energy_crystal" + }, + "L": { + "item": "techreborn:lapotronic_orb" + } + }, + "result": { + "item": "techreborn:adjustable_su" + } +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/crafting_shaped/alarm.json b/src/main/resources/data/techreborn/recipes/crafting_shaped/alarm.json new file mode 100644 index 000000000..94b624e24 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/crafting_shaped/alarm.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "ICI", + "SRS", + "ICI" + ], + "key": { + "R": { + "item": "minecraft:redstone_block" + }, + "C": { + "item": "techreborn:copper_cable" + }, + "S": { + "item": "techreborn:insulated_copper_cable" + }, + "I": { + "item": "minecraft:iron_ingot" + } + }, + "result": { + "item": "techreborn:alarm" + } +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/crafting_shaped/alloy_smelter.json b/src/main/resources/data/techreborn/recipes/crafting_shaped/alloy_smelter.json new file mode 100644 index 000000000..1169dfa85 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/crafting_shaped/alloy_smelter.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + " C ", + "FMF", + " " + ], + "key": { + "C": { + "item": "techreborn:electronic_circuit" + }, + "F": { + "item": "techreborn:electric_furnace" + }, + "M": { + "item": "techreborn:basic_machine_frame" + } + }, + "result": { + "item": "techreborn:alloy_smelter" + } +} diff --git a/src/main/resources/data/techreborn/recipes/crafting_shaped/auto_crafting_table.json b/src/main/resources/data/techreborn/recipes/crafting_shaped/auto_crafting_table.json new file mode 100644 index 000000000..b2f77737b --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/crafting_shaped/auto_crafting_table.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "MPM", + "PCP", + "MPM" + ], + "key": { + "P": { + "item": "techreborn:iron_plate" + }, + "C": { + "item": "minecraft:crafting_table" + }, + "M": { + "item": "techreborn:advanced_circuit" + } + }, + "result": { + "item": "techreborn:auto_crafting_table" + } +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/crafting_shaped/compressor.json b/src/main/resources/data/techreborn/recipes/crafting_shaped/compressor.json new file mode 100644 index 000000000..21cdebff7 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/crafting_shaped/compressor.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "S S", + "SCS", + "SMS" + ], + "key": { + "C": { + "item": "techreborn:electronic_circuit" + }, + "S": { + "item": "minecraft:stone" + }, + "M": { + "item": "techreborn:basic_machine_frame" + } + }, + "result": { + "item": "techreborn:compressor" + } +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/crafting_shaped/reinforced_glass.json b/src/main/resources/data/techreborn/recipes/crafting_shaped/reinforced_glass.json new file mode 100644 index 000000000..24e50c09b --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/crafting_shaped/reinforced_glass.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "GAG", + "GGG", + "GAG" + ], + "key": { + "A": { + "item": "techreborn:advanced_alloy_plate" + }, + "G": { + "item": "minecraft:glass" + } + }, + "result": { + "item": "techreborn:reinforced_glass", + "count": 7 + } +} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/crafting_shaped/reinforced_glass_alt.json b/src/main/resources/data/techreborn/recipes/crafting_shaped/reinforced_glass_alt.json new file mode 100644 index 000000000..27e4e0192 --- /dev/null +++ b/src/main/resources/data/techreborn/recipes/crafting_shaped/reinforced_glass_alt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "GGG", + "AGA", + "GGG" + ], + "key": { + "A": { + "item": "techreborn:advanced_alloy_plate" + }, + "G": { + "item": "minecraft:glass" + } + }, + "result": { + "item": "techreborn:reinforced_glass", + "count": 7 + } +} \ No newline at end of file