diff --git a/src/main/java/techreborn/events/ModRegistry.java b/src/main/java/techreborn/events/ModRegistry.java index bdcbef596..2194dfdd7 100644 --- a/src/main/java/techreborn/events/ModRegistry.java +++ b/src/main/java/techreborn/events/ModRegistry.java @@ -112,6 +112,7 @@ public class ModRegistry { Arrays.stream(Nuggets.values()).forEach(value -> RebornRegistry.registerItem(value.item)); Arrays.stream(Gems.values()).forEach(value -> RebornRegistry.registerItem(value.item)); Arrays.stream(Dusts.values()).forEach(value -> RebornRegistry.registerItem(value.item)); + Arrays.stream(RawMetals.values()).forEach(value -> RebornRegistry.registerItem(value.item)); Arrays.stream(SmallDusts.values()).forEach(value -> RebornRegistry.registerItem(value.item)); Arrays.stream(Plates.values()).forEach(value -> RebornRegistry.registerItem(value.item)); Arrays.stream(Parts.values()).forEach(value -> RebornRegistry.registerItem(value.item)); diff --git a/src/main/java/techreborn/init/TRContent.java b/src/main/java/techreborn/init/TRContent.java index 96cc5fe00..46edec5e1 100644 --- a/src/main/java/techreborn/init/TRContent.java +++ b/src/main/java/techreborn/init/TRContent.java @@ -588,10 +588,9 @@ public class TRContent { public enum Dusts implements ItemConvertible { ALMANDINE, ALUMINUM, ANDESITE, ANDRADITE, ASHES, BASALT, BAUXITE, BRASS, BRONZE, CALCITE, CHARCOAL, CHROME, CINNABAR, CLAY, COAL, DARK_ASHES, DIAMOND, DIORITE, ELECTRUM, EMERALD, ENDER_EYE, ENDER_PEARL, ENDSTONE, - FLINT, GALENA, GRANITE, GROSSULAR, INVAR, LAZURITE, LEAD, MAGNESIUM, MANGANESE, MARBLE, NETHERRACK, + FLINT, GALENA, GRANITE, GROSSULAR, INVAR, LAZURITE, MAGNESIUM, MANGANESE, MARBLE, NETHERRACK, NICKEL, OBSIDIAN, OLIVINE, PERIDOT, PHOSPHOROUS, PLATINUM, PYRITE, PYROPE, QUARTZ, RED_GARNET, RUBY, SALTPETER, - SAPPHIRE, SAW, SILVER, SODALITE, SPESSARTINE, SPHALERITE, STEEL, SULFUR, TIN, TITANIUM, TUNGSTEN, UVAROVITE, - YELLOW_GARNET, ZINC; + SAPPHIRE, SAW, SODALITE, SPESSARTINE, SPHALERITE, STEEL, SULFUR, TITANIUM, UVAROVITE, YELLOW_GARNET, ZINC; public final String name; public final Item item; @@ -616,6 +615,25 @@ public class TRContent { } } + + public enum RawMetals implements ItemConvertible{ + IRIDIUM, LEAD, SILVER, TIN, TUNGSTEN; + + public final String name; + public final Item item; + + RawMetals() { + name = this.toString().toLowerCase(Locale.ROOT); + item = new Item(new Item.Settings().group(TechReborn.ITEMGROUP)); + InitUtils.setup(item, "raw_" + name); + } + + @Override + public Item asItem() { + return item; + } + } + public enum SmallDusts implements ItemConvertible { ALMANDINE, ALUMINUM, ANDESITE, ANDRADITE, ASHES, BASALT, BAUXITE, BRASS, BRONZE, CALCITE, CHARCOAL, CHROME, CINNABAR, CLAY, COAL, COPPER, DARK_ASHES, DIAMOND, DIORITE, ELECTRUM, EMERALD, ENDER_EYE, ENDER_PEARL, ENDSTONE, diff --git a/src/main/resources/assets/techreborn/lang/en_us.json b/src/main/resources/assets/techreborn/lang/en_us.json index f8b84e296..dc0f14f8b 100644 --- a/src/main/resources/assets/techreborn/lang/en_us.json +++ b/src/main/resources/assets/techreborn/lang/en_us.json @@ -350,7 +350,6 @@ "item.techreborn.cinnabar_dust": "Cinnabar Dust", "item.techreborn.clay_dust": "Clay Dust", "item.techreborn.coal_dust": "Coal Dust", - "item.techreborn.copper_dust": "Copper Dust", "item.techreborn.dark_ashes_dust": "Dark Ashes", "item.techreborn.diamond_dust": "Diamond Dust", "item.techreborn.diorite_dust": "Diorite Dust", @@ -361,13 +360,10 @@ "item.techreborn.endstone_dust": "Endstone Dust", "item.techreborn.flint_dust": "Flint Dust", "item.techreborn.galena_dust": "Galena Dust", - "item.techreborn.gold_dust": "Gold Dust", "item.techreborn.granite_dust": "Granite Dust", "item.techreborn.grossular_dust": "Grossular Dust", "item.techreborn.invar_dust": "Invar Dust", - "item.techreborn.iron_dust": "Iron Dust", "item.techreborn.lazurite_dust": "Lazurite Dust", - "item.techreborn.lead_dust": "Lead Dust", "item.techreborn.magnesium_dust": "Magnesium Dust", "item.techreborn.manganese_dust": "Manganese Dust", "item.techreborn.marble_dust": "Marble Dust", @@ -386,19 +382,22 @@ "item.techreborn.saltpeter_dust": "Saltpeter Dust", "item.techreborn.sapphire_dust": "Sapphire Dust", "item.techreborn.saw_dust": "Saw Dust", - "item.techreborn.silver_dust": "Silver Dust", "item.techreborn.sodalite_dust": "Sodalite Dust", "item.techreborn.spessartine_dust": "Spessartine Dust", "item.techreborn.sphalerite_dust": "Sphalerite Dust", "item.techreborn.steel_dust": "Steel Dust", "item.techreborn.sulfur_dust": "Sulfur Dust", - "item.techreborn.tin_dust": "Tin Dust", "item.techreborn.titanium_dust": "Titanium Dust", - "item.techreborn.tungsten_dust": "Tungsten Dust", "item.techreborn.uvarovite_dust": "Uvarovite Dust", "item.techreborn.yellow_garnet_dust": "Yellow Garnet Dust", "item.techreborn.zinc_dust": "Zinc Dust", + "item.techreborn.raw_iridium": "Raw Iridium", + "item.techreborn.raw_lead": "Raw Lead", + "item.techreborn.raw_silver": "Raw Silver", + "item.techreborn.raw_tin": "Raw Tin", + "item.techreborn.raw_tungsten": "Raw Tungsten", + "_comment8": "Small Dusts", "item.techreborn.almandine_small_dust": "Small Pile of Almandine Dust", "item.techreborn.aluminum_small_dust": "Small Pile of Aluminium Dust", diff --git a/src/main/resources/assets/techreborn/models/item/raw_iridium.json b/src/main/resources/assets/techreborn/models/item/raw_iridium.json new file mode 100644 index 000000000..24e86e33b --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/raw_iridium.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "techreborn:item/rawmetal/raw_iridium" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/raw_lead.json b/src/main/resources/assets/techreborn/models/item/raw_lead.json new file mode 100644 index 000000000..9573cc6a9 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/raw_lead.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "techreborn:item/rawmetal/raw_lead" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/raw_silver.json b/src/main/resources/assets/techreborn/models/item/raw_silver.json new file mode 100644 index 000000000..da440463a --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/raw_silver.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "techreborn:item/rawmetal/raw_silver" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/raw_tin.json b/src/main/resources/assets/techreborn/models/item/raw_tin.json new file mode 100644 index 000000000..4037f1ef9 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/raw_tin.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "techreborn:item/rawmetal/raw_tin" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/raw_tungsten.json b/src/main/resources/assets/techreborn/models/item/raw_tungsten.json new file mode 100644 index 000000000..f75ed5c34 --- /dev/null +++ b/src/main/resources/assets/techreborn/models/item/raw_tungsten.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "techreborn:item/rawmetal/raw_tungsten" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/textures/item/rawmetal/raw_iridium.png b/src/main/resources/assets/techreborn/textures/item/rawmetal/raw_iridium.png new file mode 100644 index 000000000..af01ce0ae Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/item/rawmetal/raw_iridium.png differ diff --git a/src/main/resources/assets/techreborn/textures/item/rawmetal/raw_lead.png b/src/main/resources/assets/techreborn/textures/item/rawmetal/raw_lead.png new file mode 100644 index 000000000..ca55901da Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/item/rawmetal/raw_lead.png differ diff --git a/src/main/resources/assets/techreborn/textures/item/rawmetal/raw_silver.png b/src/main/resources/assets/techreborn/textures/item/rawmetal/raw_silver.png new file mode 100644 index 000000000..bdfb31789 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/item/rawmetal/raw_silver.png differ diff --git a/src/main/resources/assets/techreborn/textures/item/rawmetal/raw_tin.png b/src/main/resources/assets/techreborn/textures/item/rawmetal/raw_tin.png new file mode 100644 index 000000000..82195c902 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/item/rawmetal/raw_tin.png differ diff --git a/src/main/resources/assets/techreborn/textures/item/rawmetal/raw_tungsten.png b/src/main/resources/assets/techreborn/textures/item/rawmetal/raw_tungsten.png new file mode 100644 index 000000000..db6ba459b Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/item/rawmetal/raw_tungsten.png differ diff --git a/src/main/resources/data/c/tags/items/lead_dusts.json b/src/main/resources/data/c/tags/items/lead_dusts.json deleted file mode 100644 index d68d1331a..000000000 --- a/src/main/resources/data/c/tags/items/lead_dusts.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "values": [ - "techreborn:lead_dust" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/items/silver_dusts.json b/src/main/resources/data/c/tags/items/silver_dusts.json deleted file mode 100644 index dae3a8e9e..000000000 --- a/src/main/resources/data/c/tags/items/silver_dusts.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "values": [ - "techreborn:silver_dust" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/items/tin_dusts.json b/src/main/resources/data/c/tags/items/tin_dusts.json deleted file mode 100644 index c2068639b..000000000 --- a/src/main/resources/data/c/tags/items/tin_dusts.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "values": [ - "techreborn:tin_dust" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/c/tags/items/tungsten_dusts.json b/src/main/resources/data/c/tags/items/tungsten_dusts.json deleted file mode 100644 index a05f5f9a5..000000000 --- a/src/main/resources/data/c/tags/items/tungsten_dusts.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "replace": false, - "values": [ - "techreborn:tungsten_dust" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/alloy_smelter/bronze_ingot_from_dust.json b/src/main/resources/data/techreborn/recipes/alloy_smelter/bronze_ingot_from_raw.json similarity index 88% rename from src/main/resources/data/techreborn/recipes/alloy_smelter/bronze_ingot_from_dust.json rename to src/main/resources/data/techreborn/recipes/alloy_smelter/bronze_ingot_from_raw.json index 4566529ed..f0d2019b6 100644 --- a/src/main/resources/data/techreborn/recipes/alloy_smelter/bronze_ingot_from_dust.json +++ b/src/main/resources/data/techreborn/recipes/alloy_smelter/bronze_ingot_from_raw.json @@ -4,7 +4,7 @@ "time": 200, "ingredients": [ { - "tag": "c:tin_dusts" + "item": "techreborn:raw_tin" }, { "count": 3, diff --git a/src/main/resources/data/techreborn/recipes/alloy_smelter/bronze_ingot_from_dust_alt.json b/src/main/resources/data/techreborn/recipes/alloy_smelter/bronze_ingot_from_raw_alt.json similarity index 88% rename from src/main/resources/data/techreborn/recipes/alloy_smelter/bronze_ingot_from_dust_alt.json rename to src/main/resources/data/techreborn/recipes/alloy_smelter/bronze_ingot_from_raw_alt.json index d8da82c0d..79f8889ae 100644 --- a/src/main/resources/data/techreborn/recipes/alloy_smelter/bronze_ingot_from_dust_alt.json +++ b/src/main/resources/data/techreborn/recipes/alloy_smelter/bronze_ingot_from_raw_alt.json @@ -4,7 +4,7 @@ "time": 200, "ingredients": [ { - "tag": "c:tin_dusts" + "item": "techreborn:raw_tin" }, { "count": 3, diff --git a/src/main/resources/data/techreborn/recipes/alloy_smelter/electrum_ingot_from_dust.json b/src/main/resources/data/techreborn/recipes/alloy_smelter/electrum_ingot_from_raw.json similarity index 86% rename from src/main/resources/data/techreborn/recipes/alloy_smelter/electrum_ingot_from_dust.json rename to src/main/resources/data/techreborn/recipes/alloy_smelter/electrum_ingot_from_raw.json index ddf7c940d..2049f201a 100644 --- a/src/main/resources/data/techreborn/recipes/alloy_smelter/electrum_ingot_from_dust.json +++ b/src/main/resources/data/techreborn/recipes/alloy_smelter/electrum_ingot_from_raw.json @@ -7,7 +7,7 @@ "item": "minecraft:raw_gold" }, { - "tag": "c:silver_dusts" + "item": "techreborn:raw_silver" } ], "results": [ diff --git a/src/main/resources/data/techreborn/recipes/alloy_smelter/electrum_ingot_from_dust_alt.json b/src/main/resources/data/techreborn/recipes/alloy_smelter/electrum_ingot_from_raw_alt.json similarity index 86% rename from src/main/resources/data/techreborn/recipes/alloy_smelter/electrum_ingot_from_dust_alt.json rename to src/main/resources/data/techreborn/recipes/alloy_smelter/electrum_ingot_from_raw_alt.json index 710ddce18..0ba7c224e 100644 --- a/src/main/resources/data/techreborn/recipes/alloy_smelter/electrum_ingot_from_dust_alt.json +++ b/src/main/resources/data/techreborn/recipes/alloy_smelter/electrum_ingot_from_raw_alt.json @@ -7,7 +7,7 @@ "item": "minecraft:gold_ingot" }, { - "tag": "c:silver_dusts" + "item": "techreborn:raw_silver" } ], "results": [ diff --git a/src/main/resources/data/techreborn/recipes/alloy_smelter/electrum_ingot_from_dust_alt_alt.json b/src/main/resources/data/techreborn/recipes/alloy_smelter/electrum_ingot_from_raw_alt_alt.json similarity index 100% rename from src/main/resources/data/techreborn/recipes/alloy_smelter/electrum_ingot_from_dust_alt_alt.json rename to src/main/resources/data/techreborn/recipes/alloy_smelter/electrum_ingot_from_raw_alt_alt.json diff --git a/src/main/resources/data/techreborn/recipes/blast_furnace/tungsten_ingot.json b/src/main/resources/data/techreborn/recipes/blast_furnace/tungsten_ingot.json index c24e327fc..245be39b6 100644 --- a/src/main/resources/data/techreborn/recipes/blast_furnace/tungsten_ingot.json +++ b/src/main/resources/data/techreborn/recipes/blast_furnace/tungsten_ingot.json @@ -5,7 +5,7 @@ "heat": 2500, "ingredients": [ { - "tag": "c:tungsten_dusts" + "item": "techreborn:raw_tungsten" } ], "results": [ diff --git a/src/main/resources/data/techreborn/recipes/centrifuge/lead_dust.json b/src/main/resources/data/techreborn/recipes/centrifuge/raw_lead.json similarity index 84% rename from src/main/resources/data/techreborn/recipes/centrifuge/lead_dust.json rename to src/main/resources/data/techreborn/recipes/centrifuge/raw_lead.json index efb9f0c0b..4f6b4be33 100644 --- a/src/main/resources/data/techreborn/recipes/centrifuge/lead_dust.json +++ b/src/main/resources/data/techreborn/recipes/centrifuge/raw_lead.json @@ -5,7 +5,7 @@ "ingredients": [ { "count": 2, - "tag": "c:lead_dusts" + "item": "techreborn:raw_lead" } ], "results": [ diff --git a/src/main/resources/data/techreborn/recipes/centrifuge/silver_dust.json b/src/main/resources/data/techreborn/recipes/centrifuge/raw_silver.json similarity index 83% rename from src/main/resources/data/techreborn/recipes/centrifuge/silver_dust.json rename to src/main/resources/data/techreborn/recipes/centrifuge/raw_silver.json index 9234b9b0f..67db6087b 100644 --- a/src/main/resources/data/techreborn/recipes/centrifuge/silver_dust.json +++ b/src/main/resources/data/techreborn/recipes/centrifuge/raw_silver.json @@ -5,7 +5,7 @@ "ingredients": [ { "count": 2, - "tag": "c:silver_dusts" + "item": "techreborn:raw_silver" } ], "results": [ diff --git a/src/main/resources/data/techreborn/recipes/centrifuge/tin_dust.json b/src/main/resources/data/techreborn/recipes/centrifuge/raw_tin.json similarity index 87% rename from src/main/resources/data/techreborn/recipes/centrifuge/tin_dust.json rename to src/main/resources/data/techreborn/recipes/centrifuge/raw_tin.json index d536ac216..1ffe640d0 100644 --- a/src/main/resources/data/techreborn/recipes/centrifuge/tin_dust.json +++ b/src/main/resources/data/techreborn/recipes/centrifuge/raw_tin.json @@ -5,7 +5,7 @@ "ingredients": [ { "count": 2, - "tag": "c:tin_dusts" + "item": "techreborn:raw_tin" } ], "results": [ diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/cable/glassfiber_cable_6.json b/src/main/resources/data/techreborn/recipes/crafting_table/cable/glassfiber_cable_6.json index a261aaa9d..7ad8b93b0 100644 --- a/src/main/resources/data/techreborn/recipes/crafting_table/cable/glassfiber_cable_6.json +++ b/src/main/resources/data/techreborn/recipes/crafting_table/cable/glassfiber_cable_6.json @@ -10,7 +10,7 @@ "item": "minecraft:glass" }, "S": { - "tag": "c:silver_dusts" + "item": "techreborn:raw_silver" }, "D": { "tag": "c:diamond_dusts" diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/dust/lead_dust.json b/src/main/resources/data/techreborn/recipes/crafting_table/dust/raw_lead.json similarity index 89% rename from src/main/resources/data/techreborn/recipes/crafting_table/dust/lead_dust.json rename to src/main/resources/data/techreborn/recipes/crafting_table/dust/raw_lead.json index 967dedc9e..ecf6a749a 100644 --- a/src/main/resources/data/techreborn/recipes/crafting_table/dust/lead_dust.json +++ b/src/main/resources/data/techreborn/recipes/crafting_table/dust/raw_lead.json @@ -15,6 +15,6 @@ } ], "result": { - "item": "techreborn:lead_dust" + "item": "techreborn:raw_lead" } } \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/dust/silver_dust.json b/src/main/resources/data/techreborn/recipes/crafting_table/dust/raw_silver.json similarity index 89% rename from src/main/resources/data/techreborn/recipes/crafting_table/dust/silver_dust.json rename to src/main/resources/data/techreborn/recipes/crafting_table/dust/raw_silver.json index 40e66bde7..a42390d84 100644 --- a/src/main/resources/data/techreborn/recipes/crafting_table/dust/silver_dust.json +++ b/src/main/resources/data/techreborn/recipes/crafting_table/dust/raw_silver.json @@ -15,6 +15,6 @@ } ], "result": { - "item": "techreborn:silver_dust" + "item": "techreborn:raw_silver" } } \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/dust/tin_dust.json b/src/main/resources/data/techreborn/recipes/crafting_table/dust/raw_tin.json similarity index 90% rename from src/main/resources/data/techreborn/recipes/crafting_table/dust/tin_dust.json rename to src/main/resources/data/techreborn/recipes/crafting_table/dust/raw_tin.json index f7dbe292d..18cc9d04f 100644 --- a/src/main/resources/data/techreborn/recipes/crafting_table/dust/tin_dust.json +++ b/src/main/resources/data/techreborn/recipes/crafting_table/dust/raw_tin.json @@ -15,6 +15,6 @@ } ], "result": { - "item": "techreborn:tin_dust" + "item": "techreborn:raw_tin" } } \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/dust/tungsten_dust.json b/src/main/resources/data/techreborn/recipes/crafting_table/dust/raw_tungsten.json similarity index 89% rename from src/main/resources/data/techreborn/recipes/crafting_table/dust/tungsten_dust.json rename to src/main/resources/data/techreborn/recipes/crafting_table/dust/raw_tungsten.json index a6e496fd4..dc6f824fb 100644 --- a/src/main/resources/data/techreborn/recipes/crafting_table/dust/tungsten_dust.json +++ b/src/main/resources/data/techreborn/recipes/crafting_table/dust/raw_tungsten.json @@ -15,6 +15,6 @@ } ], "result": { - "item": "techreborn:tungsten_dust" + "item": "techreborn:raw_tungsten" } } \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/parts/neutron_reflector.json b/src/main/resources/data/techreborn/recipes/crafting_table/parts/neutron_reflector.json index f01367faf..3f3f0970c 100644 --- a/src/main/resources/data/techreborn/recipes/crafting_table/parts/neutron_reflector.json +++ b/src/main/resources/data/techreborn/recipes/crafting_table/parts/neutron_reflector.json @@ -13,7 +13,7 @@ "tag": "c:coal_dusts" }, "T": { - "tag": "c:tin_dusts" + "item": "techreborn:raw_tin" } }, "result": { diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/small_dust/lead_small_dust.json b/src/main/resources/data/techreborn/recipes/crafting_table/small_dust/lead_small_dust.json index e7e2504a3..bec9c824f 100644 --- a/src/main/resources/data/techreborn/recipes/crafting_table/small_dust/lead_small_dust.json +++ b/src/main/resources/data/techreborn/recipes/crafting_table/small_dust/lead_small_dust.json @@ -2,7 +2,7 @@ "type": "minecraft:crafting_shapeless", "ingredients": [ { - "tag": "c:lead_dusts" + "item": "techreborn:raw_lead" } ], "result": { diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/small_dust/silver_small_dust.json b/src/main/resources/data/techreborn/recipes/crafting_table/small_dust/silver_small_dust.json index f1fd904df..9c2568651 100644 --- a/src/main/resources/data/techreborn/recipes/crafting_table/small_dust/silver_small_dust.json +++ b/src/main/resources/data/techreborn/recipes/crafting_table/small_dust/silver_small_dust.json @@ -2,7 +2,7 @@ "type": "minecraft:crafting_shapeless", "ingredients": [ { - "tag": "c:silver_dusts" + "item": "techreborn:raw_silver" } ], "result": { diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/small_dust/tin_small_dust.json b/src/main/resources/data/techreborn/recipes/crafting_table/small_dust/tin_small_dust.json index b1bdb889b..e8b5d7e6a 100644 --- a/src/main/resources/data/techreborn/recipes/crafting_table/small_dust/tin_small_dust.json +++ b/src/main/resources/data/techreborn/recipes/crafting_table/small_dust/tin_small_dust.json @@ -2,7 +2,7 @@ "type": "minecraft:crafting_shapeless", "ingredients": [ { - "tag": "c:tin_dusts" + "item": "techreborn:raw_tin" } ], "result": { diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/small_dust/tungsten_small_dust.json b/src/main/resources/data/techreborn/recipes/crafting_table/small_dust/tungsten_small_dust.json index 5f901548f..773c60c88 100644 --- a/src/main/resources/data/techreborn/recipes/crafting_table/small_dust/tungsten_small_dust.json +++ b/src/main/resources/data/techreborn/recipes/crafting_table/small_dust/tungsten_small_dust.json @@ -2,7 +2,7 @@ "type": "minecraft:crafting_shapeless", "ingredients": [ { - "tag": "c:tungsten_dusts" + "item": "techreborn:raw_tungsten" } ], "result": { diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/uu_matter/lead_dust.json b/src/main/resources/data/techreborn/recipes/crafting_table/uu_matter/raw_lead.json similarity index 83% rename from src/main/resources/data/techreborn/recipes/crafting_table/uu_matter/lead_dust.json rename to src/main/resources/data/techreborn/recipes/crafting_table/uu_matter/raw_lead.json index df9382af2..b293fedab 100644 --- a/src/main/resources/data/techreborn/recipes/crafting_table/uu_matter/lead_dust.json +++ b/src/main/resources/data/techreborn/recipes/crafting_table/uu_matter/raw_lead.json @@ -11,6 +11,6 @@ } }, "result": { - "item": "techreborn:lead_dust" + "item": "techreborn:raw_lead" } } \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/uu_matter/tin_dust.json b/src/main/resources/data/techreborn/recipes/crafting_table/uu_matter/raw_tin.json similarity index 83% rename from src/main/resources/data/techreborn/recipes/crafting_table/uu_matter/tin_dust.json rename to src/main/resources/data/techreborn/recipes/crafting_table/uu_matter/raw_tin.json index 771e0f6ef..993768078 100644 --- a/src/main/resources/data/techreborn/recipes/crafting_table/uu_matter/tin_dust.json +++ b/src/main/resources/data/techreborn/recipes/crafting_table/uu_matter/raw_tin.json @@ -11,6 +11,6 @@ } }, "result": { - "item": "techreborn:tin_dust" + "item": "techreborn:raw_tin" } } \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/crafting_table/uu_matter/tungsten_dust.json b/src/main/resources/data/techreborn/recipes/crafting_table/uu_matter/raw_tungsten.json similarity index 81% rename from src/main/resources/data/techreborn/recipes/crafting_table/uu_matter/tungsten_dust.json rename to src/main/resources/data/techreborn/recipes/crafting_table/uu_matter/raw_tungsten.json index 649b79ce5..0c3c98aa5 100644 --- a/src/main/resources/data/techreborn/recipes/crafting_table/uu_matter/tungsten_dust.json +++ b/src/main/resources/data/techreborn/recipes/crafting_table/uu_matter/raw_tungsten.json @@ -11,6 +11,6 @@ } }, "result": { - "item": "techreborn:tungsten_dust" + "item": "techreborn:raw_tungsten" } } \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/grinder/lead_dust_from_ingot.json b/src/main/resources/data/techreborn/recipes/grinder/raw_lead_from_ingot.json similarity index 81% rename from src/main/resources/data/techreborn/recipes/grinder/lead_dust_from_ingot.json rename to src/main/resources/data/techreborn/recipes/grinder/raw_lead_from_ingot.json index 3bc635be5..f509ac215 100644 --- a/src/main/resources/data/techreborn/recipes/grinder/lead_dust_from_ingot.json +++ b/src/main/resources/data/techreborn/recipes/grinder/raw_lead_from_ingot.json @@ -9,7 +9,7 @@ ], "results": [ { - "item": "techreborn:lead_dust" + "item": "techreborn:raw_lead" } ] } \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/grinder/lead_dust_from_ore.json b/src/main/resources/data/techreborn/recipes/grinder/raw_lead_from_ore.json similarity index 82% rename from src/main/resources/data/techreborn/recipes/grinder/lead_dust_from_ore.json rename to src/main/resources/data/techreborn/recipes/grinder/raw_lead_from_ore.json index 9dd7e64d0..3c1f0e681 100644 --- a/src/main/resources/data/techreborn/recipes/grinder/lead_dust_from_ore.json +++ b/src/main/resources/data/techreborn/recipes/grinder/raw_lead_from_ore.json @@ -9,7 +9,7 @@ ], "results": [ { - "item": "techreborn:lead_dust", + "item": "techreborn:raw_lead", "count": 2 } ] diff --git a/src/main/resources/data/techreborn/recipes/grinder/silver_dust_from_ingot.json b/src/main/resources/data/techreborn/recipes/grinder/raw_silver_from_ingot.json similarity index 80% rename from src/main/resources/data/techreborn/recipes/grinder/silver_dust_from_ingot.json rename to src/main/resources/data/techreborn/recipes/grinder/raw_silver_from_ingot.json index 10908683a..26b610fea 100644 --- a/src/main/resources/data/techreborn/recipes/grinder/silver_dust_from_ingot.json +++ b/src/main/resources/data/techreborn/recipes/grinder/raw_silver_from_ingot.json @@ -9,7 +9,7 @@ ], "results": [ { - "item": "techreborn:silver_dust" + "item": "techreborn:raw_silver" } ] } \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/grinder/silver_dust_from_ore.json b/src/main/resources/data/techreborn/recipes/grinder/raw_silver_from_ore.json similarity index 81% rename from src/main/resources/data/techreborn/recipes/grinder/silver_dust_from_ore.json rename to src/main/resources/data/techreborn/recipes/grinder/raw_silver_from_ore.json index b915b39c6..d97e544f5 100644 --- a/src/main/resources/data/techreborn/recipes/grinder/silver_dust_from_ore.json +++ b/src/main/resources/data/techreborn/recipes/grinder/raw_silver_from_ore.json @@ -9,7 +9,7 @@ ], "results": [ { - "item": "techreborn:silver_dust", + "item": "techreborn:raw_silver", "count": 2 } ] diff --git a/src/main/resources/data/techreborn/recipes/grinder/tin_dust_from_ingot.json b/src/main/resources/data/techreborn/recipes/grinder/raw_tin_from_ingot.json similarity index 81% rename from src/main/resources/data/techreborn/recipes/grinder/tin_dust_from_ingot.json rename to src/main/resources/data/techreborn/recipes/grinder/raw_tin_from_ingot.json index 892590558..9cd743264 100644 --- a/src/main/resources/data/techreborn/recipes/grinder/tin_dust_from_ingot.json +++ b/src/main/resources/data/techreborn/recipes/grinder/raw_tin_from_ingot.json @@ -9,7 +9,7 @@ ], "results": [ { - "item": "techreborn:tin_dust" + "item": "techreborn:raw_tin" } ] } \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/grinder/tin_dust_from_ore.json b/src/main/resources/data/techreborn/recipes/grinder/raw_tin_from_ore.json similarity index 82% rename from src/main/resources/data/techreborn/recipes/grinder/tin_dust_from_ore.json rename to src/main/resources/data/techreborn/recipes/grinder/raw_tin_from_ore.json index aad466c10..38b8fa157 100644 --- a/src/main/resources/data/techreborn/recipes/grinder/tin_dust_from_ore.json +++ b/src/main/resources/data/techreborn/recipes/grinder/raw_tin_from_ore.json @@ -9,7 +9,7 @@ ], "results": [ { - "item": "techreborn:tin_dust", + "item": "techreborn:raw_tin", "count": 2 } ] diff --git a/src/main/resources/data/techreborn/recipes/grinder/tungsten_dust.json b/src/main/resources/data/techreborn/recipes/grinder/raw_tungsten_from_ingot.json similarity index 80% rename from src/main/resources/data/techreborn/recipes/grinder/tungsten_dust.json rename to src/main/resources/data/techreborn/recipes/grinder/raw_tungsten_from_ingot.json index 367b6ad4e..27de60c9d 100644 --- a/src/main/resources/data/techreborn/recipes/grinder/tungsten_dust.json +++ b/src/main/resources/data/techreborn/recipes/grinder/raw_tungsten_from_ingot.json @@ -9,7 +9,7 @@ ], "results": [ { - "item": "techreborn:tungsten_dust" + "item": "techreborn:raw_tungsten" } ] } \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/industrial_electrolyzer/tungsten_dust.json b/src/main/resources/data/techreborn/recipes/industrial_electrolyzer/raw_tungsten.json similarity index 88% rename from src/main/resources/data/techreborn/recipes/industrial_electrolyzer/tungsten_dust.json rename to src/main/resources/data/techreborn/recipes/industrial_electrolyzer/raw_tungsten.json index c1fd40165..30efa2c7b 100644 --- a/src/main/resources/data/techreborn/recipes/industrial_electrolyzer/tungsten_dust.json +++ b/src/main/resources/data/techreborn/recipes/industrial_electrolyzer/raw_tungsten.json @@ -4,7 +4,7 @@ "time": 1200, "ingredients": [ { - "tag": "c:tungsten_dusts" + "item": "techreborn:raw_tungsten" }, { "item": "techreborn:cell", diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/galena_ore_with_mercury.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/galena_ore_with_mercury.json index 525f4e826..567a86e7f 100644 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/galena_ore_with_mercury.json +++ b/src/main/resources/data/techreborn/recipes/industrial_grinder/galena_ore_with_mercury.json @@ -20,7 +20,7 @@ "item": "techreborn:sulfur_dust" }, { - "item": "techreborn:silver_dust" + "item": "techreborn:raw_silver" } ] } \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/lead_ore_with_water.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/lead_ore_with_water.json index 0c3faea51..23677e4e1 100644 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/lead_ore_with_water.json +++ b/src/main/resources/data/techreborn/recipes/industrial_grinder/lead_ore_with_water.json @@ -13,7 +13,7 @@ ], "results": [ { - "item": "techreborn:lead_dust", + "item": "techreborn:raw_lead", "count": 2 }, { diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/silver_ore_with_water.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/silver_ore_with_water.json index 9d9d823d2..28d66a301 100644 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/silver_ore_with_water.json +++ b/src/main/resources/data/techreborn/recipes/industrial_grinder/silver_ore_with_water.json @@ -13,7 +13,7 @@ ], "results": [ { - "item": "techreborn:silver_dust", + "item": "techreborn:raw_silver", "count": 2 }, { diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/tin_ore_with_sodiumpersulfate.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/tin_ore_with_sodiumpersulfate.json index cbfb2dca3..f0bf4c106 100644 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/tin_ore_with_sodiumpersulfate.json +++ b/src/main/resources/data/techreborn/recipes/industrial_grinder/tin_ore_with_sodiumpersulfate.json @@ -13,7 +13,7 @@ ], "results": [ { - "item": "techreborn:tin_dust", + "item": "techreborn:raw_tin", "count": 2 }, { diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/tin_ore_with_water.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/tin_ore_with_water.json index 3f5e8208f..d0497ee4e 100644 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/tin_ore_with_water.json +++ b/src/main/resources/data/techreborn/recipes/industrial_grinder/tin_ore_with_water.json @@ -13,7 +13,7 @@ ], "results": [ { - "item": "techreborn:tin_dust", + "item": "techreborn:raw_tin", "count": 2 }, { diff --git a/src/main/resources/data/techreborn/recipes/industrial_grinder/tungsten_ore_with_water.json b/src/main/resources/data/techreborn/recipes/industrial_grinder/tungsten_ore_with_water.json index 2cfef318d..a78929cc3 100644 --- a/src/main/resources/data/techreborn/recipes/industrial_grinder/tungsten_ore_with_water.json +++ b/src/main/resources/data/techreborn/recipes/industrial_grinder/tungsten_ore_with_water.json @@ -13,7 +13,7 @@ ], "results": [ { - "item": "techreborn:tungsten_dust", + "item": "techreborn:raw_tungsten", "count": 2 }, { diff --git a/src/main/resources/data/techreborn/recipes/scrapbox/auto/tin_dust.json b/src/main/resources/data/techreborn/recipes/scrapbox/auto/raw_lead.json similarity index 82% rename from src/main/resources/data/techreborn/recipes/scrapbox/auto/tin_dust.json rename to src/main/resources/data/techreborn/recipes/scrapbox/auto/raw_lead.json index 83f0b263a..c55d6527b 100644 --- a/src/main/resources/data/techreborn/recipes/scrapbox/auto/tin_dust.json +++ b/src/main/resources/data/techreborn/recipes/scrapbox/auto/raw_lead.json @@ -8,7 +8,7 @@ ], "results": [ { - "item": "techreborn:tin_dust" + "item": "techreborn:raw_lead" } ], "type": "techreborn:scrapbox" diff --git a/src/main/resources/data/techreborn/recipes/scrapbox/auto/silver_dust.json b/src/main/resources/data/techreborn/recipes/scrapbox/auto/raw_silver.json similarity index 81% rename from src/main/resources/data/techreborn/recipes/scrapbox/auto/silver_dust.json rename to src/main/resources/data/techreborn/recipes/scrapbox/auto/raw_silver.json index c9246e6fd..e61933609 100644 --- a/src/main/resources/data/techreborn/recipes/scrapbox/auto/silver_dust.json +++ b/src/main/resources/data/techreborn/recipes/scrapbox/auto/raw_silver.json @@ -8,7 +8,7 @@ ], "results": [ { - "item": "techreborn:silver_dust" + "item": "techreborn:raw_silver" } ], "type": "techreborn:scrapbox" diff --git a/src/main/resources/data/techreborn/recipes/scrapbox/auto/lead_dust.json b/src/main/resources/data/techreborn/recipes/scrapbox/auto/raw_tin.json similarity index 82% rename from src/main/resources/data/techreborn/recipes/scrapbox/auto/lead_dust.json rename to src/main/resources/data/techreborn/recipes/scrapbox/auto/raw_tin.json index f6933e100..4d285f62f 100644 --- a/src/main/resources/data/techreborn/recipes/scrapbox/auto/lead_dust.json +++ b/src/main/resources/data/techreborn/recipes/scrapbox/auto/raw_tin.json @@ -8,7 +8,7 @@ ], "results": [ { - "item": "techreborn:lead_dust" + "item": "techreborn:raw_tin" } ], "type": "techreborn:scrapbox" diff --git a/src/main/resources/data/techreborn/recipes/scrapbox/auto/tungsten_dust.json b/src/main/resources/data/techreborn/recipes/scrapbox/auto/raw_tungsten.json similarity index 80% rename from src/main/resources/data/techreborn/recipes/scrapbox/auto/tungsten_dust.json rename to src/main/resources/data/techreborn/recipes/scrapbox/auto/raw_tungsten.json index fbbb14dc2..7c4564542 100644 --- a/src/main/resources/data/techreborn/recipes/scrapbox/auto/tungsten_dust.json +++ b/src/main/resources/data/techreborn/recipes/scrapbox/auto/raw_tungsten.json @@ -8,7 +8,7 @@ ], "results": [ { - "item": "techreborn:tungsten_dust" + "item": "techreborn:raw_tungsten" } ], "type": "techreborn:scrapbox" diff --git a/src/main/resources/data/techreborn/recipes/smelting/lead_ingot.json b/src/main/resources/data/techreborn/recipes/smelting/lead_ingot_from_ore.json similarity index 100% rename from src/main/resources/data/techreborn/recipes/smelting/lead_ingot.json rename to src/main/resources/data/techreborn/recipes/smelting/lead_ingot_from_ore.json diff --git a/src/main/resources/data/techreborn/recipes/smelting/lead_ingot_from_dust.json b/src/main/resources/data/techreborn/recipes/smelting/lead_ingot_from_raw.json similarity index 80% rename from src/main/resources/data/techreborn/recipes/smelting/lead_ingot_from_dust.json rename to src/main/resources/data/techreborn/recipes/smelting/lead_ingot_from_raw.json index 9913fe94c..25b225606 100644 --- a/src/main/resources/data/techreborn/recipes/smelting/lead_ingot_from_dust.json +++ b/src/main/resources/data/techreborn/recipes/smelting/lead_ingot_from_raw.json @@ -1,7 +1,7 @@ { "type": "minecraft:smelting", "ingredient": { - "tag": "c:lead_dusts" + "item": "techreborn:raw_lead" }, "result": "techreborn:lead_ingot", "experience": 0.5, diff --git a/src/main/resources/data/techreborn/recipes/smelting/silver_ingot.json b/src/main/resources/data/techreborn/recipes/smelting/silver_ingot_from_ore.json similarity index 100% rename from src/main/resources/data/techreborn/recipes/smelting/silver_ingot.json rename to src/main/resources/data/techreborn/recipes/smelting/silver_ingot_from_ore.json diff --git a/src/main/resources/data/techreborn/recipes/smelting/silver_ingot_from_dust.json b/src/main/resources/data/techreborn/recipes/smelting/silver_ingot_from_raw.json similarity index 79% rename from src/main/resources/data/techreborn/recipes/smelting/silver_ingot_from_dust.json rename to src/main/resources/data/techreborn/recipes/smelting/silver_ingot_from_raw.json index 4ed0bf183..317662d4b 100644 --- a/src/main/resources/data/techreborn/recipes/smelting/silver_ingot_from_dust.json +++ b/src/main/resources/data/techreborn/recipes/smelting/silver_ingot_from_raw.json @@ -1,7 +1,7 @@ { "type": "minecraft:smelting", "ingredient": { - "tag": "c:silver_dusts" + "item": "techreborn:raw_silver" }, "result": "techreborn:silver_ingot", "experience": 0.5, diff --git a/src/main/resources/data/techreborn/recipes/smelting/tin_ingot.json b/src/main/resources/data/techreborn/recipes/smelting/tin_ingot_from_ore.json similarity index 100% rename from src/main/resources/data/techreborn/recipes/smelting/tin_ingot.json rename to src/main/resources/data/techreborn/recipes/smelting/tin_ingot_from_ore.json diff --git a/src/main/resources/data/techreborn/recipes/smelting/tin_ingot_from_dust.json b/src/main/resources/data/techreborn/recipes/smelting/tin_ingot_from_raw.json similarity index 80% rename from src/main/resources/data/techreborn/recipes/smelting/tin_ingot_from_dust.json rename to src/main/resources/data/techreborn/recipes/smelting/tin_ingot_from_raw.json index 39094be6f..e8e9eaf69 100644 --- a/src/main/resources/data/techreborn/recipes/smelting/tin_ingot_from_dust.json +++ b/src/main/resources/data/techreborn/recipes/smelting/tin_ingot_from_raw.json @@ -1,7 +1,7 @@ { "type": "minecraft:smelting", "ingredient": { - "tag": "c:tin_dusts" + "item": "techreborn:raw_tin" }, "result": "techreborn:tin_ingot", "experience": 0.5,