From 9ac21ded30bc5afed5581fa3c415c8533d6eedea Mon Sep 17 00:00:00 2001 From: drcrazy Date: Thu, 18 Jul 2019 00:49:07 +0300 Subject: [PATCH] Fix lang and parts --- src/main/java/techreborn/TechReborn.java | 29 +- .../java/techreborn/events/ModRegistry.java | 2 +- src/main/java/techreborn/init/TRContent.java | 4 +- .../assets/techreborn/lang/en_us.json | 1313 +++++------------ .../crafting_shaped/lithium_ion_batpack.json | 2 +- .../crafting_shaped/lithium_ion_battery.json | 2 +- .../recipes/crafting_shaped/nanosaber.json | 4 +- .../recipes/crafting_shaped/rock_cutter.json | 4 +- 8 files changed, 366 insertions(+), 994 deletions(-) diff --git a/src/main/java/techreborn/TechReborn.java b/src/main/java/techreborn/TechReborn.java index 648229c42..569c42c7f 100644 --- a/src/main/java/techreborn/TechReborn.java +++ b/src/main/java/techreborn/TechReborn.java @@ -28,6 +28,8 @@ import net.fabricmc.api.ModInitializer; import net.fabricmc.fabric.api.client.itemgroup.FabricItemGroupBuilder; import net.minecraft.block.DispenserBlock; import net.minecraft.item.ItemGroup; +import net.minecraft.item.ItemStack; +import net.minecraft.item.Items; import net.minecraft.util.Identifier; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; @@ -53,19 +55,19 @@ public class TechReborn implements ModInitializer { public static CommonProxy proxy = new CommonProxy(); public static TechReborn INSTANCE; - public static final ItemGroup ITEMGROUP = FabricItemGroupBuilder.build(new Identifier("techreborn", "item_group"), TRContent.Parts.MACHINE_PARTS::getStack); + public static ItemGroup ITEMGROUP = FabricItemGroupBuilder.build( + new Identifier("techreborn", "item_group"), + () -> new ItemStack(TRContent.NUKE)); @Override public void onInitialize() { INSTANCE = this; - - RegistrationManager registrationManager = new RegistrationManager("techreborn", getClass()); - - TechRebornAPI.subItemRetriever = new SubItemRetriever(); - //Done like this to load them here +// RegistrationManager registrationManager = new RegistrationManager("techreborn", getClass()); +// TechRebornAPI.subItemRetriever = new SubItemRetriever(); + // Done like this to load them here ModFluids.values(); - //Done to force the class to load + // Done to force the class to load ModRecipes.GRINDER.getName(); ClientboundPackets.init(); @@ -77,13 +79,13 @@ public class TechReborn implements ModInitializer { // Registers Chest Loot ModLoot.init(); - //MinecraftForge.EVENT_BUS.register(new ModLoot()); + // MinecraftForge.EVENT_BUS.register(new ModLoot()); // Sounds - //TODO 1.13 registry events + // TODO 1.13 registry events ModSounds.init(); // Client only init, needs to be done before parts system proxy.init(); - + // WorldGen WorldGenerator.initBiomeFeatures(); @@ -91,7 +93,7 @@ public class TechReborn implements ModInitializer { StackWIPHandler.setup(); // WorldGen - //GameRegistry.registerWorldGenerator(new OilLakeGenerator(), 0); + // GameRegistry.registerWorldGenerator(new OilLakeGenerator(), 0); // Register Gui Handler // Event busses // MinecraftForge.EVENT_BUS.register(new BlockBreakHandler()); @@ -102,7 +104,7 @@ public class TechReborn implements ModInitializer { GuiHandler.register(); - //Village stuff + // Village stuff // if (ConfigTechReborn.enableRubberTreePlantation) { // VillagerRegistry.instance().registerVillageCreationHandler(new VillagePlantaionHandler()); // //MapGenStructureIO.registerStructureComponent(VillageComponentRubberPlantaion.class, new ResourceLocation(MOD_ID, "rubberplantation").toString()); @@ -111,7 +113,7 @@ public class TechReborn implements ModInitializer { // Scrapbox if (BehaviorDispenseScrapbox.dispenseScrapboxes) { - DispenserBlock.registerBehavior(TRContent.SCRAP_BOX, new BehaviorDispenseScrapbox()); + DispenserBlock.registerBehavior(TRContent.SCRAP_BOX, new BehaviorDispenseScrapbox()); } Torus.genSizeMap(TileFusionControlComputer.maxCoilSize); @@ -120,7 +122,6 @@ public class TechReborn implements ModInitializer { ModRecipes.postInit(); - LOGGER.info("TechReborn setup done!"); } diff --git a/src/main/java/techreborn/events/ModRegistry.java b/src/main/java/techreborn/events/ModRegistry.java index 713a60f5e..a785f5c9e 100644 --- a/src/main/java/techreborn/events/ModRegistry.java +++ b/src/main/java/techreborn/events/ModRegistry.java @@ -90,7 +90,7 @@ public class ModRegistry { RebornRegistry.registerBlock(value.frame, itemGroup); RebornRegistry.registerBlock(value.casing, itemGroup); }); - Arrays.stream(TRContent.SolarPanels.values()).forEach(value -> RebornRegistry.registerBlock(value.block, itemGroup)); + Arrays.stream(SolarPanels.values()).forEach(value -> RebornRegistry.registerBlock(value.block, itemGroup)); Arrays.stream(Cables.values()).forEach(value -> RebornRegistry.registerBlock(value.block, itemGroup)); Arrays.stream(Machine.values()).forEach(value -> RebornRegistry.registerBlock(value.block, itemGroup)); diff --git a/src/main/java/techreborn/init/TRContent.java b/src/main/java/techreborn/init/TRContent.java index 89fb6de02..033fda2c2 100644 --- a/src/main/java/techreborn/init/TRContent.java +++ b/src/main/java/techreborn/init/TRContent.java @@ -618,9 +618,11 @@ public class TRContent { , WATER_COOLANT_CELL_10K, WATER_COOLANT_CELL_30K, WATER_COOLANT_CELL_60K, + HELIUM_COOLANT_CELL_60K, - HELIUM_COOLANT_CELL_360K, HELIUM_COOLANT_CELL_180K, + HELIUM_COOLANT_CELL_360K, + NAK_COOLANT_CELL_60K, NAK_COOLANT_CELL_180K, NAK_COOLANT_CELL_360K, diff --git a/src/main/resources/assets/techreborn/lang/en_us.json b/src/main/resources/assets/techreborn/lang/en_us.json index a5030ca7b..f216205c3 100644 --- a/src/main/resources/assets/techreborn/lang/en_us.json +++ b/src/main/resources/assets/techreborn/lang/en_us.json @@ -1,6 +1,6 @@ { - "itemGroup.techreborn": "Tech Reborn", + "itemGroup.techreborn.item_group": "Tech Reborn", "_comment": "Machines", "block.techreborn.pump": "Pump", @@ -13,9 +13,9 @@ "block.techreborn.digital_chest": "Digital Chest", "block.techreborn.industrial_centrifuge": "Industrial Centrifuge", "block.techreborn.rolling_machine": "Rolling Machine", - "block.techreborn.machinecasingstandard": "Standard Machine Casing", - "block.techreborn.machinecasingreinforced": "Reinforced Machine Casing", - "block.techreborn.machinecasingadvanced": "Advanced Machine Casing", + "block.techreborn.basic_machine_casing": "Standard Machine Casing", + "block.techreborn.advanced_machine_casing": "Advanced Machine Casing", + "block.techreborn.industrial_machine_casing": "Industrial Machine Casing", "block.techreborn.industrial_blast_furnace": "Industrial Blast Furnace", "block.techreborn.alloy_smelter": "Alloy Smelter", "block.techreborn.matter_fabricator": "Matter Fabricator", @@ -44,22 +44,20 @@ "block.techreborn.lightning_rod": "Lightning Rod", "block.techreborn.industrial_sawmill": "Sawmill", "block.techreborn.charge_o_mat": "Charge-O-Mat", - "block.techreborn.player_detector.all": "Player Detector (All)", - "block.techreborn.player_detector.others": "Player Detector (Others)", - "block.techreborn.player_detector.you": "Player Detector (You)", + "block.techreborn.player_detector": "Player Detector", "block.techreborn.solid_fuel_generator": "Generator", "block.techreborn.extractor": "Extractor", "block.techreborn.grinder": "Grinder", "block.techreborn.compressor": "Compressor", "block.techreborn.electric_furnace": "Electric Furnace", - "block.techreborn.machineblockelite": "Highly Advanced Machine Frame", - "block.techreborn.machineblockadvanced": "Advanced Machine Frame", - "block.techreborn.machineblockbasic": "Basic Machine Frame", - "block.techreborn.solar_panel.basic": "Basic Solar Panel", - "block.techreborn.solar_panel.hybrid": "Hybrid Solar Panel", - "block.techreborn.solar_panel.advanced": "Advanced Solar Panel", - "block.techreborn.solar_panel.ultimate": "Ultimate Solar Panel", - "block.techreborn.solar_panel.quantum": "Quantum Solar Panel", + "block.techreborn.industrial_machine_frame": "Highly Advanced Machine Frame", + "block.techreborn.advanced_machine_frame": "Advanced Machine Frame", + "block.techreborn.basic_machine_frame": "Basic Machine Frame", + "block.techreborn.basic_solar_panel": "Basic Solar Panel", + "block.techreborn.advanced_solar_panel": "Advanced Solar Panel", + "block.techreborn.industrial_solar_panel": "Industrial Solar Panel", + "block.techreborn.ultimate_solar_panel": "Ultimate Solar Panel", + "block.techreborn.quantum_solar_panel": "Quantum Solar Panel", "block.techreborn.creative_solar_panel": "Creative Solar Panel", "block.techreborn.water_mill": "Water Mill", "block.techreborn.wind_mill": "Wind Mill", @@ -80,8 +78,9 @@ "block.techreborn.lamp_led": "LED Lamp", "block.techreborn.alarm": "Alarm", "block.techreborn.farm": "Farm", + - "_comment": "Blocks", + "_comment1": "Blocks", "block.techreborn.rubber_log": "Rubber Wood", "block.techreborn.rubber_planks": "Rubber Wood Planks", "block.techreborn.rubber_plank_slab": "Rubber Plank Slab", @@ -91,64 +90,65 @@ "block.techreborn.refined_iron_fence": "Iron Fence", "block.techreborn.reinforced_glass": "Reinforced Glass", - "_comment": "Ores", - "block.techreborn.ore.bauxite": "Bauxite Ore", - "block.techreborn.ore.cinnabar": "Cinnabar Ore", - "block.techreborn.ore2.copper": "Copper Ore", - "block.techreborn.ore.galena": "Galena Ore", - "block.techreborn.ore.iridium": "Iridium Ore", - "block.techreborn.ore.lead": "Lead Ore", - "block.techreborn.ore.peridot": "Peridot Ore", - "block.techreborn.ore.pyrite": "Pyrite Ore", - "block.techreborn.ore.ruby": "Ruby Ore", - "block.techreborn.ore.sapphire": "Sapphire Ore", - "block.techreborn.ore.sheldonite": "Sheldonite Ore", - "block.techreborn.ore.silver": "Silver Ore", - "block.techreborn.ore.sodalite": "Sodalite Ore", - "block.techreborn.ore.sphalerite": "Sphalerite Ore", - "block.techreborn.ore2.tin": "Tin Ore", - "block.techreborn.ore.tungsten": "Tungsten Ore", + "_comment2": "Ores", + "block.techreborn.bauxite_ore": "Bauxite Ore", + "block.techreborn.cinnabar_ore": "Cinnabar Ore", + "block.techreborn.copper_ore": "Copper Ore", + "block.techreborn.galena_ore": "Galena Ore", + "block.techreborn.iridium_ore": "Iridium Ore", + "block.techreborn.lead_ore": "Lead Ore", + "block.techreborn.peridot_ore": "Peridot Ore", + "block.techreborn.pyrite_ore": "Pyrite Ore", + "block.techreborn.ruby_ore": "Ruby Ore", + "block.techreborn.sapphire_ore": "Sapphire Ore", + "block.techreborn.sheldonite_ore": "Sheldonite Ore", + "block.techreborn.silver_ore": "Silver Ore", + "block.techreborn.sodalite_ore": "Sodalite Ore", + "block.techreborn.sphalerite_ore": "Sphalerite Ore", + "block.techreborn.tin_ore": "Tin Ore", + "block.techreborn.tungsten_ore": "Tungsten Ore", - "_comment": "Storage", - "block.techreborn.storage.aluminum": "Block of Aluminium", - "block.techreborn.storage.brass": "Block of Brass", - "block.techreborn.storage.bronze": "Block of Bronze", - "block.techreborn.storage.chrome": "Block of Chrome", - "block.techreborn.storage.copper": "Block of Copper", - "block.techreborn.storage.electrum": "Block of Electrum", - "block.techreborn.storage.invar": "Block of Invar", - "block.techreborn.storage.iridium": "Block of Iridium", - "block.techreborn.storage.iridium_reinforced_stone": "Iridium Reinforced Stone", - "block.techreborn.storage.iridium_reinforced_tungstensteel": "Iridium Reinforced Tungstensteel Block", - "block.techreborn.storage.lead": "Block of Lead", - "block.techreborn.storage.nickel": "Block of Nickel", - "block.techreborn.storage.osmium": "Block of Osmium", - "block.techreborn.storage.peridot": "Block of Peridot", - "block.techreborn.storage.platinum": "Block of Platinum", - "block.techreborn.storage.red_garnet": "Block of Red Garnet", - "block.techreborn.storage.refined_iron": "Block of Refined Iron", - "block.techreborn.storage.ruby": "Block of Ruby", - "block.techreborn.storage.sapphire": "Block of Sapphire", - "block.techreborn.storage.silver": "Block of Silver", - "block.techreborn.storage.steel": "Block of Steel", - "block.techreborn.storage.tin": "Block of Tin", - "block.techreborn.storage.titanium": "Block of Titanium", - "block.techreborn.storage.tungsten": "Block of Tungsten", - "block.techreborn.storage.tungstensteel": "Block of Tungstensteel", - "block.techreborn.storage.yellow_garnet": "Block of Yellow Garnet", - "block.techreborn.storage.zinc": "Block of Zinc", + "_comment3": "Storage", + "block.techreborn.aluminum_storage_block": "Block of Aluminium", + "block.techreborn.brass_storage_block": "Block of Brass", + "block.techreborn.bronze_storage_block": "Block of Bronze", + "block.techreborn.chrome_storage_block": "Block of Chrome", + "block.techreborn.copper_storage_block": "Block of Copper", + "block.techreborn.electrum_storage_block": "Block of Electrum", + "block.techreborn.invar_storage_block": "Block of Invar", + "block.techreborn.iridium_storage_block": "Block of Iridium", + "block.techreborn.iridium_reinforced_stone_storage_block": "Iridium Reinforced Stone", + "block.techreborn.iridium_reinforced_tungstensteel_storage_block": "Iridium Reinforced Tungstensteel Block", + "block.techreborn.lead_storage_block": "Block of Lead", + "block.techreborn.nickel_storage_block": "Block of Nickel", + "block.techreborn.osmium_storage_block": "Block of Osmium", + "block.techreborn.peridot_storage_block": "Block of Peridot", + "block.techreborn.platinum_storage_block": "Block of Platinum", + "block.techreborn.red_garnet_storage_block": "Block of Red Garnet", + "block.techreborn.refined_iron_storage_block": "Block of Refined Iron", + "block.techreborn.ruby_storage_block": "Block of Ruby", + "block.techreborn.sapphire_storage_block": "Block of Sapphire", + "block.techreborn.silver_storage_block": "Block of Silver", + "block.techreborn.steel_storage_block": "Block of Steel", + "block.techreborn.tin_storage_block": "Block of Tin", + "block.techreborn.titanium_storage_block": "Block of Titanium", + "block.techreborn.tungsten_storage_block": "Block of Tungsten", + "block.techreborn.tungstensteel_storage_block": "Block of Tungstensteel", + "block.techreborn.yellow_garnet_storage_block": "Block of Yellow Garnet", + "block.techreborn.zinc_storage_block": "Block of Zinc", - "_comment": "Cables", - "block.techreborn.cable.copper": "Copper Cable", - "block.techreborn.cable.tin": "Tin Cable", - "block.techreborn.cable.gold": "Gold Cable", - "block.techreborn.cable.hv": "HV Cable", - "block.techreborn.cable.glassfiber": "Glass Fiber Cable", - "block.techreborn.cable.insulatedcopper": "Insulated Copper Cable", - "block.techreborn.cable.insulatedgold": "Insulated Gold Cable", - "block.techreborn.cable.insulatedhv": "Insulated HV Cable", + "_comment4": "Cables", + "block.techreborn.copper_cable": "Copper Cable", + "block.techreborn.tin_cable": "Tin Cable", + "block.techreborn.gold_cable": "Gold Cable", + "block.techreborn.hv_cable": "HV Cable", + "block.techreborn.glassfiber_cable": "Glass Fiber Cable", + "block.techreborn.insulated_copper_cable": "Insulated Copper Cable", + "block.techreborn.insulated_gold_cable": "Insulated Gold Cable", + "block.techreborn.insulated_hv_cable": "Insulated HV Cable", + "block.techreborn.superconductor_cable": "Superconductor Cable", - "_comment": "Fluid blocks", + "_comment5": "Fluid blocks", "block.techreborn.berylium": "Beryllium", "block.techreborn.calcium": "Calcium", "block.techreborn.calciumcarbonate": "Calciumcarbonate", @@ -184,7 +184,7 @@ "block.techreborn.tritium": "Tritium", "block.techreborn.wolframium": "Wolframium", - "_comment": "Fluids", + "_comment6": "Fluids", "fluid.fluidberylium": "Beryllium", "fluid.fluidcalcium": "Calcium", "fluid.fluidcalciumcarbonate": "Calciumcarbonate", @@ -220,633 +220,12 @@ "fluid.fluidtritium": "Tritium", "fluid.fluidwolframium": "Wolframium", - "_comment": "Dusts", - "item.techreborn.dust.almandine": "Almandine Dust", - "item.techreborn.dust.aluminum": "Aluminium Dust", - "item.techreborn.dust.aluminumBrass": "Aluminium Brass Dust", - "item.techreborn.dust.andesite": "Andesite Dust", - "item.techreborn.dust.andradite": "Andradite Dust", - "item.techreborn.dust.ashes": "Ashes", - "item.techreborn.dust.basalt": "Basalt Dust", - "item.techreborn.dust.bauxite": "Bauxite Dust", - "item.techreborn.dust.brass": "Brass Dust", - "item.techreborn.dust.bronze": "Bronze Dust", - "item.techreborn.dust.calcite": "Calcite Dust", - "item.techreborn.dust.charcoal": "Charcoal Dust", - "item.techreborn.dust.chrome": "Chrome Dust", - "item.techreborn.dust.cinnabar": "Cinnabar Dust", - "item.techreborn.dust.clay": "Clay Dust", - "item.techreborn.dust.coal": "Coal Dust", - "item.techreborn.dust.copper": "Copper Dust", - "item.techreborn.dust.dark_ashes": "Dark Ashes", - "item.techreborn.dust.diamond": "Diamond Dust", - "item.techreborn.dust.diorite": "Diorite Dust", - "item.techreborn.dust.electrum": "Electrum Dust", - "item.techreborn.dust.emerald": "Emerald Dust", - "item.techreborn.dust.ender_eye": "Ender Eye Dust", - "item.techreborn.dust.ender_pearl": "Ender Pearl Dust", - "item.techreborn.dust.endstone": "Endstone Dust", - "item.techreborn.dust.flint": "Flint Dust", - "item.techreborn.dust.galena": "Galena Dust", - "item.techreborn.dust.gold": "Gold Dust", - "item.techreborn.dust.granite": "Granite Dust", - "item.techreborn.dust.grossular": "Grossular Dust", - "item.techreborn.dust.invar": "Invar Dust", - "item.techreborn.dust.iron": "Iron Dust", - "item.techreborn.dust.lazurite": "Lazurite Dust", - "item.techreborn.dust.lead": "Lead Dust", - "item.techreborn.dust.magnesium": "Magnesium Dust", - "item.techreborn.dust.manganese": "Manganese Dust", - "item.techreborn.dust.marble": "Marble Dust", - "item.techreborn.dust.netherrack": "Netherrack Dust", - "item.techreborn.dust.nickel": "Nickel Dust", - "item.techreborn.dust.obsidian": "Obsidian Dust", - "item.techreborn.dust.olivine": "Olivine Dust", - "item.techreborn.dust.peridot": "Peridot Dust", - "item.techreborn.dust.phosphorous": "Phosphorous Dust", - "item.techreborn.dust.platinum": "Platinum Dust", - "item.techreborn.dust.pyrite": "Pyrite Dust", - "item.techreborn.dust.pyrope": "Pyrope Dust", - "item.techreborn.dust.red_garnet": "Red Garnet Dust", - "item.techreborn.dust.ruby": "Ruby Dust", - "item.techreborn.dust.saltpeter": "Saltpeter Dust", - "item.techreborn.dust.sapphire": "Sapphire Dust", - "item.techreborn.dust.saw_dust": "Saw Dust", - "item.techreborn.dust.silver": "Silver Dust", - "item.techreborn.dust.sodalite": "Sodalite Dust", - "item.techreborn.dust.spessartine": "Spessartine Dust", - "item.techreborn.dust.sphalerite": "Sphalerite Dust", - "item.techreborn.dust.steel": "Steel Dust", - "item.techreborn.dust.sulfur": "Sulfur Dust", - "item.techreborn.dust.tin": "Tin Dust", - "item.techreborn.dust.titanium": "Titanium Dust", - "item.techreborn.dust.tungsten": "Tungsten Dust", - "item.techreborn.dust.uvarovite": "Uvarovite Dust", - "item.techreborn.dust.yellow_garnet": "Yellow Garnet Dust", - "item.techreborn.dust.zinc": "Zinc Dust", - - "_comment": "Small Dusts", - "item.techreborn.dustsmall.almandine": "Small Pile of Almandine Dust", - "item.techreborn.dustsmall.aluminum": "Small Pile of Aluminium Dust", - "item.techreborn.dustsmall.andesite": "Small Pile of Andesite Dust", - "item.techreborn.dustsmall.andradite": "Small Pile of Andradite Dust", - "item.techreborn.dustsmall.ashes": "Small Pile of Ashes", - "item.techreborn.dustsmall.basalt": "Small Pile of Basalt Dust", - "item.techreborn.dustsmall.bauxite": "Small Pile of Bauxite Dust", - "item.techreborn.dustsmall.brass": "Small Pile of Brass Dust", - "item.techreborn.dustsmall.bronze": "Small Pile of Bronze Dust", - "item.techreborn.dustsmall.calcite": "Small Pile of Calcite Dust", - "item.techreborn.dustsmall.charcoal": "Small Pile of Charcoal Dust", - "item.techreborn.dustsmall.chrome": "Small Pile of Chrome Dust", - "item.techreborn.dustsmall.cinnabar": "Small Pile of Cinnabar Dust", - "item.techreborn.dustsmall.clay": "Small Pile of Clay Dust", - "item.techreborn.dustsmall.coal": "Small Pile of Coal Dust", - "item.techreborn.dustsmall.copper": "Small Pile of Copper Dust", - "item.techreborn.dustsmall.dark_ashes": "Small Pile of Dark Ashes", - "item.techreborn.dustsmall.diamond": "Small Pile of Diamond Dust", - "item.techreborn.dustsmall.diorite": "Small Pile of Diorite Dust", - "item.techreborn.dustsmall.electrum": "Small Pile of Electrum Dust", - "item.techreborn.dustsmall.emerald": "Small Pile of Emerald Dust", - "item.techreborn.dustsmall.ender_eye": "Small Pile of Ender Eye Dust", - "item.techreborn.dustsmall.ender_pearl": "Small Pile of Ender Pearl Dust", - "item.techreborn.dustsmall.endstone": "Small Pile of Endstone Dust", - "item.techreborn.dustsmall.flint": "Small Pile of Flint Dust", - "item.techreborn.dustsmall.galena": "Small Pile of Galena Dust", - "item.techreborn.dustsmall.glowstone": "Small Pile of Glowstone Dust", - "item.techreborn.dustsmall.gold": "Small Pile of Gold Dust", - "item.techreborn.dustsmall.granite": "Small Pile of Granite Dust", - "item.techreborn.dustsmall.grossular": "Small Pile of Grossular Dust", - "item.techreborn.dustsmall.invar": "Small Pile of Invar Dust", - "item.techreborn.dustsmall.iron": "Small Pile of Iron Dust", - "item.techreborn.dustsmall.lazurite": "Small Pile of Lazurite Dust", - "item.techreborn.dustsmall.lead": "Small Pile of Lead Dust", - "item.techreborn.dustsmall.magnesium": "Small Pile of Magnesium Dust", - "item.techreborn.dustsmall.manganese": "Small Pile of Manganese Dust", - "item.techreborn.dustsmall.marble": "Small Pile of Marble Dust", - "item.techreborn.dustsmall.netherrack": "Small Pile of Netherrack Dust", - "item.techreborn.dustsmall.nickel": "Small Pile of Nickel Dust", - "item.techreborn.dustsmall.obsidian": "Small Pile of Obsidian Dust", - "item.techreborn.dustsmall.olivine": "Small Pile of Olivine Dust", - "item.techreborn.dustsmall.peridot": "Small Pile of Peridot", - "item.techreborn.dustsmall.phosphorous": "Small Pile of Phosphorous Dust", - "item.techreborn.dustsmall.platinum": "Small Pile of Platinum Dust", - "item.techreborn.dustsmall.pyrite": "Small Pile of Pyrite Dust", - "item.techreborn.dustsmall.pyrope": "Small Pile of Pyrope Dust", - "item.techreborn.dustsmall.red_garnet": "Small Pile of Red Garnet Dust", - "item.techreborn.dustsmall.redstone": "Small Pile of Redstone", - "item.techreborn.dustsmall.ruby": "Small Pile of Ruby Dust", - "item.techreborn.dustsmall.saltpeter": "Small Pile of Saltpeter Dust", - "item.techreborn.dustsmall.sapphire": "Small Pile of Sapphire Dust", - "item.techreborn.dustsmall.saw_dust": "Small Pile of Saw Dust", - "item.techreborn.dustsmall.silver": "Small Pile of Silver Dust", - "item.techreborn.dustsmall.sodalite": "Small Pile of Sodalite Dust", - "item.techreborn.dustsmall.spessartine": "Small Pile of Spessartine Dust", - "item.techreborn.dustsmall.sphalerite": "Small Pile of Sphalerite Dust", - "item.techreborn.dustsmall.steel": "Small Pile of Steel Dust", - "item.techreborn.dustsmall.sulfur": "Small Pile of Sulfur Dust", - "item.techreborn.dustsmall.tin": "Small Pile of Tin Dust", - "item.techreborn.dustsmall.titanium": "Small Pile of Titanium Dust", - "item.techreborn.dustsmall.tungsten": "Small Pile of Tungsten Dust", - "item.techreborn.dustsmall.uvarovite": "Small Pile of Uvarovite Dust", - "item.techreborn.dustsmall.yellow_garnet": "Small Pile of Yellow Garnet Dust", - "item.techreborn.dustsmall.zinc": "Small Pile of Zinc Dust", - - "_comment": "Gems", - "item.techreborn.gem.ruby": "Ruby", - "item.techreborn.gem.sapphire": "Sapphire", - "item.techreborn.gem.peridot": "Peridot", - "item.techreborn.gem.red_garnet": "Red Garnet", - "item.techreborn.gem.yellow_garnet": "Yellow Garnet", - - "_comment": "Ingots", - "item.techreborn.ingot.advanced_alloy": "Advanced Alloy Ingot", - "item.techreborn.ingot.aluminum": "Aluminium Ingot", - "item.techreborn.ingot.brass": "Brass Ingot", - "item.techreborn.ingot.bronze": "Bronze Ingot", - "item.techreborn.ingot.chrome": "Chrome Ingot", - "item.techreborn.ingot.copper": "Copper Ingot", - "item.techreborn.ingot.electrum": "Electrum Ingot", - "item.techreborn.ingot.hot_tungstensteel": "Hot Tungstensteel Ingot", - "item.techreborn.ingot.invar": "Invar Ingot", - "item.techreborn.ingot.iridium_alloy": "Iridium Alloy Ingot", - "item.techreborn.ingot.iridium": "Iridium Ingot", - "item.techreborn.ingot.lead": "Lead Ingot", - "item.techreborn.ingot.mixed_metal": "Mixed Metal Ingot", - "item.techreborn.ingot.nickel": "Nickel Ingot", - "item.techreborn.ingot.platinum": "Platinum Ingot", - "item.techreborn.ingot.refined_iron": "Refined Iron Ingot", - "item.techreborn.ingot.silver": "Silver Ingot", - "item.techreborn.ingot.steel": "Steel Ingot", - "item.techreborn.ingot.tin": "Tin Ingot", - "item.techreborn.ingot.titanium": "Titanium Ingot", - "item.techreborn.ingot.tungsten": "Tungsten Ingot", - "item.techreborn.ingot.tungstensteel": "Tungstensteel Ingot", - "item.techreborn.ingot.zinc": "Zinc Ingot", - - "_comment": "Nuggets", - "item.techreborn.nuggets.aluminum": "Aluminium Nugget", - "item.techreborn.nuggets.brass": "Brass Nugget", - "item.techreborn.nuggets.bronze": "Bronze Nugget", - "item.techreborn.nuggets.chrome": "Chrome Nugget", - "item.techreborn.nuggets.copper": "Copper Nugget", - "item.techreborn.nuggets.diamond": "Diamond Nugget", - "item.techreborn.nuggets.electrum": "Electrum Nugget", - "item.techreborn.nuggets.hot_tungstensteel": "Hot Tungstensteel Nugget", - "item.techreborn.nuggets.invar": "Invar Nugget", - "item.techreborn.nuggets.iridium": "Iridium Nugget", - "item.techreborn.nuggets.iron": "Iron Nugget", - "item.techreborn.nuggets.lead": "Lead Nugget", - "item.techreborn.nuggets.nickel": "Nickel Nugget", - "item.techreborn.nuggets.platinum": "Platinum Nugget", - "item.techreborn.nuggets.refined_iron": "Refined Iron Nugget", - "item.techreborn.nuggets.silver": "Silver Nugget", - "item.techreborn.nuggets.steel": "Steel Nugget", - "item.techreborn.nuggets.tin": "Tin Nugget", - "item.techreborn.nuggets.titanium": "Titanium Nugget", - "item.techreborn.nuggets.tungsten": "Tungsten Nugget", - "item.techreborn.nuggets.tungstensteel": "Tungstensteel Nugget", - "item.techreborn.nuggets.zinc": "Zinc Nugget", - - "_comment": "Plates", - "item.techreborn.plate.advanced_alloy": "Advanced Alloy Plate", - "item.techreborn.plate.aluminum": "Aluminium Plate", - "item.techreborn.plate.brass": "Brass Plate", - "item.techreborn.plate.bronze": "Bronze Plate", - "item.techreborn.plate.carbon": "Carbon Plate", - "item.techreborn.plate.chrome": "Chrome Plate", - "item.techreborn.plate.coal": "Coal Plate", - "item.techreborn.plate.copper": "Copper Plate", - "item.techreborn.plate.diamond": "Diamond Plate", - "item.techreborn.plate.electrum": "Electrum Plate", - "item.techreborn.plate.emerald": "Emerald Plate", - "item.techreborn.plate.gold": "Gold Plate", - "item.techreborn.plate.invar": "Invar Plate", - "item.techreborn.plate.iridium_alloy": "Iridium Alloy Plate", - "item.techreborn.plate.iridium": "Iridium Plate", - "item.techreborn.plate.iron": "Iron Plate", - "item.techreborn.plate.lapis": "Lapis Lazuli Plate", - "item.techreborn.plate.lazurite": "Lazurite Plate", - "item.techreborn.plate.lead": "Lead Plate", - "item.techreborn.plate.magnalium": "Magnalium Plate", - "item.techreborn.plate.nickel": "Nickel Plate", - "item.techreborn.plate.obsidian": "Obsidian Plate", - "item.techreborn.plate.peridot": "Peridot Plate", - "item.techreborn.plate.platinum": "Platinum Plate", - "item.techreborn.plate.red_garnet": "Red Garnet Plate", - "item.techreborn.plate.redstone": "Redstone Plate", - "item.techreborn.plate.refined_iron": "Refined Iron Plate", - "item.techreborn.plate.ruby": "Ruby Plate", - "item.techreborn.plate.sapphire": "Sapphire Plate", - "item.techreborn.plate.silicon": "Silicon Plate", - "item.techreborn.plate.silver": "Silver Plate", - "item.techreborn.plate.steel": "Steel Plate", - "item.techreborn.plate.tin": "Tin Plate", - "item.techreborn.plate.titanium": "Titanium Plate", - "item.techreborn.plate.tungsten": "Tungsten Plate", - "item.techreborn.plate.tungstensteel": "Tungstensteel Plate", - "item.techreborn.plate.wood": "Wooden Plate", - "item.techreborn.plate.yellow_garnet": "Yellow Garnet Plate", - "item.techreborn.plate.zinc": "Zinc Plate", - - "_comment": "Parts", - "item.techreborn.part.energy_flow_circuit": "Energy Flow Circuit", - "item.techreborn.part.data_control_circuit": "Data Control Circuit", - "item.techreborn.part.data_orb": "Data Orb", - "item.techreborn.part.data_storage_circuit": "Data Storage Circuit", - "item.techreborn.part.diamond_grinding_head": "Diamond Grinding Head", - "item.techreborn.part.diamond_saw_blade": "Diamond Saw Blade", - "item.techreborn.part.tungsten_grinding_head": "Tungsten Grinding Head", - "item.techreborn.part.helium_coolant_simple": "60k Helium Coolant Cell", - "item.techreborn.part.helium_coolant_triple": "180k Helium Coolant Cell", - "item.techreborn.part.helium_coolant_six": "360k Helium Coolant Cell", - "item.techreborn.part.nak_coolant_simple": "60k nak Coolant Cell", - "item.techreborn.part.nak_coolant_triple": "180k nak Coolant Cell", - "item.techreborn.part.nak_coolant_six": "360k nak Coolant Cell", - "item.techreborn.part.cupronickel_heating_coil": "Cupronickel Heating Coil", - "item.techreborn.part.nichrome_heating_coil": "Nichrome Heating Coil", - "item.techreborn.part.kanthal_heating_coil": "Kanthal Heating Coil", - "item.techreborn.part.super_conductor": "Superconductor", - "item.techreborn.part.thorium_cell": "Fuel Rod (Thorium)", - "item.techreborn.part.double_thorium_cell": "Dual Fuel Rod (Thorium)", - "item.techreborn.part.quad_thorium_cell": "Quad Fuel Rod (Thorium)", - "item.techreborn.part.plutonium_cell": "Fuel Rod (Plutonium)", - "item.techreborn.part.double_plutonium_cell": "Dual Fuel Rod (Plutonium)", - "item.techreborn.part.quad_plutonium_cell": "Quad Fuel Rod (Plutonium)", - "item.techreborn.part.iridium_neutron_reflector": "Iridium Neutron Reflector", - "item.techreborn.part.computer_monitor": "Computer Monitor", - "item.techreborn.part.machine_parts": "Machine Parts", - "item.techreborn.part.neutron_reflector": "Neutron Reflector", - "item.techreborn.part.thick_neutron_reflector": "Thick Neutron Reflector", - "item.techreborn.part.sap": "Sap", - "item.techreborn.part.rubber": "Rubber", - "item.techreborn.part.scrap": "Scrap", - "item.techreborn.part.electronic_circuit": "Electronic Circuit", - "item.techreborn.part.advanced_circuit": "Advanced Electronic Circuit", - "item.techreborn.part.coolant_simple": "10k Coolant Cell", - "item.techreborn.part.coolant_triple": "30k Coolant Cell", - "item.techreborn.part.coolant_six": "60k Coolant Cell", - "item.techreborn.part.carbon_mesh": "Carbon Mesh", - "item.techreborn.part.carbon_fiber": "Carbon Fiber", - "item.techreborn.part.uuMatter": "UU-Matter", - - "_comment": "Items-Armor", - "item.techreborn.cloakingdevice": "Cloaking Device", - "item.techreborn.lapotronpack": "Lapotronic Orbpack", - "item.techreborn.lithiumbatpack": "Lithium Batpack", - - "_comment": "Items-Battery", - "item.techreborn.energyCrystal": "Energy Crystal", - "item.techreborn.lapotronCrystal": "Lapotron Crystal", - "item.techreborn.lapotronicorb": "Lapotronic Energy Orb", - "item.techreborn.lithiumBattery": "Lithium Battery", - "item.techreborn.rebattery": "Battery", - - "_comment": "Items-Tools", - "item.techreborn.advancedChainsaw": "Advanced Chainsaw", - "item.techreborn.advancedDrill": "Advanced Drill", - "item.techreborn.advancedJackhammer": "Advanced Jackhammer", - "item.techreborn.debug": "Debug Tool", - "item.techreborn.diamondChainsaw": "Diamond Chainsaw", - "item.techreborn.diamondDrill": "Diamond Drill", - "item.techreborn.diamondJackhammer": "Diamond Jackhammer", - "item.techreborn.electric_treetap": "Electric Treetap", - "item.techreborn.nanosaber": "Nanosaber", - "item.techreborn.omniTool": "Omni-Tool", - "item.techreborn.rockcutter": "Rockcutter", - "item.techreborn.ironChainsaw": "Steel Chainsaw", - "item.techreborn.ironDrill": "Steel Drill", - "item.techreborn.steelJackhammer": "Steel Jackhammer", - "item.techreborn.treetap": "Treetap", - "item.techreborn.wrench": "Wrench", - - "_comment": "Items-Misc", - "item.techreborn.cell": "Empty Cell", - "item.techreborn.cell.fluid": "$fluid$ Cell", - "item.techreborn.frequencyTransmitter": "Frequency Transmitter", - "item.techreborn.manual": "Tech Reborn Manual", - "item.techreborn.missingRecipe": "Missing Recipe Placeholder", - "item.techreborn.scrapbox": "Scrap Box", - "item.techreborn.upgrade.overclock": "Overclocker Upgrade", - "item.techreborn.upgrade.transformer": "Transformer Upgrade", - "item.techreborn.upgrade.energy_storage": "Energy Storage Upgrade", - - - "item.bronzeSword": "Bronze Sword", - "item.bronzePickaxe": "Bronze Pickaxe", - "item.bronzeSpade": "Bronze Shovel", - "item.bronzeAxe": "Bronze Axe", - "item.bronzeHoe": "Bronze Hoe", - "item.bronzeHelmet": "Bronze Helmet", - "item.bronzeChestplate": "Bronze Chestplate", - "item.bronzeLeggings": "Bronze Leggings", - "item.bronzeBoots": "Bronze Boots", - - "item.rubySword": "Ruby Sword", - "item.rubyPickaxe": "Ruby Pickaxe", - "item.rubySpade": "Ruby Shovel", - "item.rubyAxe": "Ruby Axe", - "item.rubyHoe": "Ruby Hoe", - "item.rubyHelmet": "Ruby Helmet", - "item.rubyChestplate": "Ruby Chestplate", - "item.rubyLeggings": "Ruby Leggings", - "item.rubyBoots": "Ruby Boots", - - "item.sapphireSword": "Sapphire Sword", - "item.sapphirePickaxe": "Sapphire Pickaxe", - "item.sapphireSpade": "Sapphire Shovel", - "item.sapphireAxe": "Sapphire Axe", - "item.sapphireHoe": "Sapphire Hoe", - "item.sapphireHelmet": "Sapphire Helmet", - "item.sapphireChestplate": "Sapphire Chestplate", - "item.sapphireLeggings": "Sapphire Leggings", - "item.sapphireBoots": "Sapphire Boots", - - "item.peridotSword": "Peridot Sword", - "item.peridotPickaxe": "Peridot Pickaxe", - "item.peridotSpade": "Peridot Shovel", - "item.peridotAxe": "Peridot Axe", - "item.peridotHoe": "Peridot Hoe", - "item.peridotHelmet": "Peridot Helmet", - "item.peridotChestplate": "Peridot Chestplate", - "item.peridotLeggings": "Peridot Leggings", - "item.peridotBoots": "Peridot Boots", - - "_comment": "Message", - "techreborn.message.missingmultiblock": "Incomplete Multiblock", - "techreborn.message.setTo": "Set to", - "techreborn.message.in": "in", - "techreborn.message.noCoordsSet": "No Coordinates Set", - "techreborn.message.coordsHaveBeen": "Coordinates have been", - "techreborn.message.cleared": "Cleared", - "techreborn.message.detects": "Detects", - "techreborn.message.alarm": "Switched to:", - "techreborn.message.allPlayers": "All Players", - "techreborn.message.onlyOtherPlayers": "Only Other Players", - "techreborn.message.onlyYou": "Only You", - "techreborn.message.nanosaberActive": "Active", - "techreborn.message.nanosaberActivate": "Activate", - "techreborn.message.nanosaberDeactivating": "Deactivating", - "techreborn.message.nanosaberInactive": "Inactive", - "techreborn.message.nanosaberEnergyErrorTo": "Not Enough Energy to", - "techreborn.message.nanosaberEnergyError": "Not Enough Energy:", - - "keys.techreborn.category": "TechReborn Category", - "keys.techreborn.config": "Config", - - "_comment": "JEI Integration", - "techreborn.jei.recipe.start.cost": "Start: %s", - "techreborn.jei.recipe.running.cost": "%s/t: %s", - "techreborn.jei.recipe.processing.time.1": "Time: %s ticks", - "techreborn.jei.recipe.processing.time.2": "(%s sec)", - - "techreborn.jei.desc.rubberSap": "In order to get sap, you need to find a rubber tree or obtain a rubber tree sapling and proceed to grow it. Once you have obtained a rubber tree, search around for little yellowish spots on the tree. If you don't see any, just wait a bit and eventually these yellow \"sap\" spots. To harvest the sap, use a treetap and use it on the log.", - "techreborn.jei.desc.scrapBox": "Scrapboxes can be opened by either a simple use in hand, or by dispensers. That's right, just throw your scrapboxes into dispensers and give them a redstone signal, and boom! Random item!", - "techreborn.jei.desc.scrapBoxNoDispenser": "Scrapboxes can be opened by a simple use in hand!", - - "techreborn.jei.category.alloy.furnace": "Alloy Furnace", - "techreborn.jei.category.scrapbox": "Opening Scrapboxes", - "techreborn.jei.category.generator.gas": "Gas Generator", - "techreborn.jei.category.generator.semifluid": "Semifluid Generator", - "techreborn.jei.category.generator.diesel": "Diesel Generator", - "techreborn.jei.category.generator.thermal": "Thermal Generator", - "techreborn.jei.category.generator.plasma": "Plasma Generator", - - "_comment": "Death Messages", - "death.attack.shock": "%s was electrocuted", - - "_comment": "Entities", - "entity.nuke": "Nuke", - - "_comment": "Tooltips", - "techreborn.tooltip.transferRate": "Transfer Rate", - "techreborn.tooltip.tier": "Tier", - "techreborn.tooltip.wip": "WIP Coming Soon", - "techreborn.tooltip.inventory": "Inventory", - "techreborn.tooltip.upgrades": "Upgrades", - "techreborn.tooltip.alarm": "Shift rightclick to change sound", - - "_comment": "ManualUI", - "techreborn.manual.wiki": "Online wiki", - "techreborn.manual.discord": "Our discord", - "techreborn.manual.wikibtn": "Open", - "techreborn.manual.discordbtn": "Join", - - "_comment": "Advancements", - "advancements.techreborn.root.desc": "Now that you have acquired Tech Reborn ore, you might find a tree tap usefull.", - "advancements.techreborn.treetap": "TreeTap", - "advancements.techreborn.treetap.desc": "Now that you have crafted a tree tap you will want to use it on a sap spot on a rubber tree.", - "advancements.techreborn.sap": "Rubber Sap", - "advancements.techreborn.sap.desc": "Well done, you now have rubber sap. You will want to smelt it in a furnace to create rubber next.", - - "_comment": "TEMPORARY AUTO-GENERATED LOCALIZATION! THIS IS PURELY TO MAKE DEV WORK A BIT EASIER WITHOUT A FUCKTON OF UNLOCALIZED NAMES", - "item.techreborn.bauxite_ore": "Bauxite Ore", - "item.techreborn.cinnabar_ore": "Cinnabar Ore", - "item.techreborn.copper_ore": "Copper Ore", - "item.techreborn.galena_ore": "Galena Ore", - "item.techreborn.iridium_ore": "Iridium Ore", - "item.techreborn.lead_ore": "Lead Ore", - "item.techreborn.peridot_ore": "Peridot Ore", - "item.techreborn.pyrite_ore": "Pyrite Ore", - "item.techreborn.ruby_ore": "Ruby Ore", - "item.techreborn.sapphire_ore": "Sapphire Ore", - "item.techreborn.sheldonite_ore": "Sheldonite Ore", - "item.techreborn.silver_ore": "Silver Ore", - "item.techreborn.sodalite_ore": "Sodalite Ore", - "item.techreborn.sphalerite_ore": "Sphalerite Ore", - "item.techreborn.tin_ore": "Tin Ore", - "item.techreborn.tungsten_ore": "Tungsten Ore", - "item.techreborn.aluminum_storage_block": "Aluminum Storage Block", - "item.techreborn.brass_storage_block": "Brass Storage Block", - "item.techreborn.bronze_storage_block": "Bronze Storage Block", - "item.techreborn.chrome_storage_block": "Chrome Storage Block", - "item.techreborn.copper_storage_block": "Copper Storage Block", - "item.techreborn.electrum_storage_block": "Electrum Storage Block", - "item.techreborn.invar_storage_block": "Invar Storage Block", - "item.techreborn.iridium_storage_block": "Iridium Storage Block", - "item.techreborn.iridium_reinforced_stone_storage_block": "Iridium Reinforced Stone Storage Block", - "item.techreborn.iridium_reinforced_tungstensteel_storage_block": "Iridium Reinforced Tungstensteel Storage Block", - "item.techreborn.lead_storage_block": "Lead Storage Block", - "item.techreborn.nickel_storage_block": "Nickel Storage Block", - "item.techreborn.osmium_storage_block": "Osmium Storage Block", - "item.techreborn.peridot_storage_block": "Peridot Storage Block", - "item.techreborn.platinum_storage_block": "Platinum Storage Block", - "item.techreborn.red_garnet_storage_block": "Red Garnet Storage Block", - "item.techreborn.refined_iron_storage_block": "Refined Iron Storage Block", - "item.techreborn.ruby_storage_block": "Ruby Storage Block", - "item.techreborn.sapphire_storage_block": "Sapphire Storage Block", - "item.techreborn.silver_storage_block": "Silver Storage Block", - "item.techreborn.steel_storage_block": "Steel Storage Block", - "item.techreborn.tin_storage_block": "Tin Storage Block", - "item.techreborn.titanium_storage_block": "Titanium Storage Block", - "item.techreborn.tungsten_storage_block": "Tungsten Storage Block", - "item.techreborn.tungstensteel_storage_block": "Tungstensteel Storage Block", - "item.techreborn.yellow_garnet_storage_block": "Yellow Garnet Storage Block", - "item.techreborn.zinc_storage_block": "Zinc Storage Block", - "item.techreborn.basic_machine_frame": "Basic Machine Frame", - "item.techreborn.basic_machine_casing": "Basic Machine Casing", - "item.techreborn.advanced_machine_frame": "Advanced Machine Frame", - "item.techreborn.advanced_machine_casing": "Advanced Machine Casing", - "item.techreborn.industrial_machine_frame": "Industrial Machine Frame", - "item.techreborn.industrial_machine_casing": "Industrial Machine Casing", - "item.techreborn.computer_cube": "Computer Cube", - "item.techreborn.cable": "Cable", - "item.techreborn.nuke": "Nuke", - "item.techreborn.refined_iron_fence": "Refined Iron Fence", - "item.techreborn.reinforced_glass": "Reinforced Glass", - "item.techreborn.rubber_leaves": "Rubber Leaves", - "item.techreborn.rubber_log": "Rubber Log", - "item.techreborn.rubber_plank_double_slab": "Rubber Plank Double Slab", - "item.techreborn.rubber_plank_stair": "Rubber Plank Stair", - "item.techreborn.rubber_planks": "Rubber Planks", - "item.techreborn.rubber_sapling": "Rubber Sapling", - "item.techreborn.alloy_smelter": "Alloy Smelter", - "item.techreborn.assembly_machine": "Assembly Machine", - "item.techreborn.auto_crafting_table": "Auto Crafting Table", - "item.techreborn.compressor": "Compressor", - "item.techreborn.chemical_reactor": "Chemical Reactor", - "item.techreborn.distillation_tower": "Distillation Tower", - "item.techreborn.electric_furnace": "Electric Furnace", - "item.techreborn.extractor": "Extractor", - "item.techreborn.fluid_replicator": "Fluid Replicator", - "item.techreborn.grinder": "Grinder", - "item.techreborn.implosion_compressor": "Implosion Compressor", - "item.techreborn.industrial_blast_furnace": "Industrial Blast Furnace", - "item.techreborn.industrial_centrifuge": "Industrial Centrifuge", - "item.techreborn.industrial_electrolyzer": "Industrial Electrolyzer", - "item.techreborn.industrial_grinder": "Industrial Grinder", - "item.techreborn.industrial_sawmill": "Industrial Sawmill", - "item.techreborn.iron_alloy_furnace": "Iron Alloy Furnace", - "item.techreborn.iron_furnace": "Iron Furnace", - "item.techreborn.matter_fabricator": "Matter Fabricator", - "item.techreborn.recycler": "Recycler", - "item.techreborn.rolling_machine": "Rolling Machine", - "item.techreborn.scrapboxinator": "Scrapboxinator", - "item.techreborn.vacuum_freezer": "Vacuum Freezer", - "item.techreborn.creative_solar_panel": "Creative Solar Panel", - "item.techreborn.diesel_generator": "Diesel Generator", - "item.techreborn.dragon_egg_syphon": "Dragon Egg Syphon", - "item.techreborn.fusion_coil": "Fusion Coil", - "item.techreborn.fusion_control_computer": "Fusion Control Computer", - "item.techreborn.gas_turbine": "Gas Turbine", - "item.techreborn.lightning_rod": "Lightning Rod", - "item.techreborn.plasma_generator": "Plasma Generator", - "item.techreborn.semi_fluid_generator": "Semi Fluid Generator", - "item.techreborn.solar_panel": "Solar Panel", - "item.techreborn.solid_fuel_generator": "Solid Fuel Generator", - "item.techreborn.thermal_generator": "Thermal Generator", - "item.techreborn.water_mill": "Water Mill", - "item.techreborn.wind_mill": "Wind Mill", - "item.techreborn.creative_quantum_chest": "Creative Quantum Chest", - "item.techreborn.creative_quantum_tank": "Creative Quantum Tank", - "item.techreborn.digital_chest": "Digital Chest", - "item.techreborn.quantum_chest": "Quantum Chest", - "item.techreborn.quantum_tank": "Quantum Tank", - "item.techreborn.adjustable_su": "Adjustable Su", - "item.techreborn.charge_o_mat": "Charge O Mat", - "item.techreborn.interdimensional_su": "Interdimensional Su", - "item.techreborn.lapotronic_su": "Lapotronic Su", - "item.techreborn.lsu_storage": "Lsu Storage", - "item.techreborn.low_voltage_su": "Low Voltage Su", - "item.techreborn.medium_voltage_su": "Medium Voltage Su", - "item.techreborn.high_voltage_su": "High Voltage Su", - "item.techreborn.lv_transformer": "Lv Transformer", - "item.techreborn.mv_transformer": "Mv Transformer", - "item.techreborn.hv_transformer": "Hv Transformer", - "item.techreborn.alarm": "Alarm", - "item.techreborn.chunk_loader": "Chunk Loader", - "item.techreborn.lamp_incandescent": "Lamp Incandescent", - "item.techreborn.lamp_led": "Lamp Led", - "item.techreborn.magic_energy_absorber": "Magic Energy Absorber", - "item.techreborn.magic_energy_converter": "Magic Energy Converter", - "item.techreborn.player_detector": "Player Detector", - "item.techreborn.techreborn_techreborn.berylium": "Berylium", - "item.techreborn.techreborn_techreborn.calcium": "Calcium", - "item.techreborn.techreborn_techreborn.calciumcarbonate": "Calciumcarbonate", - "item.techreborn.techreborn_techreborn.chlorite": "Chlorite", - "item.techreborn.techreborn_techreborn.deuterium": "Deuterium", - "item.techreborn.techreborn_techreborn.glyceryl": "Glyceryl", - "item.techreborn.techreborn_techreborn.helium": "Helium", - "item.techreborn.techreborn_techreborn.helium3": "Helium3", - "item.techreborn.techreborn_techreborn.heliumplasma": "Heliumplasma", - "item.techreborn.techreborn_techreborn.hydrogen": "Hydrogen", - "item.techreborn.techreborn_techreborn.lithium": "Lithium", - "item.techreborn.techreborn_techreborn.mercury": "Mercury", - "item.techreborn.techreborn_techreborn.methane": "Methane", - "item.techreborn.techreborn_techreborn.nitrocoalfuel": "Nitrocoalfuel", - "item.techreborn.techreborn_techreborn.nitrofuel": "Nitrofuel", - "item.techreborn.techreborn_techreborn.nitrogen": "Nitrogen", - "item.techreborn.techreborn_techreborn.nitrogendioxide": "Nitrogendioxide", - "item.techreborn.techreborn_techreborn.potassium": "Potassium", - "item.techreborn.techreborn_techreborn.silicon": "Silicon", - "item.techreborn.techreborn_techreborn.sodium": "Sodium", - "item.techreborn.techreborn_techreborn.sodiumpersulfate": "Sodiumpersulfate", - "item.techreborn.techreborn_techreborn.tritium": "Tritium", - "item.techreborn.techreborn_techreborn.wolframium": "Wolframium", - "item.techreborn.techreborn_techreborn.carbon": "Carbon", - "item.techreborn.techreborn_techreborn.carbonfiber": "Carbonfiber", - "item.techreborn.techreborn_techreborn.nitrocarbon": "Nitrocarbon", - "item.techreborn.techreborn_techreborn.sulfur": "Sulfur", - "item.techreborn.techreborn_techreborn.sodiumsulfide": "Sodiumsulfide", - "item.techreborn.techreborn_techreborn.diesel": "Diesel", - "item.techreborn.techreborn_techreborn.nitrodiesel": "Nitrodiesel", - "item.techreborn.techreborn_techreborn.oil": "Oil", - "item.techreborn.techreborn_techreborn.sulfuricacid": "Sulfuricacid", - "item.techreborn.techreborn_techreborn.compressedair": "Compressedair", - "item.techreborn.techreborn_techreborn.electrolyzedwater": "Electrolyzedwater", - "item.techreborn.advanced_alloy_ingot": "Advanced Alloy Ingot", - "item.techreborn.aluminum_ingot": "Aluminum Ingot", - "item.techreborn.brass_ingot": "Brass Ingot", - "item.techreborn.bronze_ingot": "Bronze Ingot", - "item.techreborn.chrome_ingot": "Chrome Ingot", - "item.techreborn.copper_ingot": "Copper Ingot", - "item.techreborn.electrum_ingot": "Electrum Ingot", - "item.techreborn.hot_tungstensteel_ingot": "Hot Tungstensteel Ingot", - "item.techreborn.invar_ingot": "Invar Ingot", - "item.techreborn.iridium_alloy_ingot": "Iridium Alloy Ingot", - "item.techreborn.iridium_ingot": "Iridium Ingot", - "item.techreborn.lead_ingot": "Lead Ingot", - "item.techreborn.mixed_metal_ingot": "Mixed Metal Ingot", - "item.techreborn.nickel_ingot": "Nickel Ingot", - "item.techreborn.platinum_ingot": "Platinum Ingot", - "item.techreborn.refined_iron_ingot": "Refined Iron Ingot", - "item.techreborn.silver_ingot": "Silver Ingot", - "item.techreborn.steel_ingot": "Steel Ingot", - "item.techreborn.tin_ingot": "Tin Ingot", - "item.techreborn.titanium_ingot": "Titanium Ingot", - "item.techreborn.tungsten_ingot": "Tungsten Ingot", - "item.techreborn.tungstensteel_ingot": "Tungstensteel Ingot", - "item.techreborn.zinc_ingot": "Zinc Ingot", - "item.techreborn.aluminum_nugget": "Aluminum Nugget", - "item.techreborn.brass_nugget": "Brass Nugget", - "item.techreborn.bronze_nugget": "Bronze Nugget", - "item.techreborn.chrome_nugget": "Chrome Nugget", - "item.techreborn.copper_nugget": "Copper Nugget", - "item.techreborn.diamond_nugget": "Diamond Nugget", - "item.techreborn.electrum_nugget": "Electrum Nugget", - "item.techreborn.hot_tungstensteel_nugget": "Hot Tungstensteel Nugget", - "item.techreborn.invar_nugget": "Invar Nugget", - "item.techreborn.iridium_nugget": "Iridium Nugget", - "item.techreborn.lead_nugget": "Lead Nugget", - "item.techreborn.nickel_nugget": "Nickel Nugget", - "item.techreborn.platinum_nugget": "Platinum Nugget", - "item.techreborn.refined_iron_nugget": "Refined Iron Nugget", - "item.techreborn.silver_nugget": "Silver Nugget", - "item.techreborn.steel_nugget": "Steel Nugget", - "item.techreborn.tin_nugget": "Tin Nugget", - "item.techreborn.titanium_nugget": "Titanium Nugget", - "item.techreborn.tungsten_nugget": "Tungsten Nugget", - "item.techreborn.tungstensteel_nugget": "Tungstensteel Nugget", - "item.techreborn.zinc_nugget": "Zinc Nugget", - "item.techreborn.peridot_gem": "Peridot Gem", - "item.techreborn.red_garnet_gem": "Red Garnet Gem", - "item.techreborn.ruby_gem": "Ruby Gem", - "item.techreborn.sapphire_gem": "Sapphire Gem", - "item.techreborn.yellow_garnet_gem": "Yellow Garnet Gem", + "_comment7": "Dusts", "item.techreborn.almandine_dust": "Almandine Dust", - "item.techreborn.aluminum_dust": "Aluminum Dust", + "item.techreborn.aluminum_dust": "Aluminium Dust", "item.techreborn.andesite_dust": "Andesite Dust", "item.techreborn.andradite_dust": "Andradite Dust", - "item.techreborn.ashes_dust": "Ashes Dust", + "item.techreborn.ashes_dust": "Ashes", "item.techreborn.basalt_dust": "Basalt Dust", "item.techreborn.bauxite_dust": "Bauxite Dust", "item.techreborn.brass_dust": "Brass Dust", @@ -858,7 +237,7 @@ "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 Dust", + "item.techreborn.dark_ashes_dust": "Dark Ashes", "item.techreborn.diamond_dust": "Diamond Dust", "item.techreborn.diorite_dust": "Diorite Dust", "item.techreborn.electrum_dust": "Electrum Dust", @@ -904,75 +283,136 @@ "item.techreborn.uvarovite_dust": "Uvarovite Dust", "item.techreborn.yellow_garnet_dust": "Yellow Garnet Dust", "item.techreborn.zinc_dust": "Zinc Dust", - "item.techreborn.almandine_small_dust": "Almandine Small Dust", - "item.techreborn.aluminum_small_dust": "Aluminum Small Dust", - "item.techreborn.andesite_small_dust": "Andesite Small Dust", - "item.techreborn.andradite_small_dust": "Andradite Small Dust", - "item.techreborn.ashes_small_dust": "Ashes Small Dust", - "item.techreborn.basalt_small_dust": "Basalt Small Dust", - "item.techreborn.bauxite_small_dust": "Bauxite Small Dust", - "item.techreborn.brass_small_dust": "Brass Small Dust", - "item.techreborn.bronze_small_dust": "Bronze Small Dust", - "item.techreborn.calcite_small_dust": "Calcite Small Dust", - "item.techreborn.charcoal_small_dust": "Charcoal Small Dust", - "item.techreborn.chrome_small_dust": "Chrome Small Dust", - "item.techreborn.cinnabar_small_dust": "Cinnabar Small Dust", - "item.techreborn.clay_small_dust": "Clay Small Dust", - "item.techreborn.coal_small_dust": "Coal Small Dust", - "item.techreborn.copper_small_dust": "Copper Small Dust", - "item.techreborn.dark_ashes_small_dust": "Dark Ashes Small Dust", - "item.techreborn.diamond_small_dust": "Diamond Small Dust", - "item.techreborn.diorite_small_dust": "Diorite Small Dust", - "item.techreborn.electrum_small_dust": "Electrum Small Dust", - "item.techreborn.emerald_small_dust": "Emerald Small Dust", - "item.techreborn.ender_eye_small_dust": "Ender Eye Small Dust", - "item.techreborn.ender_pearl_small_dust": "Ender Pearl Small Dust", - "item.techreborn.endstone_small_dust": "Endstone Small Dust", - "item.techreborn.flint_small_dust": "Flint Small Dust", - "item.techreborn.galena_small_dust": "Galena Small Dust", - "item.techreborn.glowstone_small_dust": "Glowstone Small Dust", - "item.techreborn.gold_small_dust": "Gold Small Dust", - "item.techreborn.granite_small_dust": "Granite Small Dust", - "item.techreborn.grossular_small_dust": "Grossular Small Dust", - "item.techreborn.invar_small_dust": "Invar Small Dust", - "item.techreborn.iron_small_dust": "Iron Small Dust", - "item.techreborn.lazurite_small_dust": "Lazurite Small Dust", - "item.techreborn.lead_small_dust": "Lead Small Dust", - "item.techreborn.magnesium_small_dust": "Magnesium Small Dust", - "item.techreborn.manganese_small_dust": "Manganese Small Dust", - "item.techreborn.marble_small_dust": "Marble Small Dust", - "item.techreborn.netherrack_small_dust": "Netherrack Small Dust", - "item.techreborn.nickel_small_dust": "Nickel Small Dust", - "item.techreborn.obsidian_small_dust": "Obsidian Small Dust", - "item.techreborn.olivine_small_dust": "Olivine Small Dust", - "item.techreborn.peridot_small_dust": "Peridot Small Dust", - "item.techreborn.phosphorous_small_dust": "Phosphorous Small Dust", - "item.techreborn.platinum_small_dust": "Platinum Small Dust", - "item.techreborn.pyrite_small_dust": "Pyrite Small Dust", - "item.techreborn.pyrope_small_dust": "Pyrope Small Dust", - "item.techreborn.redstone_small_dust": "Redstone Small Dust", - "item.techreborn.red_garnet_small_dust": "Red Garnet Small Dust", - "item.techreborn.ruby_small_dust": "Ruby Small Dust", - "item.techreborn.saltpeter_small_dust": "Saltpeter Small Dust", - "item.techreborn.sapphire_small_dust": "Sapphire Small Dust", - "item.techreborn.saw_small_dust": "Saw Small Dust", - "item.techreborn.silver_small_dust": "Silver Small Dust", - "item.techreborn.sodalite_small_dust": "Sodalite Small Dust", - "item.techreborn.spessartine_small_dust": "Spessartine Small Dust", - "item.techreborn.sphalerite_small_dust": "Sphalerite Small Dust", - "item.techreborn.steel_small_dust": "Steel Small Dust", - "item.techreborn.sulfur_small_dust": "Sulfur Small Dust", - "item.techreborn.tin_small_dust": "Tin Small Dust", - "item.techreborn.titanium_small_dust": "Titanium Small Dust", - "item.techreborn.tungsten_small_dust": "Tungsten Small Dust", - "item.techreborn.uvarovite_small_dust": "Uvarovite Small Dust", - "item.techreborn.yellow_garnet_small_dust": "Yellow Garnet Small Dust", - "item.techreborn.zinc_small_dust": "Zinc Small Dust", + + "_comment8": "Small Dusts", + "item.techreborn.almandine_small_dust": "Small Pile of Almandine Dust", + "item.techreborn.aluminum_small_dust": "Small Pile of Aluminium Dust", + "item.techreborn.andesite_small_dust": "Small Pile of Andesite Dust", + "item.techreborn.andradite_small_dust": "Small Pile of Andradite Dust", + "item.techreborn.ashes_small_dust": "Small Pile of Ashes", + "item.techreborn.basalt_small_dust": "Small Pile of Basalt Dust", + "item.techreborn.bauxite_small_dust": "Small Pile of Bauxite Dust", + "item.techreborn.brass_small_dust": "Small Pile of Brass Dust", + "item.techreborn.bronze_small_dust": "Small Pile of Bronze Dust", + "item.techreborn.calcite_small_dust": "Small Pile of Calcite Dust", + "item.techreborn.charcoal_small_dust": "Small Pile of Charcoal Dust", + "item.techreborn.chrome_small_dust": "Small Pile of Chrome Dust", + "item.techreborn.cinnabar_small_dust": "Small Pile of Cinnabar Dust", + "item.techreborn.clay_small_dust": "Small Pile of Clay Dust", + "item.techreborn.coal_small_dust": "Small Pile of Coal Dust", + "item.techreborn.copper_small_dust": "Small Pile of Copper Dust", + "item.techreborn.dark_ashes_small_dust": "Small Pile of Dark Ashes", + "item.techreborn.diamond_small_dust": "Small Pile of Diamond Dust", + "item.techreborn.diorite_small_dust": "Small Pile of Diorite Dust", + "item.techreborn.electrum_small_dust": "Small Pile of Electrum Dust", + "item.techreborn.emerald_small_dust": "Small Pile of Emerald Dust", + "item.techreborn.ender_eye_small_dust": "Small Pile of Ender Eye Dust", + "item.techreborn.ender_pearl_small_dust": "Small Pile of Ender Pearl Dust", + "item.techreborn.endstone_small_dust": "Small Pile of Endstone Dust", + "item.techreborn.flint_small_dust": "Small Pile of Flint Dust", + "item.techreborn.galena_small_dust": "Small Pile of Galena Dust", + "item.techreborn.glowstone_small_dust": "Small Pile of Glowstone Dust", + "item.techreborn.gold_small_dust": "Small Pile of Gold Dust", + "item.techreborn.granite_small_dust": "Small Pile of Granite Dust", + "item.techreborn.grossular_small_dust": "Small Pile of Grossular Dust", + "item.techreborn.invar_small_dust": "Small Pile of Invar Dust", + "item.techreborn.iron_small_dust": "Small Pile of Iron Dust", + "item.techreborn.lazurite_small_dust": "Small Pile of Lazurite Dust", + "item.techreborn.lead_small_dust": "Small Pile of Lead Dust", + "item.techreborn.magnesium_small_dust": "Small Pile of Magnesium Dust", + "item.techreborn.manganese_small_dust": "Small Pile of Manganese Dust", + "item.techreborn.marble_small_dust": "Small Pile of Marble Dust", + "item.techreborn.netherrack_small_dust": "Small Pile of Netherrack Dust", + "item.techreborn.nickel_small_dust": "Small Pile of Nickel Dust", + "item.techreborn.obsidian_small_dust": "Small Pile of Obsidian Dust", + "item.techreborn.olivine_small_dust": "Small Pile of Olivine Dust", + "item.techreborn.peridot_small_dust": "Small Pile of Peridot", + "item.techreborn.phosphorous_small_dust": "Small Pile of Phosphorous Dust", + "item.techreborn.platinum_small_dust": "Small Pile of Platinum Dust", + "item.techreborn.pyrite_small_dust": "Small Pile of Pyrite Dust", + "item.techreborn.pyrope_small_dust": "Small Pile of Pyrope Dust", + "item.techreborn.red_garnet_small_dust": "Small Pile of Red Garnet Dust", + "item.techreborn.redstone_small_dust": "Small Pile of Redstone", + "item.techreborn.ruby_small_dust": "Small Pile of Ruby Dust", + "item.techreborn.saltpeter_small_dust": "Small Pile of Saltpeter Dust", + "item.techreborn.sapphire_small_dust": "Small Pile of Sapphire Dust", + "item.techreborn.saw_small_dust": "Small Pile of Saw Dust", + "item.techreborn.silver_small_dust": "Small Pile of Silver Dust", + "item.techreborn.sodalite_small_dust": "Small Pile of Sodalite Dust", + "item.techreborn.spessartine_small_dust": "Small Pile of Spessartine Dust", + "item.techreborn.sphalerite_small_dust": "Small Pile of Sphalerite Dust", + "item.techreborn.steel_small_dust": "Small Pile of Steel Dust", + "item.techreborn.sulfur_small_dust": "Small Pile of Sulfur Dust", + "item.techreborn.tin_small_dust": "Small Pile of Tin Dust", + "item.techreborn.titanium_small_dust": "Small Pile of Titanium Dust", + "item.techreborn.tungsten_small_dust": "Small Pile of Tungsten Dust", + "item.techreborn.uvarovite_small_dust": "Small Pile of Uvarovite Dust", + "item.techreborn.yellow_garnet_small_dust": "Small Pile of Yellow Garnet Dust", + "item.techreborn.zinc_small_dust": "Small Pile of Zinc Dust", + + "_comment9": "Gems", + "item.techreborn.ruby_gem": "Ruby", + "item.techreborn.sapphire_gem": "Sapphire", + "item.techreborn.peridot_gem": "Peridot", + "item.techreborn.red_garnet_gem": "Red Garnet", + "item.techreborn.yellow_garnet_gem": "Yellow Garnet", + + "_comment10": "Ingots", + "item.techreborn.advanced_alloy_ingot": "Advanced Alloy Ingot", + "item.techreborn.aluminum_ingot": "Aluminium Ingot", + "item.techreborn.brass_ingot": "Brass Ingot", + "item.techreborn.bronze_ingot": "Bronze Ingot", + "item.techreborn.chrome_ingot": "Chrome Ingot", + "item.techreborn.copper_ingot": "Copper Ingot", + "item.techreborn.electrum_ingot": "Electrum Ingot", + "item.techreborn.hot_tungstensteel_ingot": "Hot Tungstensteel Ingot", + "item.techreborn.invar_ingot": "Invar Ingot", + "item.techreborn.iridium_alloy_ingot": "Iridium Alloy Ingot", + "item.techreborn.iridium_ingot": "Iridium Ingot", + "item.techreborn.lead_ingot": "Lead Ingot", + "item.techreborn.mixed_metal_ingot": "Mixed Metal Ingot", + "item.techreborn.nickel_ingot": "Nickel Ingot", + "item.techreborn.platinum_ingot": "Platinum Ingot", + "item.techreborn.refined_iron_ingot": "Refined Iron Ingot", + "item.techreborn.silver_ingot": "Silver Ingot", + "item.techreborn.steel_ingot": "Steel Ingot", + "item.techreborn.tin_ingot": "Tin Ingot", + "item.techreborn.titanium_ingot": "Titanium Ingot", + "item.techreborn.tungsten_ingot": "Tungsten Ingot", + "item.techreborn.tungstensteel_ingot": "Tungstensteel Ingot", + "item.techreborn.zinc_ingot": "Zinc Ingot", + + "_comment11": "Nuggets", + "item.techreborn.aluminum_nugget": "Aluminium Nugget", + "item.techreborn.brass_nugget": "Brass Nugget", + "item.techreborn.bronze_nugget": "Bronze Nugget", + "item.techreborn.chrome_nugget": "Chrome Nugget", + "item.techreborn.copper_nugget": "Copper Nugget", + "item.techreborn.diamond_nugget": "Diamond Nugget", + "item.techreborn.electrum_nugget": "Electrum Nugget", + "item.techreborn.hot_tungstensteel_nugget": "Hot Tungstensteel Nugget", + "item.techreborn.invar_nugget": "Invar Nugget", + "item.techreborn.iridium_nugget": "Iridium Nugget", + "item.techreborn.iron_nugget": "Iron Nugget", + "item.techreborn.lead_nugget": "Lead Nugget", + "item.techreborn.nickel_nugget": "Nickel Nugget", + "item.techreborn.platinum_nugget": "Platinum Nugget", + "item.techreborn.refined_iron_nugget": "Refined Iron Nugget", + "item.techreborn.silver_nugget": "Silver Nugget", + "item.techreborn.steel_nugget": "Steel Nugget", + "item.techreborn.tin_nugget": "Tin Nugget", + "item.techreborn.titanium_nugget": "Titanium Nugget", + "item.techreborn.tungsten_nugget": "Tungsten Nugget", + "item.techreborn.tungstensteel_nugget": "Tungstensteel Nugget", + "item.techreborn.zinc_nugget": "Zinc Nugget", + + "_comment12": "Plates", "item.techreborn.advanced_alloy_plate": "Advanced Alloy Plate", - "item.techreborn.aluminum_plate": "Aluminum Plate", + "item.techreborn.aluminum_plate": "Aluminium Plate", "item.techreborn.brass_plate": "Brass Plate", "item.techreborn.bronze_plate": "Bronze Plate", "item.techreborn.carbon_plate": "Carbon Plate", + "item.techreborn.chrome_plate": "Chrome Plate", "item.techreborn.coal_plate": "Coal Plate", "item.techreborn.copper_plate": "Copper Plate", "item.techreborn.diamond_plate": "Diamond Plate", @@ -983,7 +423,7 @@ "item.techreborn.iridium_alloy_plate": "Iridium Alloy Plate", "item.techreborn.iridium_plate": "Iridium Plate", "item.techreborn.iron_plate": "Iron Plate", - "item.techreborn.lapis_plate": "Lapis Plate", + "item.techreborn.lapis_plate": "Lapis Lazuli Plate", "item.techreborn.lazurite_plate": "Lazurite Plate", "item.techreborn.lead_plate": "Lead Plate", "item.techreborn.magnalium_plate": "Magnalium Plate", @@ -1003,262 +443,191 @@ "item.techreborn.titanium_plate": "Titanium Plate", "item.techreborn.tungsten_plate": "Tungsten Plate", "item.techreborn.tungstensteel_plate": "Tungstensteel Plate", - "item.techreborn.wood_plate": "Wood Plate", + "item.techreborn.wood_plate": "Wooden Plate", "item.techreborn.yellow_garnet_plate": "Yellow Garnet Plate", "item.techreborn.zinc_plate": "Zinc Plate", - "item.techreborn.carbon_fiber": "Carbon Fiber", - "item.techreborn.carbon_mesh": "Carbon Mesh", + + "_comment13": "Parts", + "item.techreborn.carbon_fiber": "Carbon Fiber", + "item.techreborn.carbon_mesh": "Carbon Mesh", "item.techreborn.electronic_circuit": "Electronic Circuit", "item.techreborn.advanced_circuit": "Advanced Circuit", - "item.techreborn.industrial_circuit": "Industrial Circuit", + "item.techreborn.industrial_circuit": "Industrial Circuit", "item.techreborn.machine_parts": "Machine Parts", "item.techreborn.digital_display": "Digital Display", "item.techreborn.data_storage_core": "Data Storage Core", - "item.techreborn.data_storage_chip": "Data Storage Chip", + "item.techreborn.data_storage_chip": "Data Storage Chip", "item.techreborn.energy_flow_chip": "Energy Flow Chip", - "item.techreborn.superconductor": "Superconductor", - "item.techreborn.diamond_saw_blade": "Diamond Saw Blade", + "item.techreborn.superconductor": "Superconductor", + "item.techreborn.diamond_saw_blade": "Diamond Saw Blade", "item.techreborn.diamond_grinding_head": "Diamond Grinding Head", - "item.techreborn.tungsten_grinding_head": "Tungsten Grinding Head", + "item.techreborn.tungsten_grinding_head": "Tungsten Grinding Head", "item.techreborn.cupronickel_heating_coil": "Cupronickel Heating Coil", - "item.techreborn.kanthal_heating_coil": "Kanthal Heating Coil", - "item.techreborn.nichrome_heating_coil": "Nichrome Heating Coil", + "item.techreborn.kanthal_heating_coil": "Kanthal Heating Coil", + "item.techreborn.nichrome_heating_coil": "Nichrome Heating Coil", "item.techreborn.neutron_reflector": "Neutron Reflector", - "item.techreborn.thick_neutron_reflector": "Thick Neutron Reflector", + "item.techreborn.thick_neutron_reflector": "Thick Neutron Reflector", "item.techreborn.iridium_neutron_reflector": "Iridium Neutron Reflector", - "item.techreborn.water_coolant_cell_10k": "Water Coolant Cell 10k", - "item.techreborn.water_coolant_cell_30k": "Water Coolant Cell 30k", - "item.techreborn.water_coolant_cell_60k": "Water Coolant Cell 60k", - "item.techreborn.helium_coolant_cell_60k": "Helium Coolant Cell 60k", - "item.techreborn.helium_coolant_cell_360k": "Helium Coolant Cell 360k", - "item.techreborn.helium_coolant_cell_180k": "Helium Coolant Cell 180k", - "item.techreborn.nak_coolant_cell_60k": "Nak Coolant Cell 60k", - "item.techreborn.nak_coolant_cell_180k": "Nak Coolant Cell 180k", - "item.techreborn.nak_coolant_cell_360k": "Nak Coolant Cell 360k", - "item.techreborn.rubber": "Rubber", + "item.techreborn.water_coolant_cell_10k": "10k Water Coolant Cell", + "item.techreborn.water_coolant_cell_30k": "30k Water Coolant Cell", + "item.techreborn.water_coolant_cell_60k": "60k Water Coolant Cell", + "item.techreborn.helium_coolant_cell_60k": "60k Helium Coolant Cell", + "item.techreborn.helium_coolant_cell_180k": "180k Helium Coolant Cell", + "item.techreborn.helium_coolant_cell_360k": "360k Helium Coolant Cell", + "item.techreborn.nak_coolant_cell_60k": "60k NaK Coolant Cell", + "item.techreborn.nak_coolant_cell_180k": "180k NaK Coolant Cell", + "item.techreborn.nak_coolant_cell_360k": "360k NaK Coolant Cell", + "item.techreborn.rubber": "Rubber", "item.techreborn.sap": "Sap", "item.techreborn.scrap": "Scrap", - "item.techreborn.uu_matter": "Uu Matter", + "item.techreborn.uu_matter": "UU-Matter", + + "_comment14": "Items-Armor", + "item.techreborn.cloaking_device": "Cloaking Device", + "item.techreborn.lapotronic_orbpack": "Lapotronic Orbpack", + "item.techreborn.lithium_ion_batpack": "Lithium Batpack", + + "_comment15": "Items-Battery", + "item.techreborn.energy_crystal": "Energy Crystal", + "item.techreborn.lapotron_crystal": "Lapotron Crystal", + "item.techreborn.lapotronic_orb": "Lapotronic Energy Orb", + "item.techreborn.lithium_ion_battery": "Lithium Battery", + "item.techreborn.red_cell_battery": "Battery", + + "_comment16": "Items-Tools", + "item.techreborn.advanced_chainsaw": "Advanced Chainsaw", + "item.techreborn.advanced_drill": "Advanced Drill", + "item.techreborn.advanced_jackhammer": "Advanced Jackhammer", + "item.techreborn.debug_tool": "Debug Tool", + "item.techreborn.industrial_chainsaw": "Industrial Chainsaw", + "item.techreborn.industrial_drill": "Industrial Drill", + "item.techreborn.industrial_jackhammer": "Industrial Jackhammer", + "item.techreborn.electric_treetap": "Electric Treetap", + "item.techreborn.nanosaber": "Nanosaber", + "item.techreborn.omni_tool": "Omni-Tool", + "item.techreborn.rock_cutter": "Rockcutter", + "item.techreborn.basic_chainsaw": "Steel Chainsaw", + "item.techreborn.basic_drill": "Steel Drill", + "item.techreborn.basic_jackhammer": "Steel Jackhammer", + "item.techreborn.treetap": "Treetap", + "item.techreborn.wrench": "Wrench", + + "_comment17": "Items-Misc", + "item.techreborn.cell": "Empty Cell", + "item.techreborn.cell.fluid": "$fluid$ Cell", + "item.techreborn.frequency_transmitter": "Frequency Transmitter", + "item.techreborn.manual": "Tech Reborn Manual", + "item.techreborn.missingRecipe": "Missing Recipe Placeholder", + "item.techreborn.scrap_box": "Scrap Box", "item.techreborn.overclocker_upgrade": "Overclocker Upgrade", "item.techreborn.transformer_upgrade": "Transformer Upgrade", "item.techreborn.energy_storage_upgrade": "Energy Storage Upgrade", + + "item.techreborn.bronze_sword": "Bronze Sword", "item.techreborn.bronze_pickaxe": "Bronze Pickaxe", - "item.techreborn.bronze_spade": "Bronze Spade", + "item.techreborn.bronze_spade": "Bronze Shovel", "item.techreborn.bronze_axe": "Bronze Axe", "item.techreborn.bronze_hoe": "Bronze Hoe", "item.techreborn.bronze_helmet": "Bronze Helmet", "item.techreborn.bronze_chestplate": "Bronze Chestplate", "item.techreborn.bronze_leggings": "Bronze Leggings", "item.techreborn.bronze_boots": "Bronze Boots", + "item.techreborn.ruby_sword": "Ruby Sword", "item.techreborn.ruby_pickaxe": "Ruby Pickaxe", - "item.techreborn.ruby_spade": "Ruby Spade", + "item.techreborn.ruby_spade": "Ruby Shovel", "item.techreborn.ruby_axe": "Ruby Axe", "item.techreborn.ruby_hoe": "Ruby Hoe", "item.techreborn.ruby_helmet": "Ruby Helmet", "item.techreborn.ruby_chestplate": "Ruby Chestplate", "item.techreborn.ruby_leggings": "Ruby Leggings", "item.techreborn.ruby_boots": "Ruby Boots", + "item.techreborn.sapphire_sword": "Sapphire Sword", "item.techreborn.sapphire_pickaxe": "Sapphire Pickaxe", - "item.techreborn.sapphire_spade": "Sapphire Spade", + "item.techreborn.sapphire_spade": "Sapphire Shovel", "item.techreborn.sapphire_axe": "Sapphire Axe", "item.techreborn.sapphire_hoe": "Sapphire Hoe", "item.techreborn.sapphire_helmet": "Sapphire Helmet", "item.techreborn.sapphire_chestplate": "Sapphire Chestplate", "item.techreborn.sapphire_leggings": "Sapphire Leggings", "item.techreborn.sapphire_boots": "Sapphire Boots", + "item.techreborn.peridot_sword": "Peridot Sword", "item.techreborn.peridot_pickaxe": "Peridot Pickaxe", - "item.techreborn.peridot_spade": "Peridot Spade", + "item.techreborn.peridot_spade": "Peridot Shovel", "item.techreborn.peridot_axe": "Peridot Axe", "item.techreborn.peridot_hoe": "Peridot Hoe", "item.techreborn.peridot_helmet": "Peridot Helmet", "item.techreborn.peridot_chestplate": "Peridot Chestplate", "item.techreborn.peridot_leggings": "Peridot Leggings", "item.techreborn.peridot_boots": "Peridot Boots", - "item.techreborn.red_cell_battery": "Red Cell Battery", - "item.techreborn.lithium_ion_battery": "Lithium Ion Battery", - "item.techreborn.lithium_ion_batpack": "Lithium Ion Batpack", - "item.techreborn.energy_crystal": "Energy Crystal", - "item.techreborn.lapotron_crystal": "Lapotron Crystal", - "item.techreborn.lapotronic_orb": "Lapotronic Orb", - "item.techreborn.lapotronic_orbpack": "Lapotronic Orbpack", - "item.techreborn.treetap": "Treetap", - "item.techreborn.wrench": "Wrench", - "item.techreborn.basic_drill": "Basic Drill", - "item.techreborn.basic_chainsaw": "Basic Chainsaw", - "item.techreborn.basic_jackhammer": "Basic Jackhammer", - "item.techreborn.electric_treetap": "Electric Treetap", - "item.techreborn.advanced_drill": "Advanced Drill", - "item.techreborn.advanced_chainsaw": "Advanced Chainsaw", - "item.techreborn.advanced_jackhammer": "Advanced Jackhammer", - "item.techreborn.rock_cutter": "Rock Cutter", - "item.techreborn.industrial_drill": "Industrial Drill", - "item.techreborn.industrial_chainsaw": "Industrial Chainsaw", - "item.techreborn.industrial_jackhammer": "Industrial Jackhammer", - "item.techreborn.nanosaber": "Nanosaber", - "item.techreborn.omni_tool": "Omni Tool", - "item.techreborn.cloaking_device": "Cloaking Device", - "item.techreborn.frequency_transmitter": "Frequency Transmitter", - "item.techreborn.scrap_box": "Scrap Box", - "item.techreborn.manual": "Manual", - "item.techreborn.debug_tool": "Debug Tool", - "item.techreborn.cell": "Cell", - "block.techreborn.bauxite_ore": "Bauxite Ore", - "block.techreborn.cinnabar_ore": "Cinnabar Ore", - "block.techreborn.copper_ore": "Copper Ore", - "block.techreborn.galena_ore": "Galena Ore", - "block.techreborn.iridium_ore": "Iridium Ore", - "block.techreborn.lead_ore": "Lead Ore", - "block.techreborn.peridot_ore": "Peridot Ore", - "block.techreborn.pyrite_ore": "Pyrite Ore", - "block.techreborn.ruby_ore": "Ruby Ore", - "block.techreborn.sapphire_ore": "Sapphire Ore", - "block.techreborn.sheldonite_ore": "Sheldonite Ore", - "block.techreborn.silver_ore": "Silver Ore", - "block.techreborn.sodalite_ore": "Sodalite Ore", - "block.techreborn.sphalerite_ore": "Sphalerite Ore", - "block.techreborn.tin_ore": "Tin Ore", - "block.techreborn.tungsten_ore": "Tungsten Ore", - "block.techreborn.aluminum_storage_block": "Aluminum Storage Block", - "block.techreborn.brass_storage_block": "Brass Storage Block", - "block.techreborn.bronze_storage_block": "Bronze Storage Block", - "block.techreborn.chrome_storage_block": "Chrome Storage Block", - "block.techreborn.copper_storage_block": "Copper Storage Block", - "block.techreborn.electrum_storage_block": "Electrum Storage Block", - "block.techreborn.invar_storage_block": "Invar Storage Block", - "block.techreborn.iridium_storage_block": "Iridium Storage Block", - "block.techreborn.iridium_reinforced_stone_storage_block": "Iridium Reinforced Stone Storage Block", - "block.techreborn.iridium_reinforced_tungstensteel_storage_block": "Iridium Reinforced Tungstensteel Storage Block", - "block.techreborn.lead_storage_block": "Lead Storage Block", - "block.techreborn.nickel_storage_block": "Nickel Storage Block", - "block.techreborn.osmium_storage_block": "Osmium Storage Block", - "block.techreborn.peridot_storage_block": "Peridot Storage Block", - "block.techreborn.platinum_storage_block": "Platinum Storage Block", - "block.techreborn.red_garnet_storage_block": "Red Garnet Storage Block", - "block.techreborn.refined_iron_storage_block": "Refined Iron Storage Block", - "block.techreborn.ruby_storage_block": "Ruby Storage Block", - "block.techreborn.sapphire_storage_block": "Sapphire Storage Block", - "block.techreborn.silver_storage_block": "Silver Storage Block", - "block.techreborn.steel_storage_block": "Steel Storage Block", - "block.techreborn.tin_storage_block": "Tin Storage Block", - "block.techreborn.titanium_storage_block": "Titanium Storage Block", - "block.techreborn.tungsten_storage_block": "Tungsten Storage Block", - "block.techreborn.tungstensteel_storage_block": "Tungstensteel Storage Block", - "block.techreborn.yellow_garnet_storage_block": "Yellow Garnet Storage Block", - "block.techreborn.zinc_storage_block": "Zinc Storage Block", - "block.techreborn.basic_machine_frame": "Basic Machine Frame", - "block.techreborn.basic_machine_casing": "Basic Machine Casing", - "block.techreborn.advanced_machine_frame": "Advanced Machine Frame", - "block.techreborn.advanced_machine_casing": "Advanced Machine Casing", - "block.techreborn.industrial_machine_frame": "Industrial Machine Frame", - "block.techreborn.industrial_machine_casing": "Industrial Machine Casing", - "block.techreborn.computer_cube": "Computer Cube", - "block.techreborn.cable": "Cable", - "block.techreborn.nuke": "Nuke", - "block.techreborn.refined_iron_fence": "Refined Iron Fence", - "block.techreborn.reinforced_glass": "Reinforced Glass", - "block.techreborn.rubber_leaves": "Rubber Leaves", - "block.techreborn.rubber_log": "Rubber Log", - "block.techreborn.rubber_plank_slab": "Rubber Plank Slab", - "block.techreborn.rubber_plank_double_slab": "Rubber Plank Double Slab", - "block.techreborn.rubber_plank_stair": "Rubber Plank Stair", - "block.techreborn.rubber_planks": "Rubber Planks", - "block.techreborn.rubber_sapling": "Rubber Sapling", - "block.techreborn.alloy_smelter": "Alloy Smelter", - "block.techreborn.assembly_machine": "Assembly Machine", - "block.techreborn.auto_crafting_table": "Auto Crafting Table", - "block.techreborn.compressor": "Compressor", - "block.techreborn.chemical_reactor": "Chemical Reactor", - "block.techreborn.distillation_tower": "Distillation Tower", - "block.techreborn.electric_furnace": "Electric Furnace", - "block.techreborn.extractor": "Extractor", - "block.techreborn.fluid_replicator": "Fluid Replicator", - "block.techreborn.grinder": "Grinder", - "block.techreborn.implosion_compressor": "Implosion Compressor", - "block.techreborn.industrial_blast_furnace": "Industrial Blast Furnace", - "block.techreborn.industrial_centrifuge": "Industrial Centrifuge", - "block.techreborn.industrial_electrolyzer": "Industrial Electrolyzer", - "block.techreborn.industrial_grinder": "Industrial Grinder", - "block.techreborn.industrial_sawmill": "Industrial Sawmill", - "block.techreborn.iron_alloy_furnace": "Iron Alloy Furnace", - "block.techreborn.iron_furnace": "Iron Furnace", - "block.techreborn.matter_fabricator": "Matter Fabricator", - "block.techreborn.recycler": "Recycler", - "block.techreborn.rolling_machine": "Rolling Machine", - "block.techreborn.scrapboxinator": "Scrapboxinator", - "block.techreborn.vacuum_freezer": "Vacuum Freezer", - "block.techreborn.creative_solar_panel": "Creative Solar Panel", - "block.techreborn.diesel_generator": "Diesel Generator", - "block.techreborn.dragon_egg_syphon": "Dragon Egg Syphon", - "block.techreborn.fusion_coil": "Fusion Coil", - "block.techreborn.fusion_control_computer": "Fusion Control Computer", - "block.techreborn.gas_turbine": "Gas Turbine", - "block.techreborn.lightning_rod": "Lightning Rod", - "block.techreborn.plasma_generator": "Plasma Generator", - "block.techreborn.semi_fluid_generator": "Semi Fluid Generator", - "block.techreborn.solar_panel": "Solar Panel", - "block.techreborn.solid_fuel_generator": "Solid Fuel Generator", - "block.techreborn.thermal_generator": "Thermal Generator", - "block.techreborn.water_mill": "Water Mill", - "block.techreborn.wind_mill": "Wind Mill", - "block.techreborn.creative_quantum_chest": "Creative Quantum Chest", - "block.techreborn.creative_quantum_tank": "Creative Quantum Tank", - "block.techreborn.digital_chest": "Digital Chest", - "block.techreborn.quantum_chest": "Quantum Chest", - "block.techreborn.quantum_tank": "Quantum Tank", - "block.techreborn.adjustable_su": "Adjustable Su", - "block.techreborn.charge_o_mat": "Charge O Mat", - "block.techreborn.interdimensional_su": "Interdimensional Su", - "block.techreborn.lapotronic_su": "Lapotronic Su", - "block.techreborn.lsu_storage": "Lsu Storage", - "block.techreborn.low_voltage_su": "Low Voltage Su", - "block.techreborn.medium_voltage_su": "Medium Voltage Su", - "block.techreborn.high_voltage_su": "High Voltage Su", - "block.techreborn.lv_transformer": "Lv Transformer", - "block.techreborn.mv_transformer": "Mv Transformer", - "block.techreborn.hv_transformer": "Hv Transformer", - "block.techreborn.alarm": "Alarm", - "block.techreborn.chunk_loader": "Chunk Loader", - "block.techreborn.lamp_incandescent": "Lamp Incandescent", - "block.techreborn.lamp_led": "Lamp Led", - "block.techreborn.magic_energy_absorber": "Magic Energy Absorber", - "block.techreborn.magic_energy_converter": "Magic Energy Converter", - "block.techreborn.player_detector": "Player Detector", - "block.techreborn.techreborn_techreborn.berylium": "Berylium", - "block.techreborn.techreborn_techreborn.calcium": "Calcium", - "block.techreborn.techreborn_techreborn.calciumcarbonate": "Calciumcarbonate", - "block.techreborn.techreborn_techreborn.chlorite": "Chlorite", - "block.techreborn.techreborn_techreborn.deuterium": "Deuterium", - "block.techreborn.techreborn_techreborn.glyceryl": "Glyceryl", - "block.techreborn.techreborn_techreborn.helium": "Helium", - "block.techreborn.techreborn_techreborn.helium3": "Helium3", - "block.techreborn.techreborn_techreborn.heliumplasma": "Heliumplasma", - "block.techreborn.techreborn_techreborn.hydrogen": "Hydrogen", - "block.techreborn.techreborn_techreborn.lithium": "Lithium", - "block.techreborn.techreborn_techreborn.mercury": "Mercury", - "block.techreborn.techreborn_techreborn.methane": "Methane", - "block.techreborn.techreborn_techreborn.nitrocoalfuel": "Nitrocoalfuel", - "block.techreborn.techreborn_techreborn.nitrofuel": "Nitrofuel", - "block.techreborn.techreborn_techreborn.nitrogen": "Nitrogen", - "block.techreborn.techreborn_techreborn.nitrogendioxide": "Nitrogendioxide", - "block.techreborn.techreborn_techreborn.potassium": "Potassium", - "block.techreborn.techreborn_techreborn.silicon": "Silicon", - "block.techreborn.techreborn_techreborn.sodium": "Sodium", - "block.techreborn.techreborn_techreborn.sodiumpersulfate": "Sodiumpersulfate", - "block.techreborn.techreborn_techreborn.tritium": "Tritium", - "block.techreborn.techreborn_techreborn.wolframium": "Wolframium", - "block.techreborn.techreborn_techreborn.carbon": "Carbon", - "block.techreborn.techreborn_techreborn.carbonfiber": "Carbonfiber", - "block.techreborn.techreborn_techreborn.nitrocarbon": "Nitrocarbon", - "block.techreborn.techreborn_techreborn.sulfur": "Sulfur", - "block.techreborn.techreborn_techreborn.sodiumsulfide": "Sodiumsulfide", - "block.techreborn.techreborn_techreborn.diesel": "Diesel", - "block.techreborn.techreborn_techreborn.nitrodiesel": "Nitrodiesel", - "block.techreborn.techreborn_techreborn.oil": "Oil", - "block.techreborn.techreborn_techreborn.sulfuricacid": "Sulfuricacid", - "block.techreborn.techreborn_techreborn.compressedair": "Compressedair", - "block.techreborn.techreborn_techreborn.electrolyzedwater": "Electrolyzedwater" + + "_comment18": "Message", + "techreborn.message.missingmultiblock": "Incomplete Multiblock", + "techreborn.message.setTo": "Set to", + "techreborn.message.in": "in", + "techreborn.message.noCoordsSet": "No Coordinates Set", + "techreborn.message.coordsHaveBeen": "Coordinates have been", + "techreborn.message.cleared": "Cleared", + "techreborn.message.detects": "Detects", + "techreborn.message.alarm": "Switched to:", + "techreborn.message.allPlayers": "All Players", + "techreborn.message.onlyOtherPlayers": "Only Other Players", + "techreborn.message.onlyYou": "Only You", + "techreborn.message.nanosaberActive": "Active", + "techreborn.message.nanosaberActivate": "Activate", + "techreborn.message.nanosaberDeactivating": "Deactivating", + "techreborn.message.nanosaberInactive": "Inactive", + "techreborn.message.nanosaberEnergyErrorTo": "Not Enough Energy to", + "techreborn.message.nanosaberEnergyError": "Not Enough Energy:", + + "keys.techreborn.category": "TechReborn Category", + "keys.techreborn.config": "Config", + + "_comment19": "JEI Integration", + "techreborn.jei.recipe.start.cost": "Start: %s", + "techreborn.jei.recipe.running.cost": "%s/t: %s", + "techreborn.jei.recipe.processing.time.1": "Time: %s ticks", + "techreborn.jei.recipe.processing.time.2": "(%s sec)", + + "techreborn.jei.desc.rubberSap": "In order to get sap, you need to find a rubber tree or obtain a rubber tree sapling and proceed to grow it. Once you have obtained a rubber tree, search around for little yellowish spots on the tree. If you don't see any, just wait a bit and eventually these yellow \"sap\" spots. To harvest the sap, use a treetap and use it on the log.", + "techreborn.jei.desc.scrapBox": "Scrapboxes can be opened by either a simple use in hand, or by dispensers. That's right, just throw your scrapboxes into dispensers and give them a redstone signal, and boom! Random item!", + "techreborn.jei.desc.scrapBoxNoDispenser": "Scrapboxes can be opened by a simple use in hand!", + + "techreborn.jei.category.alloy.furnace": "Alloy Furnace", + "techreborn.jei.category.scrapbox": "Opening Scrapboxes", + "techreborn.jei.category.generator.gas": "Gas Generator", + "techreborn.jei.category.generator.semifluid": "Semifluid Generator", + "techreborn.jei.category.generator.diesel": "Diesel Generator", + "techreborn.jei.category.generator.thermal": "Thermal Generator", + "techreborn.jei.category.generator.plasma": "Plasma Generator", + + "_comment20": "Death Messages", + "death.attack.shock": "%s was electrocuted", + + "_comment21": "Entities", + "entity.nuke": "Nuke", + + "_comment22": "Tooltips", + "techreborn.tooltip.transferRate": "Transfer Rate", + "techreborn.tooltip.tier": "Tier", + "techreborn.tooltip.wip": "WIP Coming Soon", + "techreborn.tooltip.inventory": "Inventory", + "techreborn.tooltip.upgrades": "Upgrades", + "techreborn.tooltip.alarm": "Shift rightclick to change sound", + + "_comment23": "ManualUI", + "techreborn.manual.wiki": "Online wiki", + "techreborn.manual.discord": "Our discord", + "techreborn.manual.wikibtn": "Open", + "techreborn.manual.discordbtn": "Join", + + "_comment24": "Advancements", + "advancements.techreborn.root.desc": "Now that you have acquired Tech Reborn ore, you might find a tree tap usefull.", + "advancements.techreborn.treetap": "TreeTap", + "advancements.techreborn.treetap.desc": "Now that you have crafted a tree tap you will want to use it on a sap spot on a rubber tree.", + "advancements.techreborn.sap": "Rubber Sap", + "advancements.techreborn.sap.desc": "Well done, you now have rubber sap. You will want to smelt it in a furnace to create rubber next." } \ No newline at end of file diff --git a/src/main/resources/data/techreborn/recipes/crafting_shaped/lithium_ion_batpack.json b/src/main/resources/data/techreborn/recipes/crafting_shaped/lithium_ion_batpack.json index 0e5a37e04..664012eb0 100644 --- a/src/main/resources/data/techreborn/recipes/crafting_shaped/lithium_ion_batpack.json +++ b/src/main/resources/data/techreborn/recipes/crafting_shaped/lithium_ion_batpack.json @@ -10,7 +10,7 @@ "item": "techreborn:advanced_circuit" }, "P": { - "item": "techreborn:aluminium_plate" + "item": "techreborn:aluminum_plate" }, "B": { "item": "techreborn:lithium_ion_battery" diff --git a/src/main/resources/data/techreborn/recipes/crafting_shaped/lithium_ion_battery.json b/src/main/resources/data/techreborn/recipes/crafting_shaped/lithium_ion_battery.json index fde3c716f..8e1aa1a26 100644 --- a/src/main/resources/data/techreborn/recipes/crafting_shaped/lithium_ion_battery.json +++ b/src/main/resources/data/techreborn/recipes/crafting_shaped/lithium_ion_battery.json @@ -10,7 +10,7 @@ "item": "techreborn:insulated_gold_cable" }, "P": { - "item": "techreborn:aluminium_plate" + "item": "techreborn:aluminum_plate" }, "F": { "item": "techreborn:cell" diff --git a/src/main/resources/data/techreborn/recipes/crafting_shaped/nanosaber.json b/src/main/resources/data/techreborn/recipes/crafting_shaped/nanosaber.json index 3abbca887..dcd7d8383 100644 --- a/src/main/resources/data/techreborn/recipes/crafting_shaped/nanosaber.json +++ b/src/main/resources/data/techreborn/recipes/crafting_shaped/nanosaber.json @@ -1,8 +1,8 @@ { "type": "minecraft:crafting_shaped", "pattern": [ - "DC", - "DC", + "DC ", + "DC ", "GLG" ], "key": { diff --git a/src/main/resources/data/techreborn/recipes/crafting_shaped/rock_cutter.json b/src/main/resources/data/techreborn/recipes/crafting_shaped/rock_cutter.json index 33e134d6e..41d52c8f8 100644 --- a/src/main/resources/data/techreborn/recipes/crafting_shaped/rock_cutter.json +++ b/src/main/resources/data/techreborn/recipes/crafting_shaped/rock_cutter.json @@ -1,8 +1,8 @@ { "type": "minecraft:crafting_shaped", "pattern": [ - "DT", - "DT", + "DT ", + "DT ", "DCB" ], "key": {