diff --git a/src/main/java/techreborn/items/ItemDusts.java b/src/main/java/techreborn/items/ItemDusts.java index f4554b9ce..07bb81722 100644 --- a/src/main/java/techreborn/items/ItemDusts.java +++ b/src/main/java/techreborn/items/ItemDusts.java @@ -4,6 +4,7 @@ import net.minecraft.creativetab.CreativeTabs; import net.minecraft.init.Items; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; +import net.minecraft.util.NonNullList; import techreborn.client.TechRebornCreativeTabMisc; import techreborn.init.ModItems; import techreborn.lib.ModInfo; @@ -65,7 +66,8 @@ public class ItemDusts extends ItemTextureBase { } // Adds Dusts SubItems To Creative Tab - public void getSubItems(Item item, CreativeTabs creativeTabs, List list) { + @Override + public void getSubItems(Item item, CreativeTabs creativeTabs, NonNullList list) { for (int meta = 0; meta < types.length; ++meta) { if (!types[meta].equals(ModItems.META_PLACEHOLDER)) { list.add(new ItemStack(item, 1, meta)); diff --git a/src/main/java/techreborn/items/ItemDustsSmall.java b/src/main/java/techreborn/items/ItemDustsSmall.java index f48f0d67d..945d9f6d8 100644 --- a/src/main/java/techreborn/items/ItemDustsSmall.java +++ b/src/main/java/techreborn/items/ItemDustsSmall.java @@ -3,6 +3,7 @@ package techreborn.items; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; +import net.minecraft.util.NonNullList; import reborncore.common.util.StringUtils; import techreborn.client.TechRebornCreativeTabMisc; import techreborn.init.ModItems; @@ -56,7 +57,7 @@ public class ItemDustsSmall extends ItemTextureBase { } // Adds Dusts SubItems To Creative Tab - public void getSubItems(Item item, CreativeTabs creativeTabs, List list) { + public void getSubItems(Item item, CreativeTabs creativeTabs, NonNullList list) { for (int meta = 0; meta < types.length; ++meta) { if (!types[meta].equals(ModItems.META_PLACEHOLDER)) { list.add(new ItemStack(item, 1, meta)); diff --git a/src/main/java/techreborn/items/ItemGems.java b/src/main/java/techreborn/items/ItemGems.java index 629a4af40..390ac9591 100644 --- a/src/main/java/techreborn/items/ItemGems.java +++ b/src/main/java/techreborn/items/ItemGems.java @@ -3,6 +3,7 @@ package techreborn.items; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; +import net.minecraft.util.NonNullList; import techreborn.client.TechRebornCreativeTabMisc; import techreborn.init.ModItems; import techreborn.lib.ModInfo; @@ -45,7 +46,7 @@ public class ItemGems extends ItemTextureBase { } // Adds Dusts SubItems To Creative Tab - public void getSubItems(Item item, CreativeTabs creativeTabs, List list) { + public void getSubItems(Item item, CreativeTabs creativeTabs, NonNullList list) { for (int meta = 0; meta < types.length; ++meta) { list.add(new ItemStack(item, 1, meta)); } diff --git a/src/main/java/techreborn/items/ItemIngots.java b/src/main/java/techreborn/items/ItemIngots.java index 5fa7efb46..a4ca46a3e 100644 --- a/src/main/java/techreborn/items/ItemIngots.java +++ b/src/main/java/techreborn/items/ItemIngots.java @@ -3,6 +3,7 @@ package techreborn.items; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; +import net.minecraft.util.NonNullList; import techreborn.client.TechRebornCreativeTabMisc; import techreborn.init.ModItems; import techreborn.lib.ModInfo; @@ -47,7 +48,7 @@ public class ItemIngots extends ItemTextureBase { } // Adds Dusts SubItems To Creative Tab - public void getSubItems(Item item, CreativeTabs creativeTabs, List list) { + public void getSubItems(Item item, CreativeTabs creativeTabs, NonNullList list) { for (int meta = 0; meta < types.length; ++meta) { if (!types[meta].equals(ModItems.META_PLACEHOLDER)) { list.add(new ItemStack(item, 1, meta)); diff --git a/src/main/java/techreborn/items/ItemParts.java b/src/main/java/techreborn/items/ItemParts.java index a84ecdfab..9940af817 100644 --- a/src/main/java/techreborn/items/ItemParts.java +++ b/src/main/java/techreborn/items/ItemParts.java @@ -4,6 +4,7 @@ import net.minecraft.creativetab.CreativeTabs; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; +import net.minecraft.util.NonNullList; import net.minecraft.world.World; import techreborn.Core; import techreborn.client.GuiHandler; @@ -55,7 +56,7 @@ public class ItemParts extends ItemTextureBase { } // Adds Dusts SubItems To Creative Tab - public void getSubItems(Item item, CreativeTabs creativeTabs, List list) { + public void getSubItems(Item item, CreativeTabs creativeTabs, NonNullList list) { for (int meta = 0; meta < types.length; ++meta) { if (!types[meta].equals(ModItems.META_PLACEHOLDER)) { list.add(new ItemStack(item, 1, meta)); diff --git a/src/main/java/techreborn/items/ItemPlates.java b/src/main/java/techreborn/items/ItemPlates.java index f9fcb17a3..7578c163a 100644 --- a/src/main/java/techreborn/items/ItemPlates.java +++ b/src/main/java/techreborn/items/ItemPlates.java @@ -3,6 +3,7 @@ package techreborn.items; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.item.Item; import net.minecraft.item.ItemStack; +import net.minecraft.util.NonNullList; import net.minecraftforge.oredict.OreDictionary; import techreborn.client.TechRebornCreativeTabMisc; import techreborn.init.ModItems; @@ -50,7 +51,7 @@ public class ItemPlates extends ItemTextureBase { } // Adds Dusts SubItems To Creative Tab - public void getSubItems(Item item, CreativeTabs creativeTabs, List list) { + public void getSubItems(Item item, CreativeTabs creativeTabs, NonNullList list) { for (int meta = 0; meta < types.length; ++meta) { list.add(new ItemStack(item, 1, meta)); } diff --git a/src/main/java/techreborn/items/tools/ItemNanosaber.java b/src/main/java/techreborn/items/tools/ItemNanosaber.java index 4abf8e228..02bb60adf 100644 --- a/src/main/java/techreborn/items/tools/ItemNanosaber.java +++ b/src/main/java/techreborn/items/tools/ItemNanosaber.java @@ -14,10 +14,7 @@ import net.minecraft.item.Item; import net.minecraft.item.ItemStack; import net.minecraft.item.ItemSword; import net.minecraft.nbt.NBTTagCompound; -import net.minecraft.util.ActionResult; -import net.minecraft.util.EnumActionResult; -import net.minecraft.util.EnumHand; -import net.minecraft.util.ResourceLocation; +import net.minecraft.util.*; import net.minecraft.util.text.TextComponentString; import net.minecraft.util.text.TextFormatting; import net.minecraft.util.text.translation.I18n; @@ -52,7 +49,7 @@ public class ItemNanosaber extends ItemSword implements IEnergyItemInfo { World worldIn, @Nullable EntityLivingBase entityIn) { - if (stack != ItemStack.EMPTY && stack.getTagCompound().getBoolean("isActive")) { + if (stack != ItemStack.EMPTY && stack.hasTagCompound() && stack.getTagCompound().hasKey("isActive") && stack.getTagCompound().getBoolean("isActive")) { return 1.0F; } return 0.0F; @@ -91,7 +88,7 @@ public class ItemNanosaber extends ItemSword implements IEnergyItemInfo { @SuppressWarnings({ "rawtypes", "unchecked" }) @SideOnly(Side.CLIENT) public void getSubItems(Item item, - CreativeTabs par2CreativeTabs, List itemList) { + CreativeTabs par2CreativeTabs, NonNullList itemList) { ItemStack inactiveUncharged = new ItemStack(ModItems.nanosaber); inactiveUncharged.setTagCompound(new NBTTagCompound()); inactiveUncharged.getTagCompound().setBoolean("isActive", false); diff --git a/src/main/resources/assets/techreborn/lang/en_US.lang b/src/main/resources/assets/techreborn/lang/en_US.lang deleted file mode 100644 index 846e0062f..000000000 --- a/src/main/resources/assets/techreborn/lang/en_US.lang +++ /dev/null @@ -1,1034 +0,0 @@ - -item.missingRecipe.name=Missing Recipe Placeholder - -itemGroup.techreborn=Tech Reborn - -#machines -tile.techreborn.gasTurbine.name=Gas Turbine -tile.techreborn.industrialBlock.name=Industrial -tile.techreborn.thermalGenerator.name=Thermal Generator -tile.techreborn.quantumTank.name=Quantum Tank -tile.techreborn.quantumChest.name=Quantum Chest -tile.techreborn.digitalChest.name=Digital Chest -tile.techreborn.centrifuge.name=Industrial Centrifuge -tile.techreborn.rollingmachine.name=Rolling Machine -tile.techreborn.machineCasing.standard.name=Standard Machine Casing -tile.techreborn.machineCasing.reinforced.name=Reinforced Machine Casing -tile.techreborn.machineCasing.advanced.name=Advanced Machine Casing -tile.techreborn.blastfurnace.name=Industrial Blast Furnace -tile.techreborn.alloysmelter.name=Electric Alloy Furnace -tile.techreborn.matterfabricator.name=Matter Fabricator -tile.techreborn.implosioncompressor.name=Implosion Compressor -tile.techreborn.industrialgrinder.name=Industrial Grinder -tile.techreborn.chunkloader.name=Industrial Chunkloader -tile.techreborn.magicenergyconverter.name=Magic Energy Converter -tile.techreborn.dieselgenerator.name=Diesel Generator -tile.techreborn.industrialelectrolyzer.name=Industrial Electrolyzer -tile.techreborn.magicenergyabsorber.name=Magic Energy Absorber -tile.techreborn.assemblingmachine.name=Assembling Machine -tile.techreborn.semifluidgenerator.name=Semifluid Generator -tile.techreborn.alloyfurnace.name=Iron Alloy Furnace -tile.techreborn.chemicalreactor.name=Chemical Reactor -tile.techreborn.dragoneggsiphoner.name=Dragon Egg Energy Siphon -tile.techreborn.idsu.name=IDSU -tile.techreborn.aesu.name=AESU -tile.techreborn.lesu.name=LESU -tile.techreborn.lesustorage.name=LESU Block -tile.techreborn.distillationtower.name=Distillation Tower -tile.techreborn.electriccraftingtable.name=Electric Autocrafting Table -tile.techreborn.vacuumfreezer.name=Vacuum Freezer -tile.techreborn.plasmagenerator.name=Plasma Generator -tile.techreborn.fusioncontrolcomputer.name=Fusion Reactor -tile.techreborn.computercube.name=TechReborn Computer Cube -tile.techreborn.fusioncoil.name=Fusion Coil -tile.techreborn.lightningrod.name=Lightning Rod -tile.techreborn.assemblinmachine.name=Assembling Machine -tile.techreborn.heatgenerator.name=Heat Generator -tile.techreborn.machineFrame.aluminum.name=Aluminium Machine Hull -tile.techreborn.machineFrame.iron.name=Iron Machine Hull -tile.techreborn.machineFrame.bronze.name=Bronze Machine Hull -tile.techreborn.machineFrame.brass.name=Brass Machine Hull -tile.techreborn.machineFrame.steel.name=Steel Machine Hull -tile.techreborn.machineFrame.titanium.name=Titanium Machine Hull -tile.techreborn.industrialsawmill.name=Saw Mill -tile.techreborn.chargebench.name=Charge Bench -tile.techreborn.playerDetector.all.name=Player Detector (All) -tile.techreborn.playerDetector.others.name=Player Detector (Others) -tile.techreborn.playerDetector.you.name=Player Detector (You) -tile.techreborn.generator.name=Generator -tile.techreborn.extractor.name=Extractor -tile.techreborn.grinder.name=Grinder -tile.techreborn.compressor.name=Compressor -tile.techreborn.electricfurnace.name=Electric Furnace -tile.techreborn.machineFrame.highlyAdvancedMachine.name=Highly Advanced Machine Block -tile.techreborn.machineFrame.advancedMachine.name=Advanced Machine Block -tile.techreborn.machineFrame.machine.name=Machine Block -tile.techreborn.ore2.copper.name=Copper Ore -tile.techreborn.ore2.tin.name=Tin Ore -tile.techreborn.solarpanel.name=Solar Panel -tile.techreborn.watermill.name=Water Mill -tile.techreborn.windmill.name=Wind Mill -tile.techreborn.ironfurnace.name=Iron Furnace -tile.techreborn.recycler.name=Recycler -tile.techreborn.scrapboxinator.name=Scrapbox-inator -tile.techreborn.batbox.name=Battery Box -tile.techreborn.mfe.name=MFE -tile.techreborn.mfsu.name=MFSU -tile.techreborn.reinforcedglass.name=Reinforced Glass -tile.techreborn.nuke.name=Nuke -tile.techreborn.lvtransformer.name=LV Transformer -tile.techreborn.mvtransformer.name=MV Transformer -tile.techreborn.hvtransformer.name=HV Transformer -tile.techreborn.evtransformer.name=EV Transformer - - -#Blocks -tile.techreborn.rubberlog.name=Rubber Wood -tile.techreborn.rubberplank.name=Rubber Wood Planks -tile.techreborn.rubberleaves.name=Rubber Leaves -tile.techreborn.rubbersapling.name=Rubber Sapling - -tile.techreborn.ironfence.name=Iron Fence - -#Ores -tile.techreborn.ore.galena.name=Galena Ore -tile.techreborn.ore.iridium.name=Iridium Ore -tile.techreborn.ore.ruby.name=Ruby Ore -tile.techreborn.ore.sapphire.name=Sapphire Ore -tile.techreborn.ore.bauxite.name=Bauxite Ore -tile.techreborn.ore.pyrite.name=Pyrite Ore -tile.techreborn.ore.cinnabar.name=Cinnabar Ore -tile.techreborn.ore.sphalerite.name=Sphalerite Ore -tile.techreborn.ore.tungsten.name=Tungsten Ore -tile.techreborn.ore.sheldonite.name=Sheldonite Ore -tile.techreborn.ore.peridot.name=Peridot Ore -tile.techreborn.ore.sodalite.name=Sodalite Ore -tile.techreborn.ore.tetrahedrite.name=Tetrahedrite Ore -tile.techreborn.ore.cassiterite.name=Cassiterite Ore -tile.techreborn.ore.lead.name=Lead Ore -tile.techreborn.ore.silver.name=Silver Ore - -#Storage -tile.techreborn.storage.silver.name=Block of Silver -tile.techreborn.storage.aluminum.name=Block of Aluminium -tile.techreborn.storage.titanium.name=Block of Titanium -tile.techreborn.storage.chrome.name=Block of Chrome -tile.techreborn.storage.steel.name=Block of Steel -tile.techreborn.storage.brass.name=Block of Brass -tile.techreborn.storage.lead.name=Block of Lead -tile.techreborn.storage.electrum.name=Block of Electrum -tile.techreborn.storage.zinc.name=Block of Zinc -tile.techreborn.storage.platinum.name=Block of Platinum -tile.techreborn.storage.tungsten.name=Block of Tungsten -tile.techreborn.storage.nickel.name=Block of Nickel -tile.techreborn.storage.invar.name=Block of Invar -tile.techreborn.storage.osmium.name=Block of Osmium -tile.techreborn.storage.iridium.name=Block of Iridium -tile.techreborn.storage2.tungstensteel.name=Block of Tungstensteel -tile.techreborn.storage2.lodestone.name=Block of Lodestone -tile.techreborn.storage2.tellurium.name=Block of Tellurium -tile.techreborn.storage2.iridium_reinforced_tungstensteel.name=Iridium Reinforced Tungstensteel Block -tile.techreborn.storage2.iridium_reinforced_stone.name=Iridium Reinforced Stone -tile.techreborn.storage2.ruby.name=Block of Ruby -tile.techreborn.storage2.sapphire.name=Block of Sapphire -tile.techreborn.storage2.peridot.name=Block of Peridot -tile.techreborn.storage2.yellowGarnet.name=Block of Yellow Garnet -tile.techreborn.storage2.redGarnet.name=Block of Red Garnet -tile.techreborn.storage2.refinedIron.name=Block of Refined Iron -tile.techreborn.storage2.copper.name=Block of Copper -tile.techreborn.storage2.tin.name=Block of Tin -tile.techreborn.farm.name=Farm - - -#Fluids -tile.techreborn.berylium.name=Beryllium Source -tile.techreborn.calcium.name=Calcium Source -tile.techreborn.calciumcarbonate.name=Calciumcarbonate Source -tile.techreborn.chlorite.name=Chlorite Source -tile.techreborn.deuterium.name=Deuterium Source -tile.techreborn.glyceryl.name=Glyceryl Source -tile.techreborn.helium.name=Helium Source -tile.techreborn.helium3.name=Helium3 Source -tile.techreborn.heliumplasma.name=Heliumplasma Source -tile.techreborn.hydrogen.name=Hydrogen Source -tile.techreborn.lithium.name=Lithium Source -tile.techreborn.mercury.name=Mercury Source -tile.techreborn.methane.name=Methane Source -tile.techreborn.nitrocoalfuel.name=Nitrocoalfuel Source -tile.techreborn.nitrofuel.name=Nitrofuel Source -tile.techreborn.nitrogen.name=Nitrogen Source -tile.techreborn.nitrogendioxide.name=Nitrogendioxide Source -tile.techreborn.potassium.name=Potassium Source -tile.techreborn.silicon.name=Silicon Source -tile.techreborn.sodium.name=Sodium Source -tile.techreborn.sodiumpersulfate.name=Sodiumpersulfate Source -tile.techreborn.tritium.name=Tritium Source -tile.techreborn.wolframium.name=Wolframium Source -tile.techreborn.supercondensator.name=Supercondensator -fluid.fluid.fluidberylium=Beryllium -fluid.fluid.fluidcalcium=Calcium -fluid.fluid.fluidcalciumcarbonate=Calciumcarbonate -fluid.fluid.fluidchlorite=Chlorite -fluid.fluid.fluiddeuterium=Deuterium -fluid.fluid.fluidglyceryl=Glyceryl -fluid.fluid.fluidhelium=Helium -fluid.fluid.fluidhelium3=Helium3 -fluid.fluid.fluidheliumplasma=Heliumplasma -fluid.fluid.fluidhydrogen=Hydrogen -fluid.fluid.fluidlithium=Lithium -fluid.fluid.fluidmercury=Mercury -fluid.fluid.fluidmethane=Methane -fluid.fluid.fluidnitrocoalfuel=Nitrocoalfuel -fluid.fluid.fluidnitrofuel=Nitrofuel -fluid.fluid.fluidnitrogen=Nitrogen -fluid.fluid.fluidnitrogendioxide=Nitrogendioxide -fluid.fluid.fluidpotassium=Potassium -fluid.fluid.fluidsilicon=Silicon -fluid.fluid.fluidsodium=Sodium -fluid.fluid.fluidsodiumpersulfate=Sodiumpersulfate -fluid.fluid.fluidtritium=Tritium -fluid.fluid.fluidwolframium=Wolframium -fluid.tile.techreborn.glyceryl=Glyceryl -fluid.tile.techreborn.berylium=Beryllium -fluid.tile.techreborn.chlorite=Chlorite -fluid.tile.techreborn.helium3=Helium3 -fluid.tile.techreborn.deuterium=Deuterium -fluid.tile.techreborn.helium=Helium -fluid.tile.techreborn.calciumcarbonate=Calcium Carbonate -fluid.titanium.name=Molten Titanium -fluid.chrome.name=Molten Chrome -fluid.platinum.name=Molten Platinum -fluid.iridium.name=Molten Iridium -fluid.invar.name=Molten Invar -fluid.tungsten.name=Molten Tungsten - -#Dusts -item.techreborn.dust.almandine.name=Almandine Dust -item.techreborn.dust.aluminumBrass.name=Aluminium Brass Dust -item.techreborn.dust.aluminum.name=Aluminium Dust -item.techreborn.dust.alumite.name=Alumite Dust -item.techreborn.dust.andradite.name=Andradite Dust -item.techreborn.dust.antimony.name=Antimony Dust -item.techreborn.dust.ardite.name=Ardite Dust -item.techreborn.dust.ashes.name=Ashes -item.techreborn.dust.basalt.name=Basalt Dust -item.techreborn.dust.bauxite.name=Bauxite Dust -item.techreborn.dust.biotite.name=Biotite Dust -item.techreborn.dust.brass.name=Brass Dust -item.techreborn.dust.bronze.name=Bronze Dust -item.techreborn.dust.cadmium.name=Cadmium Dust -item.techreborn.dust.calcite.name=Calcite Dust -item.techreborn.dust.charcoal.name=Charcoal Dust -item.techreborn.dust.chrome.name=Chrome Dust -item.techreborn.dust.cinnabar.name=Cinnabar Dust -item.techreborn.dust.clay.name=Clay Dust -item.techreborn.dust.coal.name=Coal Dust -item.techreborn.dust.cobalt.name=Cobalt Dust -item.techreborn.dust.copper.name=Copper Dust -item.techreborn.dust.cupronickel.name=Cupronickel Dust -item.techreborn.dust.darkAshes.name=Dark Ashes -item.techreborn.dust.darkIron.name=Dark Iron Dust -item.techreborn.dust.diamond.name=Diamond Dust -item.techreborn.dust.electrum.name=Electrum Dust -item.techreborn.dust.emerald.name=Emerald Dust -item.techreborn.dust.enderEye.name=Ender Eye Dust -item.techreborn.dust.enderPearl.name=Ender Pearl Dust -item.techreborn.dust.endstone.name=Endstone Dust -item.techreborn.dust.flint.name=Flint Dust -item.techreborn.dust.gold.name=Gold Dust -item.techreborn.dust.graphite.name=Graphite Dust -item.techreborn.dust.grossular.name=Grossular Dust -item.techreborn.dust.indium.name=Indium Dust -item.techreborn.dust.invar.name=Invar Dust -item.techreborn.dust.iridium.name=Iridium Dust -item.techreborn.dust.iron.name=Iron Dust -item.techreborn.dust.lazurite.name=Lazurite Dust -item.techreborn.dust.lead.name=Lead Dust -item.techreborn.dust.magnesium.name=Magnesium Dust -item.techreborn.dust.manganese.name=Manganese Dust -item.techreborn.dust.marble.name=Marble Dust -item.techreborn.dust.netherrack.name=Netherrack Dust -item.techreborn.dust.nickel.name=Nickel Dust -item.techreborn.dust.obsidian.name=Obsidian Dust -item.techreborn.dust.osmium.name=Osmium Dust -item.techreborn.dust.peridot.name=Peridot Dust -item.techreborn.dust.phosphorous.name=Phosphorous Dust -item.techreborn.dust.platinum.name=Platinum Dust -item.techreborn.dust.potassiumFeldspar.name=Potassium Feldspar Dust -item.techreborn.dust.pyrite.name=Pyrite Dust -item.techreborn.dust.pyrope.name=Pyrope Dust -item.techreborn.dust.redGarnet.name=Red Garnet Dust -item.techreborn.dust.ruby.name=Ruby Dust -item.techreborn.dust.saltpeter.name=Saltpeter Dust -item.techreborn.dust.sapphire.name=Sapphire Dust -item.techreborn.dust.silicon.name=Silicon Dust -item.techreborn.dust.silver.name=Silver Dust -item.techreborn.dust.sodalite.name=Sodalite Dust -item.techreborn.dust.spessartine.name=Spessartine Dust -item.techreborn.dust.sphalerite.name=Sphalerite Dust -item.techreborn.dust.steel.name=Steel Dust -item.techreborn.dust.sulfur.name=Sulfur Dust -item.techreborn.dust.tellurium.name=Tellurium Dust -item.techreborn.dust.teslatite.name=Teslatite Dust -item.techreborn.dust.tetrahedrite.name=Tetrahedrite Dust -item.techreborn.dust.tin.name=Tin Dust -item.techreborn.dust.titanium.name=Titanium Dust -item.techreborn.dust.tungsten.name=Tungsten Dust -item.techreborn.dust.uvarovite.name=Uvarovite Dust -item.techreborn.dust.vinteum.name=Vinteum Dust -item.techreborn.dust.voidstone.name=Voidstone Dust -item.techreborn.dust.yellowGarnet.name=Yellow Garnet Dust -item.techreborn.dust.zinc.name=Zinc Dust -item.techreborn.dust.galena.name=Galena Dust -item.techreborn.dust.sawDust.name=Saw Dust -item.techreborn.dust.olivine.name=Olivine Dust -item.techreborn.dust.andesite.name=Andesite Dust -item.techreborn.dust.diorite.name=Diorite Dust -item.techreborn.dust.granite.name=Granite Dust - -item.techreborn.ingot.refinedIron.name=Refined Iron Ingot -item.techreborn.wrench.name=Wrench -item.techreborn.cable.COPPER.name=Copper Cable -item.techreborn.cable.TIN.name=Tin Cable -item.techreborn.cable.GOLD.name=Gold Cable -item.techreborn.cable.HV.name=HV Cable -item.techreborn.cable.GLASSFIBER.name=Glass Fiber Cable -item.techreborn.cable.ICOPPER.name=Insulated Copper Cable -item.techreborn.cable.IGOLD.name=Insulated Gold Cable -item.techreborn.cable.IHV.name=Insulated HV Cable -item.techreborn.scrapbox.name=Scrap Box -item.techreborn.part.carbonmesh.name=Carbon Mesh -item.techreborn.part.carbonfiber.name=Carbon Fiber - -#Small Dusts -item.techreborn.dustsmall.almandine.name=Small Pile of Almandine Dust -item.techreborn.dustsmall.aluminum.name=Small Pile of Aluminium Dust -item.techreborn.dustsmall.andradite.name=Small Pile of Andradite Dust -item.techreborn.dustsmall.ashes.name=Small Pile of Ashes -item.techreborn.dustsmall.basalt.name=Small Pile of Basalt Dust -item.techreborn.dustsmall.bauxite.name=Small Pile of Bauxite Dust -item.techreborn.dustsmall.brass.name=Small Pile of Brass Dust -item.techreborn.dustsmall.bronze.name=Small Pile of Bronze Dust -item.techreborn.dustsmall.calcite.name=Small Pile of Calcite Dust -item.techreborn.dustsmall.charcoal.name=Small Pile of Charcoal Dust -item.techreborn.dustsmall.chrome.name=Small Pile of Chrome Dust -item.techreborn.dustsmall.cinnabar.name=Small Pile of Cinnabar Dust -item.techreborn.dustsmall.clay.name=Small Pile of Clay Dust -item.techreborn.dustsmall.coal.name=Small Pile of Coal Dust -item.techreborn.dustsmall.copper.name=Small Pile of Copper Dust -item.techreborn.dustsmall.darkAshes.name=Small Pile of Dark Ashes -item.techreborn.dustsmall.diamond.name=Small Pile of Diamond Dust -item.techreborn.dustsmall.electrum.name=Small Pile of Electrum Dust -item.techreborn.dustsmall.emerald.name=Small Pile of Emerald Dust -item.techreborn.dustsmall.enderEye.name=Small Pile of Ender Eye Dust -item.techreborn.dustsmall.enderPearl.name=Small Pile of Ender Pearl Dust -item.techreborn.dustsmall.endstone.name=Small Pile of Endstone Dust -item.techreborn.dustsmall.flint.name=Small Pile of Flint Dust -item.techreborn.dustsmall.galena.name=Small Pile of Galena Dust -item.techreborn.dustsmall.glowstone.name=Small Pile of Glowstone Dust -item.techreborn.dustsmall.gold.name=Small Pile of Gold Dust -item.techreborn.dustsmall.grossular.name=Small Pile of Grossular Dust -item.techreborn.dustsmall.invar.name=Small Pile of Invar Dust -item.techreborn.dustsmall.iron.name=Small Pile of Iron Dust -item.techreborn.dustsmall.lazurite.name=Small Pile of Lazurite Dust -item.techreborn.dustsmall.lead.name=Small Pile of Lead Dust -item.techreborn.dustsmall.magnesium.name=Small Pile of Magnesium Dust -item.techreborn.dustsmall.manganese.name=Small Pile of Manganese Dust -item.techreborn.dustsmall.marble.name=Small Pile of Marble Dust -item.techreborn.dustsmall.netherrack.name=Small Pile of Netherrack Dust -item.techreborn.dustsmall.nickel.name=Small Pile of Nickel Dust -item.techreborn.dustsmall.obsidian.name=Small Pile of Obsidian Dust -item.techreborn.dustsmall.peridot.name=Small Pile of Peridot -item.techreborn.dustsmall.phosphorous.name=Small Pile of Phosphorous Dust -item.techreborn.dustsmall.platinum.name=Small Pile of Platinum Dust -item.techreborn.dustsmall.pyrite.name=Small Pile of Pyrite Dust -item.techreborn.dustsmall.pyrope.name=Small Pile of Pyrope Dust -item.techreborn.dustsmall.redGarnet.name=Small Pile of Red Garnet Dust -item.techreborn.dustsmall.redstone.name=Small Pile of Redstone -item.techreborn.dustsmall.ruby.name=Small Pile of Ruby Dust -item.techreborn.dustsmall.saltpeter.name=Small Pile of Saltpeter Dust -item.techreborn.dustsmall.sapphire.name=Small Pile of Sapphire Dust -item.techreborn.dustsmall.sawDust.name=Small Pile of Saw Dust -item.techreborn.dustsmall.silver.name=Small Pile of Silver Dust -item.techreborn.dustsmall.sodalite.name=Small Pile of Sodalite Dust -item.techreborn.dustsmall.spessartine.name=Small Pile of Spessartine Dust -item.techreborn.dustsmall.sphalerite.name=Small Pile of Sphalerite Dust -item.techreborn.dustsmall.steel.name=Small Pile of Steel Dust -item.techreborn.dustsmall.sulfur.name=Small Pile of Sulfur Dust -item.techreborn.dustsmall.tin.name=Small Pile of Tin Dust -item.techreborn.dustsmall.titanium.name=Small Pile of Titanium Dust -item.techreborn.dustsmall.tungsten.name=Small Pile of Tungsten Dust -item.techreborn.dustsmall.uvarovite.name=Small Pile of Uvarovite Dust -item.techreborn.dustsmall.voidstone.name=Small Pile of Voidstone Dust -item.techreborn.dustsmall.yellowGarnet.name=Small Pile of Yellow Garnet Dust -item.techreborn.dustsmall.zinc.name=Small Pile of Zinc Dust -item.techreborn.dustsmall.olivine.name=Small Pile of Olivine Dust -item.techreborn.dustsmall.andesite.name=Small Pile of Andesite Dust -item.techreborn.dustsmall.diorite.name=Small Pile of Diorite Dust -item.techreborn.dustsmall.granite.name=Small Pile of Granite Dust - -item.techreborn.cell.name=Empty Cell -item.techreborn.rebattery.name=Battery -item.techreborn.lithiumBattery.name=Lithium Battery -item.techreborn.energyCrystal.name=Energy Crystal -item.techreborn.lapotronCrystal.name=Lapotron Crystal -item.techreborn.treetap.name=Treetap -item.techreborn.nanosaber.name=Nanosaber -item.techreborn.upgrade.Overclock.name=Overclocker Upgrade -item.techreborn.upgrade.Transformer.name=Tranformer Upgrade -item.techreborn.upgrade.EnergyStorage.name=Energy Storage Upgrade - -#Gems -item.techreborn.gem.ruby.name=Ruby -item.techreborn.gem.sapphire.name=Sapphire -item.techreborn.gem.peridot.name=Peridot -item.techreborn.gem.redGarnet.name=Red Garnet -item.techreborn.gem.yellowGarnet.name=Yellow Garnet - -#Ingots -item.techreborn.ingot.aluminum.name=Aluminium Ingot -item.techreborn.ingot.antimony.name=Antimony Ingot -item.techreborn.ingot.batteryAlloy.name=Battery Alloy Ingot -item.techreborn.ingot.redAlloy.name=Red Alloy Ingot -item.techreborn.ingot.blueAlloy.name=Blue Alloy Ingot -item.techreborn.ingot.brass.name=Brass Ingot -item.techreborn.ingot.bronze.name=Bronze Ingot -item.techreborn.ingot.cadmium.name=Cadmium Ingot -item.techreborn.ingot.chrome.name=Chrome Ingot -item.techreborn.ingot.copper.name=Copper Ingot -item.techreborn.ingot.cupronickel.name=Cupronickel Ingot -item.techreborn.ingot.electrum.name=Electrum Ingot -item.techreborn.ingot.indium.name=Indium Ingot -item.techreborn.ingot.invar.name=Invar Ingot -item.techreborn.ingot.iridium.name=Iridium Ingot -item.techreborn.ingot.kanthal.name=Kanthal Ingot -item.techreborn.ingot.lead.name=Lead Ingot -item.techreborn.ingot.lodestone.name=Lodestone Ingot -item.techreborn.ingot.magnalium.name=Magnalium Ingot -item.techreborn.ingot.nichrome.name=Nichrome Ingot -item.techreborn.ingot.nickel.name=Nickel Ingot -item.techreborn.ingot.osmium.name=Osmium Ingot -item.techreborn.ingot.platinum.name=Platinum Ingot -item.techreborn.ingot.silicon.name=Silicon Ingot -item.techreborn.ingot.silver.name=Silver Ingot -item.techreborn.ingot.steel.name=Steel Ingot -item.techreborn.ingot.tellurium.name=Tellurium Ingot -item.techreborn.ingot.tin.name=Tin Ingot -item.techreborn.ingot.titanium.name=Titanium Ingot -item.techreborn.ingot.tungsten.name=Tungsten Ingot -item.techreborn.ingot.hotTungstensteel.name=Hot Tungstensteel Ingot -item.techreborn.ingot.tungstensteel.name=Tungstensteel Ingot -item.techreborn.ingot.zinc.name=Zinc Ingot -item.techreborn.ingot.advancedAlloy.name=Advanced Alloy Ingot -item.techreborn.ingot.mixedMetal.name=Mixed Metal Ingot -item.techreborn.ingot.iridiumAlloy.name=Iridium Alloy Ingot - -#Nuggets -item.techreborn.nuggets.aluminum.name=Aluminium Nugget -item.techreborn.nuggets.antimony.name=Antimony Nugget -item.techreborn.nuggets.brass.name=Brass Nugget -item.techreborn.nuggets.bronze.name=Bronze Nugget -item.techreborn.nuggets.chrome.name=Chrome Nugget -item.techreborn.nuggets.copper.name=Copper Nugget -item.techreborn.nuggets.electrum.name=Electrum Nugget -item.techreborn.nuggets.invar.name=Invar Nugget -item.techreborn.nuggets.iridium.name=Iridium Nugget -item.techreborn.nuggets.iron.name=Iron Nugget -item.techreborn.nuggets.lead.name=Lead Nugget -item.techreborn.nuggets.nickel.name=Nickel Nugget -item.techreborn.nuggets.osmium.name=Osmium Nugget -item.techreborn.nuggets.platinum.name=Platinum Nugget -item.techreborn.nuggets.silver.name=Silver Nugget -item.techreborn.nuggets.steel.name=Steel Nugget -item.techreborn.nuggets.tin.name=Tin Nugget -item.techreborn.nuggets.titanium.name=Titanium Nugget -item.techreborn.nuggets.tungsten.name=Tungsten Nugget -item.techreborn.nuggets.tungstensteel.name=Tungstensteel Nugget -item.techreborn.nuggets.hotTungstensteel.name=Hot Tungstensteeel Nugget -item.techreborn.nuggets.zinc.name=Zinc Nugget -item.techreborn.nuggets.refinedIron.name=Refined Iron Nugget -item.techreborn.nuggets.diamond.name=Diamond Nugget - -#Crushed Ore -item.techreborn.crushedore.Aluminum.name=Crushed Aluminium Ore -item.techreborn.crushedore.Ardite.name=Crushed Ardite Ore -item.techreborn.crushedore.Bauxite.name=Crushed Bauxite Ore -item.techreborn.crushedore.Cadmium.name=Crushed Cadmium Ore -item.techreborn.crushedore.Cinnabar.name=Crushed Cinnabar Ore -item.techreborn.crushedore.Cobalt.name=Crushed Cobalt Ore -item.techreborn.crushedore.DarkIron.name=Crushed Dark Iron Ore -item.techreborn.crushedore.Indium.name=Crushed Indium Ore -item.techreborn.crushedore.Iridium.name=Crushed Iridium Ore -item.techreborn.crushedore.Nickel.name=Crushed Nickel Ore -item.techreborn.crushedore.Osmium.name=Crushed Osmium Ore -item.techreborn.crushedore.Platinum.name=Crushed Platinum Ore -item.techreborn.crushedore.Pyrite.name=Crushed Pyrite Ore -item.techreborn.crushedore.Sphalerite.name=Crushed Sphalerite Ore -item.techreborn.crushedore.Tetrahedrite.name=Crushed Tetrahedrite Ore -item.techreborn.crushedore.Tungsten.name=Purified Crushed Tungsten Ore -item.techreborn.crushedore.Galena.name=Crushed Galena Ore - -#Purified Crushed Ore -item.techreborn.purifiedcrushedore.Aluminum.name=Purified Crushed Aluminium Ore -item.techreborn.purifiedcrushedore.Ardite.name=Purified Crushed Ardite Ore -item.techreborn.purifiedcrushedore.Bauxite.name=Purified Crushed Bauxite Ore -item.techreborn.purifiedcrushedore.Cadmium.name=Purified Crushed Cadmium Ore -item.techreborn.purifiedcrushedore.Cinnabar.name=Purified Crushed Cinnabar Ore -item.techreborn.purifiedcrushedore.Cobalt.name=Purified Crushed Cobalt Ore -item.techreborn.purifiedcrushedore.DarkIron.name=Purified Crushed Dark Iron Ore -item.techreborn.purifiedcrushedore.Indium.name=Purified Crushed Indium Ore -item.techreborn.purifiedcrushedore.Iridium.name=Purified Crushed Iridium Ore -item.techreborn.purifiedcrushedore.Nickel.name=Purified Crushed Nickel Ore -item.techreborn.purifiedcrushedore.Osmium.name=Purified Crushed Osmium Ore -item.techreborn.purifiedcrushedore.Platinum.name=Purified Crushed Platinum Ore -item.techreborn.purifiedcrushedore.Pyrite.name=Purified Crushed Pyrite Ore -item.techreborn.purifiedcrushedore.Sphalerite.name=Purified Crushed Sphalerite Ore -item.techreborn.purifiedcrushedore.Tetrahedrite.name=Purified Crushed Tetrahedrite Ore -item.techreborn.purifiedcrushedore.Tungsten.name=Purified Crushed Tungsten Ore -item.techreborn.purifiedcrushedore.Galena.name=Purified Crushed Galena Ore - -#Plates -item.techreborn.plate.aluminum.name=Aluminium Plate -item.techreborn.plate.brass.name=Brass Plate -item.techreborn.plate.bronze.name=Bronze Plate -item.techreborn.plate.carbon.name=Carbon Plate -item.techreborn.plate.coal.name=Coal Plate -item.techreborn.plate.chrome.name=Chrome Plate -item.techreborn.plate.copper.name=Copper Plate -item.techreborn.plate.diamond.name=Diamond Plate -item.techreborn.plate.electrum.name=Electrum Plate -item.techreborn.plate.emerald.name=Emerald Plate -item.techreborn.plate.gold.name=Gold Plate -item.techreborn.plate.invar.name=Invar Plate -item.techreborn.plate.iridium.name=Iridium Plate -item.techreborn.plate.iron.name=Iron Plate -item.techreborn.plate.lapis.name=Lapis Lazuli Plate -item.techreborn.plate.lead.name=Lead Plate -item.techreborn.plate.magnalium.name=Magnalium Plate -item.techreborn.plate.nickel.name=Nickel Plate -item.techreborn.plate.obsidian.name=Obsidian Plate -item.techreborn.plate.osmium.name=Osmium Plate -item.techreborn.plate.Peridot.name=Peridot Plate -item.techreborn.plate.platinum.name=Platinum Plate -item.techreborn.plate.RedGarnet.name=Red Garnet Plate -item.techreborn.plate.redstone.name=Redstone Plate -item.techreborn.plate.Ruby.name=Ruby Plate -item.techreborn.plate.Sapphire.name=Sapphire Plate -item.techreborn.plate.silicon.name=Silicon Plate -item.techreborn.plate.silver.name=Silver Plate -item.techreborn.plate.steel.name=Steel Plate -item.techreborn.plate.teslatite.name=Teslatite Plate -item.techreborn.plate.tin.name=Tin Plate -item.techreborn.plate.titanium.name=Titanium Plate -item.techreborn.plate.tungsten.name=Tungsten Plate -item.techreborn.plate.hotTungstensteel.name=Hot Tungstensteel Plate -item.techreborn.plate.tungstensteel.name=Tungstensteel Plate -item.techreborn.plate.YellowGarnet.name=Yellow Garnet Plate -item.techreborn.plate.zinc.name=Zinc Plate -item.techreborn.plate.refinedIron.name=Refined Iron Plate -item.techreborn.plate.wood.name=Wooden Plate -item.techreborn.plate.advancedAlloy.name=Advanced Alloy -item.techreborn.plate.lazurite.name=Lazurite Plate - -#Parts -item.techreborn.part.advancedCircuitParts.name=Advanced Circuit Parts -item.techreborn.part.basicCircuitBoard.name=Basic Circuit Board -item.techreborn.part.advancedCircuitBoard.name=Advanced Circuit Board -item.techreborn.part.processorCircuitBoard.name=Processor Circuit Board -item.techreborn.part.energyFlowCircuit.name=Energy Flow Circuit -item.techreborn.part.dataControlCircuit.name=Data Control Circuit -item.techreborn.part.dataOrb.name=Data Orb -item.techreborn.part.dataStorageCircuit.name=Data Storage Circuit -item.techreborn.part.diamondGrindingHead.name=Diamond Grinding Head -item.techreborn.part.diamondSawBlade.name=Diamond Saw Blade -item.techreborn.part.tungstenGrindingHead.name=Tungsten Grinding Head -item.techreborn.part.heliumCoolantSimple.name=60k Helium Coolant Cell -item.techreborn.part.heliumCoolantTriple.name=180k Helium Coolant Cell -item.techreborn.part.heliumCoolantSix.name=360k Helium Coolant Cell -item.techreborn.part.NaKCoolantSimple.name=60k NaK Coolant Cell -item.techreborn.part.NaKCoolantTriple.name=180k NaK Coolant Cell -item.techreborn.part.NaKCoolantSix.name=360k NaK Coolant Cell -item.techreborn.part.cupronickelHeatingCoil.name=Cupronickel Heating Coil -item.techreborn.part.nichromeHeatingCoil.name=Nichrome Heating Coil -item.techreborn.part.kanthalHeatingCoil.name=Kanthal Heating Coil -item.techreborn.part.steelGear.name=Steel Gear -item.techreborn.part.tungstensteelGear.name=Tungstensteel Gear -item.techreborn.part.laserFocus.name=Laser Focus -item.techreborn.part.ductTape.name=Aerospace Advanced Reinforced Duct Tape FAL-84 -item.techreborn.part.iridiumAlloyIngot.name=Iridium Alloy Ingot -item.techreborn.part.rockCutterBlade.name=Rock Cutter Blade -item.techreborn.part.superConductor.name=Superconductor -item.techreborn.part.thoriumCell.name=Fuel Rod (Thorium) -item.techreborn.part.doubleThoriumCell.name=Dual Fuel Rod (Thorium) -item.techreborn.part.quadThoriumCell.name=Quad Fuel Rod (Thorium) -item.techreborn.part.plutoniumCell.name=Fuel Rod (Plutonium) -item.techreborn.part.doublePlutoniumCell.name=Dual Fuel Rod (Plutonium) -item.techreborn.part.quadPlutoniumCell.name=Quad Fuel Rod (Plutonium) -item.techreborn.part.destructoPack.name=Destructopack -item.techreborn.part.iridiumNeutronReflector.name=Iridium Neutron Reflector -item.techreborn.part.massHoleDevice.name=Mass Hole Device -item.techreborn.part.computerMonitor.name=Computer Monitor -item.techreborn.part.machineParts.name=Machine Parts -item.techreborn.part.neutronReflector.name=Neutron Reflector -item.techreborn.part.thickNeutronReflector.name=Thick Neutron Reflector -item.techreborn.part.rubberSap.name=Sap -item.techreborn.part.rubber.name=Rubber -item.techreborn.part.scrap.name=Scrap -item.techreborn.part.electronicCircuit.name=Electronic Circuit -item.techreborn.part.advancedCircuit.name=Advanced Electronic Circuit -item.techreborn.part.frequencyTransmitter.name=Frequency Transmitter -item.techreborn.part.wolframiumGrindingHead.name=Wolframium Grinding Head -item.techreborn.part.dogecoin.name=Dogecoin -item.techreborn.part.coolantSimple.name=10k Coolant Cell -item.techreborn.part.coolantTriple.name=30k Coolant Cell -item.techreborn.part.coolantSix.name=60k Coolant Cell - -item.techreborn.frequencyTransmitter.name=Frequency Transmitter - -#Tools -item.techreborn.rockcutter.name=Rockcutter -item.techreborn.lithiumbatpack.name=Lithium Batpack -item.techreborn.lapotronpack.name=Lapotron Pack -item.techreborn.omniTool.name=Omni-Tool -item.techreborn.ironDrill.name=Steel Drill -item.techreborn.diamondDrill.name=Diamond Drill -item.techreborn.advancedDrill.name=Advanced Drill -item.techreborn.ironChainsaw.name=Steel Chainsaw -item.techreborn.diamondChainsaw.name=Diamond Chainsaw -item.techreborn.advancedChainsaw.name=Advanced Chainsaw -item.techreborn.lapotronicorb.name=Lapotronic Energy Orb -item.techreborn.cloakingdevice.name=Cloaking Device -item.techreborn.steelJackhammer.name=Steel Jackhammer -item.techreborn.diamondJackhammer.name=Diamond Jackhammer -item.techreborn.advancedJackhammer.name=Advanced Jackhammer - -item.bronzeSword.name=Bronze Sword -item.bronzePickaxe.name=Bronze Pickaxe -item.bronzeSpade.name=Bronze Shovel -item.bronzeAxe.name=Bronze Axe -item.bronzeHoe.name=Bronze Hoe -item.bronzeHelmet.name=Bronze Helmet -item.bronzeChestplate.name=Bronze Chestplate -item.bronzeLeggings.name=Bronze Leggings -item.bronzeBoots.name=Bronze Boots - -item.rubySword.name=Ruby Sword -item.rubyPickaxe.name=Ruby Pickaxe -item.rubySpade.name=Ruby Shovel -item.rubyAxe.name=Ruby Axe -item.rubyHoe.name=Ruby Hoe -item.rubyHelmet.name=Ruby Helmet -item.rubyChestplate.name=Ruby Chestplate -item.rubyLeggings.name=Ruby Leggings -item.rubyBoots.name=Ruby Boots - -item.sapphireSword.name=Sapphire Sword -item.sapphirePickaxe.name=Sapphire Pickaxe -item.sapphireSpade.name=Sapphire Shovel -item.sapphireAxe.name=Sapphire Axe -item.sapphireHoe.name=Sapphire Hoe -item.sapphireHelmet.name=Sapphire Helmet -item.sapphireChestplate.name=Sapphire Chestplate -item.sapphireLeggings.name=Sapphire Leggings -item.sapphireBoots.name=Sapphire Boots - -item.peridotSword.name=Peridot Sword -item.peridotPickaxe.name=Peridot Pickaxe -item.peridotSpade.name=Peridot Shovel -item.peridotAxe.name=Peridot Axe -item.peridotHoe.name=Peridot Hoe -item.peridotHelmet.name=Peridot Helmet -item.peridotChestplate.name=Peridot Chestplate -item.peridotLeggings.name=Peridot Leggings -item.peridotBoots.name=Peridot Boots - -#Fluid -fluid.fluidberylium=Beryllium -fluid.fluidcalcium=Calcium -fluid.fluidcalciumcarbonate=Calciumcarbonate -fluid.fluidcarbon=Carbon -fluid.fluidcarbonfiber=Carbon Fiber -fluid.fluidchlorite=Chlorite -fluid.fluiddeuterium=Deuterium -fluid.fluiddiesel=Diesel -fluid.fluidglyceryl=Glyceryl -fluid.fluidhelium=Helium -fluid.fluidhelium3=Helium3 -fluid.fluidheliumplasma=Heliumplasma -fluid.fluidhydrogen=Hydrogen -fluid.fluidlithium=Lithium -fluid.fluidmercury=Mercury -fluid.fluidmethane=Methane -fluid.fluidnitrocarbon=Nitrocarbon -fluid.fluidnitrocoalfuel=Nitrocoalfuel -fluid.fluidnitrodiesel=Nitrodiesel -fluid.fluidnitrofuel=Nitrofuel -fluid.fluidnitrogen=Nitrogen -fluid.fluidnitrogendioxide=Nitrogendioxide -fluid.fluidoil=Oil -fluid.fluidpotassium=Potassium -fluid.fluidsilicon=Silicon -fluid.fluidsodium=Sodium -fluid.fluidsodiumSulfide=Sodium Sulfide -fluid.fluidSulfur=Sulfur -fluid.fluidsulfuricacid=Sulfuric Acid -fluid.fluidsodiumpersulfate=Sodiumpersulfate -fluid.fluidtritium=Tritium -fluid.fluidwolframium=Wolframium - -#Items -item.techreborn.uuMatter.name=UU-Matter -item.techreborn.manual.name=Tech Manual -item.techreborn.debug.name=Debug Tool -#Configs -config.techreborn.allow.galenaOre=Allow Galena Ore -config.techreborn.allow.galenaOre.tooltip=Decide whether Galena Ore spawns or not -config.techreborn.allow.iridiumOre=Allow Iridium Ore -config.techreborn.allow.iridiumOre.tooltip=Decide whether Iridium Ore spawns or not -config.techreborn.allow.rubyOre=Allow Ruby Ore -config.techreborn.allow.rubyOre.tooltip=Decide whether Ruby Ore spawns or not -config.techreborn.allow.sapphireOre=Allow Sapphire Ore -config.techreborn.allow.sapphireOre.tooltip=Decide whether Sapphire Ore spawns or not -config.techreborn.allow.bauxiteOre=Allow Bauxite Ore -config.techreborn.allow.bauxiteOre.tooltip=Decide whether Bauxite Ore spawns or not -config.techreborn.allow.copperOre=Allow Copper Ore -config.techreborn.allow.copperOre.tooltip=Decide whether Copper Ore spawns or not -config.techreborn.allow.tinOre=Allow Tin Ore -config.techreborn.allow.tinOre.tooltip=Decide whether Tin Ore spawns or not -config.techreborn.allow.leadOre=Allow Lead Ore -config.techreborn.allow.leadOre.tooltip=Decide whether Lead Ore spawns or not -config.techreborn.allow.silverOre=Allow Silver Ore -config.techreborn.allow.silverOre.tooltip=Decide whether Silver Ore spawns or not -config.techreborn.allow.pyriteOre=Allow Pyrite Ore -config.techreborn.allow.pyriteOre.tooltip=Decide whether Pyrite Ore spawns or not -config.techreborn.allow.cinnabarOre=Allow Cinnabar Ore -config.techreborn.allow.cinnabarOre.tooltip=Decide whether Cinnabar Ore spawns or not -config.techreborn.allow.sphaleriteOre=Allow Sphalerite Ore -config.techreborn.allow.sphaleriteOre.tooltip=Decide whether Sphalerite Ore spawns or not -config.techreborn.allow.tungstenOre=Allow Tungsten Ore -config.techreborn.allow.tungstenOre.tooltip=Decide whether Tungsten Ore spawns or not -config.techreborn.allow.sheldoniteOre=Allow Sheldonite Ore -config.techreborn.allow.sheldoniteOre.tooltip=Decide whether Sheldonite Ore spawns or not -config.techreborn.allow.olivineOre=Allow Olivine Ore -config.techreborn.allow.olivineOre.tooltip=Decide whether Olivine Ore spawns or not -config.techreborn.allow.sodaliteOre=Allow Sodalite Ore -config.techreborn.allow.sodaliteOre.tooltip=Decide whether Sodalite Ore spawns or not - -config.techreborn.fortuneSecondaryOreMultiplierPerLevel=Fortune's Effect on Secondaries -config.techreborn.fortuneSecondaryOreMultiplierPerLevel.tooltip=How much of an increase should each level of fortune have on secondary ore drops? - -config.techreborn.allowExpensiveMacerator=Allow Expensive Macerator -config.techreborn.allowExpensiveMacerator.tooltip= -config.techreborn.allowExpensiveDrill=Allow Expensive Drill -config.techreborn.allowExpensiveDrill.tooltip= -config.techreborn.allowExpensiveDiamondDrill=Allow Expensive Diamond Drill -config.techreborn.allowExpensiveDiamondDrill.tooltip= -config.techreborn.allowExpensiveSolarPanels=Allow Expensive Solar Panels -config.techreborn.allowExpensiveSolarPanels.tooltip= - -config.techreborn.advancedDrillTier=Advanced Drill Power Tier -config.techreborn.advancedDrillTier.tooltip= -config.techreborn.lapotronPackTier=Lapotron Pack Power Tier -config.techreborn.lapotronPackTier.tooltip= -config.techreborn.lithiumBatpackTier=Lithium Batpack Power Tier -config.techreborn.lithiumBatpackTier.tooltip= -config.techreborn.omniToolTier=OmniTool Tier -config.techreborn.omniToolTier.tooltip= -config.techreborn.rockCutterTier=Rock Cutter Power Tier -config.techreborn.rockCutterTier.tooltip= -config.techreborn.gravityChestplateTier=Gravity Chestplates Power Tier -config.techreborn.gravityChestplateTier.tooltip= -config.techreborn.centrifugeTier=Centrifuge Power Tier -config.techreborn.centrifugeTier.tooltip= -config.techreborn.thermalGeneratorTier=Thermal Generator Power Tier -config.techreborn.thermalGeneratorTier.tooltip= - -config.techreborn.thermalGeneratorPower=Thermal Generator Output -config.techreborn.thermalGeneratorPower.tooltip= -config.techreborn.centrifugePowerUsage=Centrifuge Input per tick -config.techreborn.centrifugePowerUsage.tooltip= - -config.techreborn.advancedDrillMaxCharge=Maximum charge for Advanced Drill -config.techreborn.advancedDrillMaxCharge.tooltip= -config.techreborn.lapotronPackMaxCharge=Maximum charge for -config.techreborn.lapotronPackMaxCharge.tooltip= -config.techreborn.omniToolMaxCharge=Maximum charge for -config.techreborn.omniToolMaxCharge.tooltip= -config.techreborn.lithiumBatpackMaxCharge=Maximum charge for Lithium Batpack -config.techreborn.lithiumBatpackMaxCharge.tooltip= -config.techreborn.rockCutterMaxCharge=Maximum charge for Rock Cutter -config.techreborn.rockCutterMaxCharge.tooltip= -config.techreborn.gravityChestplateMaxCharge=Maximum charge for Gravity Chestplate -config.techreborn.gravityChestplateMaxCharge.tooltip= -config.techreborn.centrifugeMaxCharge=Maximum charge for Centrifuge -config.techreborn.centrifugeMaxCharge.tooltip= -config.techreborn.thermalGeneratorMaxCharge=Maximum charge for Thermal Generator -config.techreborn.thermalGeneratorMaxCharge.tooltip= -config.techreborn.aveargeEuOutTickTim=Eu out time -config.techreborn.aveargeEuOutTickTime.tooltip=How often in ticks to update the eu out -config.techreborn.euPerRF=EU Conversion -config.techreborn.euPerRF.tooltip=The amount of RF that equal 1 EU. 4 by default, so 4RF == 1EU and .25EU == 1RF -config.techreborn.farmeu=Farm EU per Tick -config.techreborn.farmeu.tooltip=Amount of eu used per tick by the farm -config.techreborn.enableRF=Enable RF support -config.techreborn.enableRF.tooltip= Enable RF support for all machines. -config.techreborn.enableEU=Enable EU support -config.techreborn.enableEU.tooltip= Enable EU support for all machines. -config.techreborn.connectTextures=Enable Connected textures -config.techreborn.connectTextures.tooltip= Enable Connected textures -config.techreborn.rainExplosions=Enable machine explosions when rain hits -config.techreborn.rainExplosions.tooltip= When this is enabled machines will explode when they come in contact with rain. -config.techreborn.allowExpensiveWatermill.tooltip= Allow Expensive Watermill -config.techreborn.allowExpensiveWindmill.tooltip= Allow Expensive Watermill -config.techreborn.allowBopRecipes.tooltip= Allow BOP Recipes -config.techreborn.allowForestryRecipes.tooltip= Allow Forestry Recipes -config.techreborn.allowNaturaRecipes.tooltip= Allow Natura Recipes -config.techreborn.aesuMaxOutput.tooltip= AESU max output -config.techreborn.aesuMaxStorage.tooltip= AESU max storage -config.techreborn.baseLesuOutput.tooltip= Base LESU output -config.techreborn.cloakingDeviceEUTick.tooltip= Cloaking Device Eu/Tick -config.techreborn.cloakingDeviceMaxCharge.tooltip= Cloaking Device Max Charge -config.techreborn.cloakingDeviceTier.tooltip= Cloaking Device Tier -config.techreborn.dragoneggsiphonerPower.tooltip=Dragon Egg Siphoner Eu/Tick -config.techreborn.extraOutputPerLesuBlock.tooltip= LESU Storage Block extra output -config.techreborn.heatGeneratorOutput.tooltip= Heat Generator output -config.techreborn.lapotronicOrbMaxCharge= Lapotronic Orb Max Charge -config.techreborn.lapotronicOrbTier.tooltip= Lapatronic Orb Tier -config.techreborn.lesuStoragePerBlock.tooltip= LESU Storage Block extra output -config.techreborn.showChargehud.tooltip=Show Charge Hud -#Config UU -config.techreborn.allow.UUrecipesAluminumDust= Allow UU recipes for AluminiumDust -config.techreborn.allow.UUrecipesCoal= Allow UU recipes for Coal -config.techreborn.allow.UUrecipesCopperDust= Allow UU recipes for Copper Dust -config.techreborn.allow.UUrecipesDiamond= Allow UU recipes for Diamond -config.techreborn.allow.UUrecipesEmerald= Allow UU recipes for Emerald -config.techreborn.allow.UUrecipesEmeraldOre= Allow UU recipes for Emerald Ore -config.techreborn.allow.UUrecipesGoldDust= Allow UU recipes for Gold Dust -config.techreborn.allow.UUrecipesGoldOre= Allow UU recipes for Gold Ore -config.techreborn.allow.UUrecipesIronDust= Allow UU recipes for Iron Dust -config.techreborn.allow.UUrecipesIronOre= Allow UU recipes for Iron Ore -config.techreborn.allow.UUrecipesLapis= Allow UU recipes for Lapis -config.techreborn.allow.UUrecipesLeadDust= Allow UU recipes for Lapis dust -config.techreborn.allow.UUrecipesPlatinumDust= Allow UU recipes for Platinum Dust -config.techreborn.allow.UUrecipesRedStone= Allow UU recipes for Redstone -config.techreborn.allow.UUrecipesResin= Allow UU recipes for Sticky Resin -config.techreborn.allow.UUrecipesTinDust= Allow UU recipes for Tin Dust -config.techreborn.allow.UUrecipesTitaniumDust= Allow UU recipes for Titanium Dust -config.techreborn.allow.UUrecipesTungstenDust= Allow UU recipes for Tungsten Dust -config.techreborn.allow.uurecipesBone= Allow UU recipes for Bone -config.techreborn.allow.uurecipesCactus= Allow UU recipes for Cactus -config.techreborn.allow.uurecipesCocoa= Allow UU recipes for Cocoa -config.techreborn.allow.uurecipesEnderPearl= Allow UU recipes for Ender Pearl -config.techreborn.allow.uurecipesFeather= Allow UU recipes for Feather -config.techreborn.allow.uurecipesGlass= Allow UU recipes for Glass -config.techreborn.allow.uurecipesGlowstoneBlock= Allow UU recipes for Glowstone Blocks -config.techreborn.allow.uurecipesGrass= Allow UU recipes for Grass -config.techreborn.allow.uurecipesInk= Allow UU recipes for Ink Sacks -config.techreborn.allow.uurecipesIridiamOre= Allow UU recipes for IridiamOre -config.techreborn.allow.uurecipesLava= Allow UU recipes for Lava -config.techreborn.allow.uurecipesLilypad= Allow UU recipes for Lilypad -config.techreborn.allow.uurecipesObsidian= Allow UU recipes for Obsidian -config.techreborn.allow.uurecipesSnowBall= Allow UU recipes for Snowball -config.techreborn.allow.uurecipesSnowBlock= Allow UU recipes for SnowBlock -config.techreborn.allow.uurecipesStone= Allow UU recipes for Stone -config.techreborn.allow.uurecipesSugarCane= Allow UU recipes for SugarCane -config.techreborn.allow.uurecipesVine= Allow UU recipes for Vine -config.techreborn.allow.uurecipesWater= Allow UU recipes for Water -config.techreborn.allow.uurecipesWood= Allow UU recipes for Wood - -#Config Tooltips UU -config.techreborn.allow.UUrecipesAluminumDust.tooltip= Allow UU recipes for AluminiumDust -config.techreborn.allow.UUrecipesCoal.tooltip= Allow UU recipes for Coal -config.techreborn.allow.UUrecipesCopperDust.tooltip= Allow UU recipes for Copper Dust -config.techreborn.allow.UUrecipesDiamond.tooltip= Allow UU recipes for Diamond -config.techreborn.allow.UUrecipesEmerald.tooltip= Allow UU recipes for Emerald -config.techreborn.allow.UUrecipesEmeraldOre.tooltip= Allow UU recipes for Emerald Ore -config.techreborn.allow.UUrecipesGoldDust.tooltip= Allow UU recipes for Gold Dust -config.techreborn.allow.UUrecipesGoldOre.tooltip= Allow UU recipes for Gold Ore -config.techreborn.allow.UUrecipesIronDust.tooltip= Allow UU recipes for Iron Dust -config.techreborn.allow.UUrecipesIronOre.tooltip= Allow UU recipes for Iron Ore -config.techreborn.allow.UUrecipesLapis.tooltip= Allow UU recipes for Lapis -config.techreborn.allow.UUrecipesLeadDust.tooltip= Allow UU recipes for Lapis dust -config.techreborn.allow.UUrecipesPlatinumDust.tooltip= Allow UU recipes for Platinum Dust -config.techreborn.allow.UUrecipesRedStone.tooltip= Allow UU recipes for Redstone -config.techreborn.allow.UUrecipesResin.tooltip= Allow UU recipes for Sticky Resin -config.techreborn.allow.UUrecipesTinDust.tooltip= Allow UU recipes for Tin Dust -config.techreborn.allow.UUrecipesTitaniumDust.tooltip= Allow UU recipes for Titanium Dust -config.techreborn.allow.UUrecipesTungstenDust.tooltip= Allow UU recipes for Tungsten Dust -config.techreborn.allow.hiderecipes.tooltip= Hide UU recipes from NEI -config.techreborn.allow.uurecipesBone.tooltip= Allow UU recipes for Bone -config.techreborn.allow.uurecipesCactus.tooltip= Allow UU recipes for Cactus -config.techreborn.allow.uurecipesCocoa.tooltip= Allow UU recipes for Cocoa -config.techreborn.allow.uurecipesEnderPearl.tooltip= Allow UU recipes for Ender Pearl -config.techreborn.allow.uurecipesFeather.tooltip= Allow UU recipes for Feather -config.techreborn.allow.uurecipesGlass.tooltip= Allow UU recipes for Glass -config.techreborn.allow.uurecipesGlowstoneBlock.tooltip= Allow UU recipes for Glowstone Blocks -config.techreborn.allow.uurecipesGrass.tooltip= Allow UU recipes for Grass -config.techreborn.allow.uurecipesInk.tooltip= Allow UU recipes for Ink Sacks -config.techreborn.allow.uurecipesIridiamOre.tooltip= Allow UU recipes for IridiamOre -config.techreborn.allow.uurecipesLava.tooltip= Allow UU recipes for Lava -config.techreborn.allow.uurecipesLilypad.tooltip= Allow UU recipes for Lilypad -config.techreborn.allow.uurecipesObsidian.tooltip= Allow UU recipes for Obsidian -config.techreborn.allow.uurecipesSnowBall.tooltip= Allow UU recipes for Snowball -config.techreborn.allow.uurecipesSnowBlock.tooltip= Allow UU recipes for SnowBlock -config.techreborn.allow.uurecipesStone.tooltip= Allow UU recipes for Stone -config.techreborn.allow.uurecipesSugarCane.tooltip= Allow UU recipes for SugarCane -config.techreborn.allow.uurecipesVine.tooltip= Allow UU recipes for Vine -config.techreborn.allow.uurecipesWater.tooltip= Allow UU recipes for Water -config.techreborn.allow.uurecipesWood.tooltip= Allow UU recipes for Wood - - -config.techreborn.allow.tungstonOre.tooltip= Allow UU recipes for Tungston Ore -config.techreborn.bauxiteOre.rare.tooltip=rarity of Bauxite Ore -config.techreborn.cinnabarOre.rare.tooltip=rarity of Cinnabar Ore -config.techreborn.copperOre.rare.tooltip=rarity of Copper Ore -config.techreborn.galenaOre.rare.tooltip=rarity of Galena Ore -config.techreborn.iridiumOre.rare.tooltip=rarity of Iridium Ore -config.techreborn.leadOre.rare.tooltip=rarity of Lead Ore -config.techreborn.olivineOre.rare.tooltip=rarity of Olivine Ore -config.techreborn.pyriteOre.rare.tooltip=rarity of Pyrite Ore -config.techreborn.rubyOre.rare.tooltip=rarity of Ruby Ore -config.techreborn.sapphireOre.rare.tooltip=rarity of Sapphire Ore -config.techreborn.sheldoniteOre.rare.tooltip=rarity of Sheldonite Ore -config.techreborn.silverOre.rare.tooltip=rarity of Silver Ore -config.techreborn.sodaliteOre.rare.tooltip=rarity of Sodalite Ore -config.techreborn.sphaleriteOre.rare.tooltip=rarity of Sphalerite Ore -config.techreborn.tinOre.rare.tooltip=rarity of Tin Ore -config.techreborn.tungstenOre.rare.tooltip=rarity of Tungsten Ore - -config.techreborn.oreUnifer=Ore Unification -config.techreborn.oreUnifer.tooltip=Enable/Disable the auto ore unification - -config.techreborn.aesuMaxOutput=AESU max output -config.techreborn.aesuMaxStorage=AESU max storage -config.techreborn.aveargeEuOutTickTime=Time to calculate average output -config.techreborn.baseLesuOutput=Base lesu output -config.techreborn.cloakingDeviceEUTick=Clocking Device EU usage per tick -config.techreborn.cloakingDeviceMaxCharge=Cloaking Device Max Charge -config.techreborn.cloakingDeviceTier=Cloaking Device Tier -config.techreborn.dragoneggsiphonerPower=Dragon Egg Siphoner EU output -config.techreborn.extraOutputPerLesuBlock=LESU block power -config.techreborn.heatGeneratorOutput=Heat Generator Output -config.techreborn.lapotronicOrbTier=Lapotronic Orb Tier -config.techreborn.lesuStoragePerBlock=Lesu Storage Per Block -config.techreborn.showChargehud=Show charge HUD -config.techreborn.allowExpensiveWatermill=Allow Expensive Watermill -config.techreborn.allowExpensiveWindmill=Allow Expensive Windmill - - -#ConfigGui -config.techreborn.category.general=General Configs -config.techreborn.category.world=World Configs -config.techreborn.category.power=Power Configs -config.techreborn.category.crafting=Crafting Configs -config.techreborn.category.uu=UU Configs -config.techreborn.category.emc=EMC Configs -config.techreborn.category.integration=Integration - -tr.configgui.category.trGeneral.tooltip=General -tr.configgui.category.trWorld.tooltip=World -tr.configgui.category.trPower.tooltip=Power -tr.configgui.category.trCrafting.tooltip=Crafting -tr.configgui.category.truu.tooltip=UU -tr.configgui.category.tremc.tooltip=EMC -tr.configgui.category.treinter.tooltip=Mod Integration - -#Recipe Handlers -techreborn.recipe.alloysmelter=Alloy Furnace Recipe -techreborn.recipe.ironalloysmelter=Iron Alloy Furnace Recipe -techreborn.recipe.assemblingmachine=Assembling Machine Recipe -techreborn.recipe.blastfurnace=Blast Furnace Recipe -techreborn.recipe.centrifuge=Centrifuge Recipe -techreborn.recipe.grinder=Industrial Grinder Recipe -techreborn.recipe.industrialelectrolyzer=Industrial Electrolyzer Recipe -techreborn.recipe.industrialsawmill=Industrial Sawmill Recipe -techreborn.recipe.lathe=Lathe Recipe -techreborn.recipe.platecuttingmachine=Plate Cutting Machine Recipe -techreborn.recipe.chemicalReactor=Chemical Reactor Recipe -techreborn.recipe.implosioncompressor=Implosion Compressor - -#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.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: - -#Cables -Cable.copperCable.name=Copper Cable -Cable.insulatedCopperCable.name=Insulated Copper Cable -Cable.goldCable.name=Gold Cable -Cable.insulatedGoldCable.name=Insulated Copper Cable -Cable.doubleInsulatedGoldCable.name=Double Insulated Copper Cable -Cable.ironCable.name=Iron Cable -Cable.copperCable.name=Copper Cable -Cable.insulatedIronCable.name=Insulated Iron Cable -Cable.doubleInsulatedIronCable.name=Double Insulated Copper Cable -Cable.trippleInsulatedIronCable.name=Triple Insulated Copper Cable -Cable.glassFiberCable.name=Glass Fiber Cable -Cable.tinCable.name=Tin Cable - -desc.uninsulatedCable=Damages Entities! -desc.euTransfer=EU Transfer: -desc.tier=Tier: - - -#Manual -techreborn.manual.contents=Contents Page -techreborn.manual.gettingstarted=Getting Started -techreborn.manual.generatingpower=Generating Power -techreborn.manual.basicmachines=Basic Machines -techreborn.manual.advancedmachines=Advanced Machines -techreborn.manual.tools=Tools - -techreborn.manual.gettingrubber=Collecting Rubber -techreborn.manual.backbutton=Back -techreborn.manual.gettingplates=Crafting Plates - -item.techreborn.advancedDrill.description=This Tool is a advanced version of the mining drill, when this item is activated it will dig out a 3x3. -tile.techreborn.alloyfurnace.description=This Machine is your first step into TechReborn with this you can fuse metals into other metals. These other metals can be used to craft the higher tier machines. -tile.techreborn.alloysmelter.description=This machine is a upgraded version of the Alloy Furnace, This block requires EU or RF. -tile.techreborn.assemblingmachine.description=This block is used to craft some of the more complex machines that can't be crafted in a normal crafting table. -tile.techreborn.blastfurnace.description=This Machine needs a 3x4x3 of machine casings behind it to increase its internal heat, The hotter the machine is the more recipes will open up to you. This machine also needs EU/RF. - -keys.techreborn.category=TechReborn Category -keys.techreborn.config=Config - -achievement.TechReborn:ore_PickUp=New Ore! -achievement.TechReborn:ore_PickUp.desc=Mine a TechReborn ore -achievement.TechReborn:centrifuge_Craft=Time to Spin -achievement.TechReborn:thermalgen_Craft=Time to Heat - -# JEI Integration -techreborn.jei.recipe.start.cost=Start: %sEU -techreborn.jei.recipe.running.cost=EU/t: %s -techreborn.jei.recipe.processing.time.1=Time: %s ticks -techreborn.jei.recipe.processing.time.2=(%s seconds) -jei.techreborn.scrapbox.name=Opening Scrapboxes -techreborn.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.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.desc.scrapBoxNoDispenser=Scrapboxes can be opened by a simple use in hand! - -techreborn.jei.category.alloy.furnace=Alloy Furnace - -#Death Messages -death.attack.shock=%s was electrocuted - - -#Entitys -entity.techreborn.nuke.name=Nuke - -tooltip.wip=WIP Coming Soon -tooltip.upBroken=Upgrades DO NOT function! -tooltip.ingredient=Currently only a crafting ingredient diff --git a/src/main/resources/assets/techreborn/lang/fr_FR.lang b/src/main/resources/assets/techreborn/lang/fr_FR.lang deleted file mode 100644 index d6c3603ed..000000000 --- a/src/main/resources/assets/techreborn/lang/fr_FR.lang +++ /dev/null @@ -1,900 +0,0 @@ -itemGroup.techreborn=Tech Reborn - -#machines -tile.techreborn.gasTurbine.name=Turbine à gaz -tile.techreborn.industrialBlock.name=Industriel -tile.techreborn.thermalGenerator.name=Générateur thermique -tile.techreborn.quantumTank.name=Réservoir quantique -tile.techreborn.quantumChest.name=Coffre quantique -tile.techreborn.digitalChest.name=Coffre digital -tile.techreborn.centrifuge.name=Centrifugeuse -tile.techreborn.rollingmachine.name=Lamineuse -tile.techreborn.machineCasing.standard.name=Boitier de machine standard -tile.techreborn.machineCasing.reinforced.name=Boitier de machine renforcé -tile.techreborn.machineCasing.advanced.name=Boitier de machine avancé -tile.techreborn.highlyAdvancedMachine.name=Boitier de machine hautement avancé -tile.techreborn.blastfurnace.name=Haut fourneau industriel -tile.techreborn.alloysmelter.name=Four électrique d'alliage -tile.techreborn.matterfabricator.name=Fabricateur de matière -tile.techreborn.implosioncompressor.name=Compresseur à implosion -tile.techreborn.grinder.name=Broyeur industriel -tile.techreborn.chunkloader.name=Chargeur de chunk industriel -tile.techreborn.magicenergyconverter.name=Convertiseur d'énergie magique -tile.techreborn.dieselgenerator.name=Générateur diesel -tile.techreborn.industrialelectrolyzer.name=Électrolyseur industriel -tile.techreborn.magicenergyabsorber.name=Absorbeur d'énergie magique -tile.techreborn.assemblingmachine.name=Assembleur -tile.techreborn.semifluidgenerator.name=Générateur semi-fluide -tile.techreborn.alloyfurnace.name=Four en fer d'alliage -tile.techreborn.chemicalreactor.name=Réacteur chimique -tile.techreborn.dragoneggsiphoner.name=Syphon d'énergie d'oeuf de dragon -tile.techreborn.idsu.name=USID -tile.techreborn.aesu.name=USEA -tile.techreborn.lesu.name=USEL -tile.techreborn.lesustorage.name=Stockage USEL -tile.techreborn.distillationtower.name=Tour de distillation -tile.techreborn.electriccraftingtable.name=Table d'autotraitement électrique -tile.techreborn.vacuumfreezer.name=Congélateur à vide -tile.techreborn.plasmagenerator.name=Générateur plasma -tile.techreborn.fusioncontrolcomputer.name=Ordinateur de contrôle de fusion -tile.techreborn.computercube.name=Cube d'ordinateur TechReborn -tile.techreborn.fusioncoil.name=Bobine de fusion -tile.techreborn.lightningrod.name=Paratonnerre -tile.techreborn.assemblinmachine.name=Machine d'assemblage -tile.techreborn.heatgenerator.name=Générateur de chaleur -tile.techreborn.machineFrame.aluminum.name=Coque de machine en aluminum -tile.techreborn.machineFrame.iron.name=Coque de machine en fer -tile.techreborn.machineFrame.bronze.name=Coque de machine en bronze -tile.techreborn.machineFrame.brass.name=Coque de machine en laiton -tile.techreborn.machineFrame.steel.name=Coque de machine en acier -tile.techreborn.machineFrame.titanium.name=Coque de machine en titane -tile.techreborn.industrialsawmill.name=Scierie -tile.techreborn.chargebench.name=Banc de recharge - -#Ores -tile.techreborn.ore.Galena.name=Minerai de galène -tile.techreborn.ore.Iridium.name=Minerai d'iridium -tile.techreborn.ore.Ruby.name=Minerai de rubis -tile.techreborn.ore.Sapphire.name=Minerai de saphire -tile.techreborn.ore.Bauxite.name=Minerai de bauxite -tile.techreborn.ore.Pyrite.name=Minerai de pyrite -tile.techreborn.ore.Cinnabar.name=Minerai de cinabre -tile.techreborn.ore.Sphalerite.name=Minerai de sphalérite -tile.techreborn.ore.Tungsten.name=Minerai de tungstène -tile.techreborn.ore.Sheldonite.name=Minerai de sheldonite -tile.techreborn.ore.Peridot.name=Minerai de péridot -tile.techreborn.ore.Sodalite.name=Minerai de sodalite -tile.techreborn.ore.Tetrahedrite.name=Minerai de tétrahèdrite -tile.techreborn.ore.Cassiterite.name=Minerai de cassitérite -tile.techreborn.ore.Lead.name=Minerai de plomb -tile.techreborn.ore.Silver.name=Minerai d'argent - -#Storage -tile.techreborn.storage.silver.name=Bloc d'argent -tile.techreborn.storage.aluminum.name=Bloc d'aluminum -tile.techreborn.storage.titanium.name=Bloc de titane -tile.techreborn.storage.chrome.name=Bloc de chrome -tile.techreborn.storage.steel.name=Bloc d'acier -tile.techreborn.storage.brass.name=Bloc de laiton -tile.techreborn.storage.lead.name=Bloc de plomb -tile.techreborn.storage.electrum.name=Bloc d'électrum -tile.techreborn.storage.zinc.name=Bloc de zinc -tile.techreborn.storage.platinum.name=Bloc de platine -tile.techreborn.storage.tungsten.name=Bloc de tungstène -tile.techreborn.storage.nickel.name=Bloc de nickel -tile.techreborn.storage.invar.name=Bloc d'invar -tile.techreborn.storage.osmium.name=Bloc d'osmium -tile.techreborn.storage.iridium.name=Bloc d'iridium -tile.techreborn.storage2.tungstensteel.name=Bloc d'acier au tungstène -tile.techreborn.storage2.lodestone.name=Bloc d'aimant naturel -tile.techreborn.storage2.tellurium.name=Bloc de tellure -tile.techreborn.storage2.iridium_reinforced_tungstensteel.name=Bloc d'acier au tungstène renforcé d'iridium -tile.techreborn.storage2.iridium_reinforced_stone.name=Pierre renforcée d'iridium -tile.techreborn.storage2.ruby.name=Bloc de rubis -tile.techreborn.storage2.sapphire.name=Bloc de saphirs -tile.techreborn.storage2.peridot.name=Bloc de péridot -tile.techreborn.storage2.yellow_garnet.name=Bloc de grenat jaune -tile.techreborn.storage2.red_garnet.name=Bloc de grenat rouge -tile.techreborn.farm.name=Ferme - - -#Fluids -tile.techreborn.berylium.name=Source de béryllium -tile.techreborn.calcium.name=Source de calcium -tile.techreborn.calciumcarbonate.name=Source de carbonate de calcium -tile.techreborn.chlorite.name=Source de chlorite -tile.techreborn.deuterium.name=Source de deutérium -tile.techreborn.glyceryl.name=Source de glycéryle -tile.techreborn.helium.name=Source d'hélium -tile.techreborn.helium3.name=Source d'hélium3 -tile.techreborn.heliumplasma.name=Source de plasma d'hélium -tile.techreborn.hydrogen.name=Source d'hydrogène -tile.techreborn.lithium.name=Source de lithium -tile.techreborn.mercury.name=Source de mercure -tile.techreborn.methane.name=Source de méthane -tile.techreborn.nitrocoalfuel.name=Source de carburant nitrocarbonate -tile.techreborn.nitrofuel.name=Source de carburant azote -tile.techreborn.nitrogen.name=Source d'azote -tile.techreborn.nitrogendioxide.name=Source de dioxyde d'azote -tile.techreborn.potassium.name=Source de potassium -tile.techreborn.silicon.name=Source de silicium -tile.techreborn.sodium.name=Source de sodium -tile.techreborn.sodiumpersulfate.name=Source de persulfate de sodium -tile.techreborn.tritium.name=Source de tritium -tile.techreborn.wolframium.name=Source de wolfanium -tile.techreborn.supercondensator.name=Supercondensateur -fluid.fluid.fluidberylium=Bérylium -fluid.fluid.fluidcalcium=Calcium -fluid.fluid.fluidcalciumcarbonate=Carbonate de calcium -fluid.fluid.fluidchlorite=Chlorite -fluid.fluid.fluiddeuterium=Deutérium -fluid.fluid.fluidglyceryl=Glycéryle -fluid.fluid.fluidhelium=Hélium -fluid.fluid.fluidhelium3=Hélium3 -fluid.fluid.fluidheliumplasma=Plasmea d'hélium -fluid.fluid.fluidhydrogen=Hydrogène -fluid.fluid.fluidlithium=Lithium -fluid.fluid.fluidmercury=Mercure -fluid.fluid.fluidmethane=Méthane -fluid.fluid.fluidnitrocoalfuel=Carburant nitrocarbonate -fluid.fluid.fluidnitrofuel=Carburant azote -fluid.fluid.fluidnitrogen=Azote -fluid.fluid.fluidnitrogendioxide=Dioxyde d'azote -fluid.fluid.fluidpotassium=Potassium -fluid.fluid.fluidsilicon=Silicium -fluid.fluid.fluidsodium=Sodium -fluid.fluid.fluidsodiumpersulfate=Persulfate de sodium -fluid.fluid.fluidtritium=Tritium -fluid.fluid.fluidwolframium=Wolframium -fluid.tile.techreborn.glyceryl=Glycéryle -fluid.tile.techreborn.berylium=Bérylium -fluid.tile.techreborn.chlorite=Chlorite -fluid.tile.techreborn.helium3=Hélium3 -fluid.tile.techreborn.deuterium=Deutérium -fluid.tile.techreborn.helium=Hélium -fluid.tile.techreborn.calciumcarbonate=Carbonate de calcium - -#Dusts -item.techreborn.dust.almandine.name=Poudre d'almandine -item.techreborn.dust.aluminumBrass.name=poudre de laiton d'aluminium -item.techreborn.dust.aluminum.name=Poudre d'aluminium -item.techreborn.dust.alumite.name=poudre d'alumite -item.techreborn.dust.andradite.name=Poudre d'andradite -item.techreborn.dust.antimony.name=Poudre d'antimoine -item.techreborn.dust.ardite.name=Poudre d'ardite -item.techreborn.dust.ashes.name=Cendres -item.techreborn.dust.basalt.name=Poudre de basalt -item.techreborn.dust.bauxite.name=Poudre de bauxite -item.techreborn.dust.biotite.name=poudre de biotite -item.techreborn.dust.brass.name=Poudre de laiton -item.techreborn.dust.bronze.name=Poudre de bronze -item.techreborn.dust.cadmium.name=Poudre de cadmium -item.techreborn.dust.calcite.name=Poudre de calcite -item.techreborn.dust.charcoal.name=Poudre de charbon de bois -item.techreborn.dust.chrome.name=Poudre de chrome -item.techreborn.dust.cinnabar.name=Poudre de cinabre -item.techreborn.dust.clay.name=Poudre d'argile -item.techreborn.dust.coal.name=Poudre de charbon -item.techreborn.dust.cobalt.name=Poudre de cobalt -item.techreborn.dust.copper.name=Poudre de cuivre -item.techreborn.dust.cupronickel.name=Poudre de cupronickel -item.techreborn.dust.darkAshes.name=Cendres sombres -item.techreborn.dust.darkIron.name=Poudre de fer sombre -item.techreborn.dust.diamond.name=Poudre de diamant -item.techreborn.dust.electrum.name=Poudre d'électrum -item.techreborn.dust.emerald.name=Poudre d'émeraude -item.techreborn.dust.enderEye.name=Poudre d'oeil du néant -item.techreborn.dust.enderPearl.name=Poudre de perle du néant -item.techreborn.dust.endstone.name=Poudre de pierre du néant -item.techreborn.dust.flint.name=Poudre de silex -item.techreborn.dust.gold.name=Poudre d'or -item.techreborn.dust.graphite.name=Poudre de graphite -item.techreborn.dust.grossular.name=Poudre de grossularite -item.techreborn.dust.indium.name=Poudre d'indium -item.techreborn.dust.invar.name=Poudre d'invar -item.techreborn.dust.iridium.name=Poudre d'iridium -item.techreborn.dust.iron.name=Poudre de fer -item.techreborn.dust.kanthal.name=Poudre de kanthal -item.techreborn.dust.lapis.name=Poudre de lapis lazuli -item.techreborn.dust.lazurite.name=Poudre de lazurite -item.techreborn.dust.lead.name=Poudre de plomb -item.techreborn.dust.limestone.name=Poudre de calcaire -item.techreborn.dust.lodestone.name=Aimant naturel -item.techreborn.dust.magnesium.name=Poudre de magnésium -item.techreborn.dust.magnetite.name=Poudre de magnétite -item.techreborn.dust.manganese.name=Poudre de manganèse -item.techreborn.dust.manyullyn.name=Poudre de manyullyn -item.techreborn.dust.marble.name=Poudre de marbre -item.techreborn.dust.mithril.name=Poudre de mithril -item.techreborn.dust.netherrack.name=Poudre de pierre du nether -item.techreborn.dust.nichrome.name=Poudre de nichrome -item.techreborn.dust.nickel.name=Poudre de nickel -item.techreborn.dust.obsidian.name=Poudre d'obsidienne -item.techreborn.dust.osmium.name=Poudre d'osmium -item.techreborn.dust.peridot.name=Péridot -item.techreborn.dust.phosphorous.name=Poudre phosphoré -item.techreborn.dust.platinum.name=Poudre de platine -item.techreborn.dust.potassiumFeldspar.name=Poudre de feldspaths potassiques -item.techreborn.dust.pyrite.name=Poudre de pyrite -item.techreborn.dust.pyrope.name=Poudre de pyrope -item.techreborn.dust.redGarnet.name=Poudre de grenat rouge -item.techreborn.dust.redrock.name=Poudre de roche rouge -item.techreborn.dust.ruby.name=Poudre de rubis -item.techreborn.dust.saltpeter.name=Poudre de salpètre -item.techreborn.dust.sapphire.name=Poudre de saphir -item.techreborn.dust.silicon.name=Poudre de silicium -item.techreborn.dust.silver.name=Poudre d'argent -item.techreborn.dust.sodalite.name=Poudre de sodalite -item.techreborn.dust.spessartine.name=Poudre de spessartine -item.techreborn.dust.sphalerite.name=Poudre de sphalérite -item.techreborn.dust.steel.name=Poudre d'acier -item.techreborn.dust.sulfur.name=Poudre de souffre -item.techreborn.dust.tellurium.name=Poudre de tellure -item.techreborn.dust.teslatite.name=Poudre de teslatite -item.techreborn.dust.tetrahedrite.name=Poudre de tétrahédrite -item.techreborn.dust.tin.name=Poudre d'étain -item.techreborn.dust.titanium.name=Poudre de titane -item.techreborn.dust.tungsten.name=Poudre de tungstène -item.techreborn.dust.uvarovite.name=Poudre de uvarovite -item.techreborn.dust.vinteum.name=Poudre de vinteum -item.techreborn.dust.voidstone.name=Poudre de pierre du néant -item.techreborn.dust.yellowGarnet.name=Poudre de grenat jaune -item.techreborn.dust.zinc.name=Poudre de zinc -item.techreborn.dust.galena.name=Poudre de galène -item.techreborn.dust.greenSapphire.name=Poudre de saphir vert -item.techreborn.dust.sawDust.name=Sciure - - -#Small Dusts -item.techreborn.dustsmall.Almandine.name=Petit tas de poudre d'almandine -item.techreborn.dustsmall.AluminumBrass.name=Petit tas de poudre de laiton d'aluminium -item.techreborn.dustsmall.Aluminum.name=Petit tas de poudre d'aluminium -item.techreborn.dustsmall.Alumite.name=Petit tas de poudre d'alumite -item.techreborn.dustsmall.Andradite.name=Petit tas de poudre d'andradite -item.techreborn.dustsmall.Antimony.name=Petit tas de poudre d'antimoine -item.techreborn.dustsmall.Ardite.name=Petit tas de poudre d'ardite -item.techreborn.dustsmall.Ashes.name=Petit tas de cendres -item.techreborn.dustsmall.Basalt.name=Petit tas de poudre de basalt -item.techreborn.dustsmall.Bauxite.name=Petit tas de poudre de bauxite -item.techreborn.dustsmall.Biotite.name=Petit tas de poudre de biotite -item.techreborn.dustsmall.Brass.name=Petit tas de poudre de laiton -item.techreborn.dustsmall.Bronze.name=Petit tas de poudre de bronze -item.techreborn.dustsmall.Cadmium.name=Petit tas de poudre de cadmium -item.techreborn.dustsmall.Calcite.name=Petit tas de poudre de calcite -item.techreborn.dustsmall.Charcoal.name=Petit tas de poudre de charbon de bois -item.techreborn.dustsmall.Chrome.name=Petit tas de poudre de chrome -item.techreborn.dustsmall.Cinnabar.name=Petit tas de poudre de cinabre -item.techreborn.dustsmall.Clay.name=Petit tas de poudre d'argile -item.techreborn.dustsmall.Coal.name=Petit tas de poudre de charbon -item.techreborn.dustsmall.Cobalt.name=Petit tas de poudre Cobalt Dust -item.techreborn.dustsmall.Copper.name=Petit tas de poudre de cuivre -item.techreborn.dustsmall.Cupronickel.name=Petit tas de poudre de cupronickel -item.techreborn.dustsmall.DarkAshes.name=Petit tas de cendres sombres -item.techreborn.dustsmall.DarkIron.name=Petit tas de poudre de fer sombre -item.techreborn.dustsmall.Diamond.name=Petit tas de poudre de diamant -item.techreborn.dustsmall.Electrum.name=Petit tas de poudre d'électrum -item.techreborn.dustsmall.Emerald.name=Petit tas de poudre d'émeraude -item.techreborn.dustsmall.EnderEye.name=Petit tas de poudre d'oeil du néant -item.techreborn.dustsmall.EnderPearl.name=Petit tas de poudre de perle du néant -item.techreborn.dustsmall.Endstone.name=Petit tas de poudre de pierre du néant -item.techreborn.dustsmall.Flint.name=Petit tas de poudre de silex -item.techreborn.dustsmall.Glowstone.name=Petit tas de poudre de pierre lumineuse -item.techreborn.dustsmall.Gold.name=Petit tas de poudre d'or -item.techreborn.dustsmall.Graphite.name=Petit tas de poudre de graphite -item.techreborn.dustsmall.Grossular.name=Petit tas de poudre de grossularite -item.techreborn.dustsmall.Gunpowder.name=Petit tas de poudre à canon -item.techreborn.dustsmall.Indium.name=Petit tas de poudre d'indium -item.techreborn.dustsmall.Invar.name=Petit tas de poudre d'invar -item.techreborn.dustsmall.Iridium.name=Petit tas de poudre d'iridium -item.techreborn.dustsmall.Iron.name=Petit tas de poudre de fer -item.techreborn.dustsmall.Kanthal.name=Petit tas de poudre de kanthal -item.techreborn.dustsmall.Lapis.name=Petit tas de poudre de lapis lazuli -item.techreborn.dustsmall.Lazurite.name=Petit tas de poudre de lazurite -item.techreborn.dustsmall.Lead.name=Petit tas de poudre de plomb -item.techreborn.dustsmall.Limestone.name=Petit tas de poudre de calcaire -item.techreborn.dustsmall.Lodestone.name=Petit tas de poudre d'aimant naturel -item.techreborn.dustsmall.Magnesium.name=Petit tas de poudre de magnésium -item.techreborn.dustsmall.Magnetite.name=Petit tas de poudre de magnétite -item.techreborn.dustsmall.Manganese.name=Petit tas de poudre de manganèse -item.techreborn.dustsmall.Manyullyn.name=Petit tas de poudre de manyullyn -item.techreborn.dustsmall.Marble.name=Petit tas de poudre de marbre -item.techreborn.dustsmall.Mithril.name=Petit tas de poudre de mithril -item.techreborn.dustsmall.Netherrack.name=Petit tas de poudre de pierre du nether -item.techreborn.dustsmall.Nichrome.name=Petit tas de poudre de nichrome -item.techreborn.dustsmall.Nickel.name=Petit tas de poudre de nickel -item.techreborn.dustsmall.Obsidian.name=Petit tas de poudre d'obsidienne -item.techreborn.dustsmall.Osmium.name=Petit tas de poudre d'osmium -item.techreborn.dustsmall.Peridot.name=Petit tas de péridot -item.techreborn.dustsmall.Phosphorous.name=Petit tas de poudre phosphoré -item.techreborn.dustsmall.Platinum.name=Petit tas de poudre de platine -item.techreborn.dustsmall.PotassiumFeldspar.name=Petit tas de poudre de feldspaths potassiques -item.techreborn.dustsmall.Pyrite.name=Petit tas de poudre de pyrite -item.techreborn.dustsmall.Pyrope.name=Petit tas de poudreof de pyrope -item.techreborn.dustsmall.RedGarnet.name=Petit tas de poudre de grenat rouge -item.techreborn.dustsmall.Redrock.name=Petit tas de poudre de roche rouge -item.techreborn.dustsmall.Redstone.name=Petit tas de redstone -item.techreborn.dustsmall.Ruby.name=Petit tas de poudre de rubis -item.techreborn.dustsmall.Saltpeter.name=Petit tas de poudre de salpètre -item.techreborn.dustsmall.Sapphire.name=Petit tas de poudre de saphir -item.techreborn.dustsmall.Silicon.name=Petit tas de poudre de silicium -item.techreborn.dustsmall.Silver.name=Petit tas de poudre d'argent -item.techreborn.dustsmall.Sodalite.name=Petit tas de poudre de sodalite -item.techreborn.dustsmall.Spessartine.name=Petit tas de poudre de spessartine -item.techreborn.dustsmall.Sphalerite.name=Petit tas de poudre de sphalérite -item.techreborn.dustsmall.Steel.name=Petit tas de poudre d'acier -item.techreborn.dustsmall.Sulfur.name=Petit tas de poudre de souffre -item.techreborn.dustsmall.Tellurium.name=Petit tas de poudre de tellure -item.techreborn.dustsmall.Teslatite.name=Petit tas de poudre de teslatite -item.techreborn.dustsmall.Tetrahedrite.name=Petit tas de poudre de tétrahédrite -item.techreborn.dustsmall.Tin.name=Petit tas de poudre d'étain -item.techreborn.dustsmall.Titanium.name=Petit tas de poudre de titane -item.techreborn.dustsmall.Tungsten.name=Petit tas de poudre de tungstène -item.techreborn.dustsmall.Uvarovite.name=Petit tas de poudre de uvarovite -item.techreborn.dustsmall.Vinteum.name=Petit tas de poudre de vinteum -item.techreborn.dustsmall.Voidstone.name=Petit tas de poudre de pierre du néant -item.techreborn.dustsmall.YellowGarnet.name=Petit tas de poudre de grenat jaune -item.techreborn.dustsmall.Zinc.name=Petit tas de poudre de zinc -item.techreborn.dustsmall.Galena.name=Petit tas de poudre de galène - -#Cells -item.techreborn.cell.Berylium.name=Cellule de bérylium -item.techreborn.cell.biomass.name=Cellule de biomass -item.techreborn.cell.calciumCarbonate.name=Cellule de carbonate de calcium -item.techreborn.cell.calcium.name=Cellule de calcium -item.techreborn.cell.carbon.name=Cellule de carbone -item.techreborn.cell.chlorine.name=Chlorine chlore -item.techreborn.cell.deuterium.name=Cellule de deutérium -item.techreborn.cell.diesel.name=Cellule de diesel -item.techreborn.cell.ethanol.name=Cellule d'éthanol -item.techreborn.cell.glyceryl.name=Cellule de glycéryle -item.techreborn.cell.helium3.name=Cellule d'hélium3 -item.techreborn.cell.helium.name=Cellule d'hélium -item.techreborn.cell.heliumPlasma.name=Cellule de plasma d'hélium -item.techreborn.cell.hydrogen.name=Cellule d'hydrogène -item.techreborn.cell.ice.name=Cellule de glace -item.techreborn.cell.lithium.name=Cellule de lithium -item.techreborn.cell.mercury.name=Cellule de mercure -item.techreborn.cell.methane.name=Cellule de méthane -item.techreborn.cell.nitrocarbon.name=Cellule de nitrocarbone -item.techreborn.cell.nitroCoalfuel.name=Cellule de carburant nitrocarbonate -item.techreborn.cell.nitroDiesel.name=Cellule de nitro diesel -item.techreborn.cell.nitrogen.name=Cellule d'azote -item.techreborn.cell.nitrogenDioxide.name=Cellule de dioxyde d'azote -item.techreborn.cell.oil.name=Cellule de pétrole -item.techreborn.cell.potassium.name=Cellule de potassium -item.techreborn.cell.seedOil.name=Cellule d'huile végétale -item.techreborn.cell.silicon.name=Cellule de silicon -item.techreborn.cell.sodium.name=Cellule de sodium -item.techreborn.cell.sodiumPersulfate.name=Cellule de persulfate de sodium -item.techreborn.cell.sodiumSulfide.name=Cellule de sulfate de sodium -item.techreborn.cell.sulfur.name=Cellule de souffre -item.techreborn.cell.sulfuricAcid.name=Cellule d'acide sulfurique -item.techreborn.cell.tritium.name=Cellule de tritium -item.techreborn.cell.wolframium.name=Cellule de wolframium -item.techreborn.cell.empty.name=Cellule vide - -#Gems -item.techreborn.gem.ruby.name=Rubis -item.techreborn.gem.sapphire.name=Saphir -item.techreborn.gem.peridot.name=Saphir vert -item.techreborn.gem.redGarnet.name=Grenat rouge -item.techreborn.gem.yellowGarnet.name=Grenat Jaune - -#Ingots -item.techreborn.ingot.aluminum.name=Lingot d'aluminum -item.techreborn.ingot.antimony.name=Lingot d'antimoine -item.techreborn.ingot.batteryAlloy.name=Lingot d'alliage de batterie -item.techreborn.ingot.redAlloy.name=Lingot d'alliage rouge -item.techreborn.ingot.blueAlloy.name=Lingot d'alliage bleu -item.techreborn.ingot.brass.name=Lingot de laiton -item.techreborn.ingot.bronze.name=Lingot de bronze -item.techreborn.ingot.cadmium.name=Lingot de cadmium -item.techreborn.ingot.chrome.name=Lingot de chrome -item.techreborn.ingot.copper.name=Lingot de cuivre -item.techreborn.ingot.cupronickel.name=Lingot de cupronickel -item.techreborn.ingot.electrum.name=Lingot d'électrum -item.techreborn.ingot.indium.name=Lingot d'indium -item.techreborn.ingot.invar.name=Lingot d'invar -item.techreborn.ingot.iridium.name=Lingot d'iridium -item.techreborn.ingot.kanthal.name=Lingot de kanthal -item.techreborn.ingot.lead.name=Lingot de plomb -item.techreborn.ingot.lodestone.name=Lingot d'aimant naturel -item.techreborn.ingot.magnalium.name=Lingot de magnalium -item.techreborn.ingot.nichrome.name=Lingot de nichrome -item.techreborn.ingot.nickel.name=Lingot de nickel -item.techreborn.ingot.osmium.name=Lingot d'osmium -item.techreborn.ingot.platinum.name=Lingot de platine -item.techreborn.ingot.silver.name=Lingot d'argent -item.techreborn.ingot.steel.name=Lingot d'acier -item.techreborn.ingot.tellurium.name=Lingot de tellure -item.techreborn.ingot.tin.name=Lingot d'étain -item.techreborn.ingot.titanium.name=Lingot de titane -item.techreborn.ingot.tungsten.name=Lingot de tungstène -item.techreborn.ingot.hotTungstensteel.name=Lingot d'acier au tungstène chaud -item.techreborn.ingot.tungstensteel.name=Lingot d'acier au tungstène -item.techreborn.ingot.zinc.name=Lingot de zinc - -#Nuggets -item.techreborn.nuggets.aluminum.name=Pépite d'aluminum -item.techreborn.nuggets.antimony.name=Pépite d'antimoine -item.techreborn.nuggets.brass.name=Pépite de laiton -item.techreborn.nuggets.bronze.name=Pépite de bronze -item.techreborn.nuggets.chrome.name=Pépite de chrome -item.techreborn.nuggets.copper.name=Pépite de cuivre -item.techreborn.nuggets.electrum.name=Pépite d'électrum -item.techreborn.nuggets.invar.name=Pépite d'invar -item.techreborn.nuggets.iridium.name=Pépite d'iridium -item.techreborn.nuggets.iron.name=Pépite de fer -item.techreborn.nuggets.lead.name=Pépite de plomb -item.techreborn.nuggets.nickel.name=Pépite de nickel -item.techreborn.nuggets.osmium.name=Pépite d'osmium -item.techreborn.nuggets.platinum.name=Pépite de platine -item.techreborn.nuggets.silver.name=Pépite d'argent -item.techreborn.nuggets.steel.name=Pépite d'acier -item.techreborn.nuggets.tin.name=Pépite d'étain -item.techreborn.nuggets.titanium.name=Pépite de titane -item.techreborn.nuggets.tungsten.name=Pépite de tungstène -item.techreborn.nuggets.zinc.name=Pépite de zinc - -#Crushed Ore -item.techreborn.crushedore.Aluminum.name=Minerai d'aluminum écrasé -item.techreborn.crushedore.Ardite.name=Minerai d'ardite écrasé -item.techreborn.crushedore.Bauxite.name=Minerai de bauxite écrasé -item.techreborn.crushedore.Cadmium.name=Minerai de cadmium écrasé -item.techreborn.crushedore.Cinnabar.name=Minerai de cinabre écrasé -item.techreborn.crushedore.Cobalt.name=Minerai de cobalt écrasé -item.techreborn.crushedore.DarkIron.name=Minerai de fer sombre écrasé -item.techreborn.crushedore.Indium.name=Minerai d'indium écrasé -item.techreborn.crushedore.Iridium.name=Minerai d'iridium écrasé -item.techreborn.crushedore.Nickel.name=Minerai de nickel écrasé -item.techreborn.crushedore.Osmium.name=Minerai d'osmium écrasé -item.techreborn.crushedore.Platinum.name=Minerai de platine écrasé -item.techreborn.crushedore.Pyrite.name=Minerai de pyrite écrasé -item.techreborn.crushedore.Sphalerite.name=Minerai de sphalérite écrasé -item.techreborn.crushedore.Tetrahedrite.name=Minerai de tétrahédrite écrasé -item.techreborn.crushedore.Tungsten.name=Minerai de tungstène écrasé -item.techreborn.crushedore.Galena.name=Minerai de galène écrasé - -#Purified Crushed Ore -item.techreborn.purifiedcrushedore.Aluminum.name=Minerai d'aluminum écrasé purifié -item.techreborn.purifiedcrushedore.Ardite.name=Minerai d'ardite écrasé purifié -item.techreborn.purifiedcrushedore.Bauxite.name=Minerai de bauxite écrasé purifié -item.techreborn.purifiedcrushedore.Cadmium.name=Minerai de cadmium écrasé purifié -item.techreborn.purifiedcrushedore.Cinnabar.name=Minerai de cinabre écrasé purifié -item.techreborn.purifiedcrushedore.Cobalt.name=Minerai de cobalt écrasé purifié -item.techreborn.purifiedcrushedore.DarkIron.name=Minerai de fer sombre écrasé purifié -item.techreborn.purifiedcrushedore.Indium.name=Minerai d'indium écrasé purifié -item.techreborn.purifiedcrushedore.Iridium.name=Minerai d'iridium écrasé purifié -item.techreborn.purifiedcrushedore.Nickel.name=Minerai de nickel écrasé purifié -item.techreborn.purifiedcrushedore.Osmium.name=Minerai d'osmium écrasé purifié -item.techreborn.purifiedcrushedore.Platinum.name=Minerai de platine écrasé purifié -item.techreborn.purifiedcrushedore.Pyrite.name=Minerai de pyrite écrasé purifié -item.techreborn.purifiedcrushedore.Sphalerite.name=Minerai de sphalérite écrasé purifié -item.techreborn.purifiedcrushedore.Tetrahedrite.name=Minerai de tétrahédrite écrasé purifié -item.techreborn.purifiedcrushedore.Tungsten.name=Minerai de tungstène écrasé purifié -item.techreborn.purifiedcrushedore.Galena.name=Minerai de galène écrasé purifié - -#Plates -item.techreborn.plate.aluminum.name=Plaque d'aluminum -item.techreborn.plate.batteryAlloy.name=Plaque d'alliage de batterie -item.techreborn.plate.brass.name=Plaque de laiton -item.techreborn.plate.bronze.name=Plaque de bronze -item.techreborn.plate.carbon.name=Plaque de carbone -item.techreborn.plate.coal.name=Plaque de charbon -item.techreborn.plate.chrome.name=Plaque de chrome -item.techreborn.plate.copper.name=Plaque de cuivre -item.techreborn.plate.diamond.name=Plaque de diamant -item.techreborn.plate.electrum.name=Plaque d'électrum -item.techreborn.plate.emerald.name=Plaque d'émeraude -item.techreborn.plate.gold.name=Plaque d'or -item.techreborn.plate.invar.name=Plaque d'invar -item.techreborn.plate.iridium.name=Plaque d'iridium -item.techreborn.plate.iron.name=Plaque de fer -item.techreborn.plate.lapis.name=Plaque de lapis lazuli -item.techreborn.plate.lead.name=Plaque de plomb -item.techreborn.plate.magnalium.name=Plaque de magnalium -item.techreborn.plate.nickel.name=Plaque de nickel -item.techreborn.plate.obsidian.name=Plaque d'obsidian -item.techreborn.plate.osmium.name=Plaque d'osmium -item.techreborn.plate.peridot.name=Plaque de péridot -item.techreborn.plate.platinum.name=Plaque de platine -item.techreborn.plate.redGarnet.name=Plaque de grenat rouge -item.techreborn.plate.redstone.name=Plaque de redstone -item.techreborn.plate.ruby.name=Plaque de rubis -item.techreborn.plate.sapphire.name=Plaque de saphir -item.techreborn.plate.silicon.name=Plaque de silicium -item.techreborn.plate.silver.name=Plaque d'argent -item.techreborn.plate.steel.name=Plaque d'acier -item.techreborn.plate.teslatite.name=Plaque de teslatite -item.techreborn.plate.tin.name=Plaque d'étain -item.techreborn.plate.titanium.name=Plaque de titane -item.techreborn.plate.tungsten.name=Plaque de tungstène -item.techreborn.plate.tungstensteel.name=Plaque d'acier au tungstène -item.techreborn.plate.yellowGarnet.name=Plaque de grenat jaune -item.techreborn.plate.zinc.name=Plaque de zinc - -#Parts -item.techreborn.part.advancedCircuitParts.name=Pièces de circuit avancé -item.techreborn.part.basicCircuitBoard.name=Circuit imprimé de base -item.techreborn.part.advancedCircuitBoard.name=Circuit imprimé avancé -item.techreborn.part.processorCircuitBoard.name=Circuit imprimé du processeur -item.techreborn.part.energyFlowCircuit.name=Circuit de flux énergétique -item.techreborn.part.dataControlCircuit.name=Circuit de contrôle des données -item.techreborn.part.dataOrb.name=Orbe de données -item.techreborn.part.dataStorageCircuit.name=Circuit de stockage des données -item.techreborn.part.diamondGrindingHead.name=Tête de broyeur en diamant -item.techreborn.part.diamondSawBlade.name=Lame de scie en diamant -item.techreborn.part.tungstenGrindingHead.name=Tête de broyeur en tungstène -item.techreborn.part.heliumCoolantSimple.name=Cellule 60k de refroisissement à l'hélium -item.techreborn.part.heliumCoolantTriple.name=Cellule 180k de refroisissement à l'hélium -item.techreborn.part.heliumCoolantSix.name=Cellule 360k de refroisissement à l'hélium -item.techreborn.part.NaKCoolantSimple.name=Cellule 60k de refroisissement au NaK -item.techreborn.part.NaKCoolantTriple.name=Cellule 180k de refroisissement au NaK -item.techreborn.part.NaKCoolantSix.name=Cellule 360k de refroisissement au NaK -item.techreborn.part.cupronickelHeatingCoil.name=Réchauffeur en cupronickel -item.techreborn.part.nichromeHeatingCoil.name=Réchauffeur en nichrome -item.techreborn.part.kanthalHeatingCoil.name=Réchauffeur en kanthal -item.techreborn.part.steelGear.name=Engrenage en acier -item.techreborn.part.tungstensteelGear.name=Engrenage en acier au tungstène -item.techreborn.part.laserFocus.name=Foyer de laser -item.techreborn.part.ductTape.name=Ruban adhésif renforcé aérospatial avancé FAL-84 -item.techreborn.part.lazuriteChunk.name=Parchelle de lazurite -item.techreborn.part.iridiumAlloyIngot.name=Lingot d'alliage d'iridium -item.techreborn.part.rockCutterBlade.name=Lame de coupe-roche -item.techreborn.part.superConductor.name=Superconducteur -item.techreborn.part.thoriumCell.name=Tige de carburant (Thorium) -item.techreborn.part.doubleThoriumCell.name=Double tige de carburant (Thorium) -item.techreborn.part.quadThoriumCell.name=Quadruple tige de carburant (Thorium) -item.techreborn.part.plutoniumCell.name=Tige de carburant (Plutonium) -item.techreborn.part.doublePlutoniumCell.name=Double tige de carburant (Plutonium) -item.techreborn.part.quadPlutoniumCell.name=Quadruple tige de carburant (Plutonium) -item.techreborn.part.destructoPack.name=Destructeur de paquet -item.techreborn.part.iridiumNeutronReflector.name=Réflecteur de neutron en iridium -item.techreborn.part.massHoleDevice.name=Dispositif de trou massif -item.techreborn.part.computerMonitor.name=Console d'ordinateur -item.techreborn.part.machineParts.name=Pièces de machine -item.techreborn.part.neutronReflector.name=Réflecteur de neutron -item.techreborn.part.thickNeutronReflector.name=Réflecteur de neutron épais - -#Tools -item.techreborn.rockcutter.name=Foreuse -item.techreborn.lithiumbatpack.name=Propulseur au lithium -item.techreborn.lapotronpack.name=Packet de lapoton -item.techreborn.omniTool.name=Multi-outil -item.techreborn.advancedDrill.name=Foret avancé -item.techreborn.lapotronicorb.name=Orbe d'énergie Lapotronique -item.techreborn.cloakingdevice.name=Dispositif de dissimulation - -#Buckets -item.bucketberylium.name=Seau de berylium -item.bucketcalcium.name=Seau de calcium -item.bucketcalciumcarbonate.name=Seau de carbonate de calcium -item.bucketchlorite.name=Seau de chlorite -item.bucketdeuterium.name=Seau de deutérium -item.bucketglyceryl.name=Seau de glycéryle -item.buckethelium.name=Seau d'hélium -item.buckethelium3.name=Seau d'hélium3 -item.bucketheliumplasma.name=Seau de plasma d'hélium -item.buckethydrogen.name=Seau d'hydrogène -item.bucketlithium.name=Seau de lithium -item.bucketmercury.name=Seau de mercure -item.bucketmethane.name=Seau de méthane -item.bucketnitrocoalfuel.name=Seau de carburant nitrocarbonate -item.bucketnitrofuel.name=Seau de carburant azote -item.bucketnitrogen.name=Seau d'azote -item.bucketnitrogendioxide.name=Seau de dioxyde d'azote -item.bucketpotassium.name=Seau de potassium -item.bucketsilicon.name=Seau de silicium -item.bucketsodium.name=Seau de sodium -item.bucketsodiumpersulfate.name=Seau de persulfate de sodium -item.buckettritium.name=Seau de tritium -item.bucketwolframium.name=Seau de wolfanium - -#Items -item.techreborn.uuMatter.name=Matière UU -item.techreborn.pda.name=PDA - -#Configs -config.techreborn.allow.galenaOre=Permet le minerai de galène -config.techreborn.allow.galenaOre.tooltip=Decidez si le minerai de galène est généré ou pas -config.techreborn.allow.iridiumOre=Permet le minerai d'iridium -config.techreborn.allow.iridiumOre.tooltip=Decidez si le minerai d'iridium est généré ou pas -config.techreborn.allow.rubyOre=Permet le minerai de rubis -config.techreborn.allow.rubyOre.tooltip=Decidez si le minerai de rubis est généré ou pas -config.techreborn.allow.sapphireOre=Permet le minerai de saphir -config.techreborn.allow.sapphireOre.tooltip=Decidez si le minerai de saphir est généré ou pas -config.techreborn.allow.bauxiteOre=Permet le minerai de bauxite -config.techreborn.allow.bauxiteOre.tooltip=Decidez si le minerai de bauxite est généré ou pas -config.techreborn.allow.copperOre=Permet le minerai de cuivre -config.techreborn.allow.copperOre.tooltip=Decidez si le minerai de cuivre est généré ou pas -config.techreborn.allow.tinOre=Permet le minerai d'étain -config.techreborn.allow.tinOre.tooltip=Decidez si le minerai d'étain est généré ou pas -config.techreborn.allow.leadOre=Permet le minerai de plomb -config.techreborn.allow.leadOre.tooltip=Decidez si le minerai de plomb est généré ou pas -config.techreborn.allow.silverOre=Permet le minerai d'argent -config.techreborn.allow.silverOre.tooltip=Decidez si le minerai d'argent est généré ou pas -config.techreborn.allow.pyriteOre=Permet le minerai de pyrite -config.techreborn.allow.pyriteOre.tooltip=Decidez si le minerai de pyrite est généré ou pas -config.techreborn.allow.cinnabarOre=Permet le minerai de cinabre -config.techreborn.allow.cinnabarOre.tooltip=Decidez si le minerai de cinabre est généré ou pas -config.techreborn.allow.sphaleriteOre=Permet le minerai de sphalérite -config.techreborn.allow.sphaleriteOre.tooltip=Decidez si le minerai de sphalérite est généré ou pas -config.techreborn.allow.tungstenOre=Permet le minerai de tungstène -config.techreborn.allow.tungstenOre.tooltip=Decidez si le minerai de tungstène est généré ou pas -config.techreborn.allow.sheldoniteOre=Permet le minerai de sheldonite -config.techreborn.allow.sheldoniteOre.tooltip=Decidez si le minerai de sheldonite est généré ou pas -config.techreborn.allow.olivineOre=Permet le minerai d'olivine -config.techreborn.allow.olivineOre.tooltip=Decidez si le minerai d'olivine est généré ou pas -config.techreborn.allow.sodaliteOre=Permet le minerai de sodalite -config.techreborn.allow.sodaliteOre.tooltip=Decidez si le minerai de sodalite est généré ou pas - -config.techreborn.fortuneSecondaryOreMultiplierPerLevel=Effet de fortune sur les secondaires -config.techreborn.fortuneSecondaryOreMultiplierPerLevel.tooltip=Quelle part d'augmentation devrait avoir chaque niveau de fortune sur des minerais secondaires obtenus ? - -config.techreborn.allowExpensiveMacerator=Autorisez un macérateur couteux -config.techreborn.allowExpensiveMacerator.tooltip= -config.techreborn.allowExpensiveDrill=Autorisez un foret couteux -config.techreborn.allowExpensiveDrill.tooltip= -config.techreborn.allowExpensiveDiamondDrill=Autorisez un foret diamant couteux -config.techreborn.allowExpensiveDiamondDrill.tooltip= -config.techreborn.allowExpensiveSolarPanels=Autorisez des panneaux solaires couteux -config.techreborn.allowExpensiveSolarPanels.tooltip= - -config.techreborn.advancedDrillTier=Niveau énergétique du foret avancé -config.techreborn.advancedDrillTier.tooltip= -config.techreborn.lapotronPackTier=Niveau énergétique du packet de lapoton -config.techreborn.lapotronPackTier.tooltip= -config.techreborn.lithiumBatpackTier=niveau énergétique du propulseur au lithium -config.techreborn.lithiumBatpackTier.tooltip= -config.techreborn.omniToolTier=Niveau énergétique du multi-outil -config.techreborn.omniToolTier.tooltip= -config.techreborn.rockCutterTier=Niveau énergétique de la foreuse -config.techreborn.rockCutterTier.tooltip= -config.techreborn.gravityChestplateTier=Niveau énergétique du plastron gravitationel -config.techreborn.gravityChestplateTier.tooltip= -config.techreborn.centrifugeTier=Niveau énergétique de la centrifugeuse -config.techreborn.centrifugeTier.tooltip= -config.techreborn.thermalGeneratorTier=Niveau énergétique du générateur thermique -config.techreborn.thermalGeneratorTier.tooltip= - -config.techreborn.thermalGeneratorPower=Sortie du générateur thermique -config.techreborn.thermalGeneratorPower.tooltip= -config.techreborn.centrifugePowerUsage=Entrée par tic de la centrifugeuse -config.techreborn.centrifugePowerUsage.tooltip= - -config.techreborn.advancedDrillMaxCharge=Charge maximale du foret avancé -config.techreborn.advancedDrillMaxCharge.tooltip= -config.techreborn.lapotronPackMaxCharge=Charge maximale du packet de lapotron -config.techreborn.lapotronPackMaxCharge.tooltip= -config.techreborn.omniToolMaxCharge=Charge maximale du multi-outil -config.techreborn.omniToolMaxCharge.tooltip= -config.techreborn.lithiumBatpackMaxCharge=Charge maximale du propulseur au lithium -config.techreborn.lithiumBatpackMaxCharge.tooltip= -config.techreborn.rockCutterMaxCharge=Charge maximale de la foreuse -config.techreborn.rockCutterMaxCharge.tooltip= -config.techreborn.gravityChestplateMaxCharge=Charge maximale du plastron gravitationel -config.techreborn.gravityChestplateMaxCharge.tooltip= -config.techreborn.centrifugeMaxCharge=Charge maximale de la centrifugeuse -config.techreborn.centrifugeMaxCharge.tooltip= -config.techreborn.thermalGeneratorMaxCharge=Charge maximale du générateur thermique -config.techreborn.thermalGeneratorMaxCharge.tooltip= -config.techreborn.aveargeEuOutTickTim=Temps de sortie d'EU -config.techreborn.aveargeEuOutTickTime.tooltip=Combien de fois par tic mettre à jour l'UE -config.techreborn.euPerRF=Convertion des EU -config.techreborn.euPerRF.tooltip=Quantité de RF pour 1 EU. Par défaut 4, donc 4RF == 1EU et .25EU == 1RF -config.techreborn.farmeu=Ferme EU par Tic -config.techreborn.farmeu.tooltip=Quantité de eu utilisé par tic par la ferme -config.techreborn.enableRF=Active le support RF -config.techreborn.enableRF.tooltip= Active le support RF pour toutes les machines. -config.techreborn.enableEU=Active le support EU -config.techreborn.enableEU.tooltip= Active le support EU pour toutes les machines. -config.techreborn.connectTextures=Active les textures connectées -config.techreborn.connectTextures.tooltip=Active les textures connectées -config.techreborn.rainExplosions=Active les explosions de machine quand la pluie touche -config.techreborn.rainExplosions.tooltip= Lorque ceci est activé,les machines exploserons lorsqu'elles seront en contact avec la pluie. -config.techreborn.allowExpensiveWatermill.tooltip= Autoriser le moulin à eau cher -config.techreborn.allowExpensiveWindmill.tooltip= Autoriser le moulin à vent cher -config.techreborn.allowBopRecipes.tooltip= Autoriser les recettes BOP -config.techreborn.allowForestryRecipes.tooltip= Autoriser les recettes Forestry -config.techreborn.allowNaturaRecipes.tooltip= Autoriser les recettes Natura -config.techreborn.aesuMaxOutput.tooltip= Sortie USEA maxi -config.techreborn.aesuMaxStorage.tooltip= Stockage USEA maxi -config.techreborn.baseLesuOutput.tooltip= Sortie USEL de base -config.techreborn.cloakingDeviceEUTick.tooltip= Eu/Tic du dispositif de dissimulation -config.techreborn.cloakingDeviceMaxCharge.tooltip= Charge maxi du dispositif de dissimulation -config.techreborn.cloakingDeviceTier.tooltip= Niveau du dispositif de dissimulation -config.techreborn.dragoneggsiphonerPower.tooltip=Eu/Tic du syphon d'énergie d'oeuf de dragon -config.techreborn.extraOutputPerLesuBlock.tooltip= Sortie suplémentaire du stockage USEL -config.techreborn.heatGeneratorOutput.tooltip= Sortie du générateur de chaleur -config.techreborn.lapotronicOrbMaxCharge= Recharge maxi de l'orbe lapotronique -config.techreborn.lapotronicOrbTier.tooltip= Niveau de l'orbe lapatronique -config.techreborn.lesuStoragePerBlock.tooltip= Sortie suplémentaire du stockage USEL -config.techreborn.showChargehud.tooltip=Monter l'interface de recharge -#Config UU -config.techreborn.allow.UUrecipesAluminumDust= Autoriser les recettes UU pour la poudre d'aluminium -config.techreborn.allow.UUrecipesCoal= Autoriser les recettes UU pour le charbon -config.techreborn.allow.UUrecipesCopperDust= Autoriser les recettes UU pour la poudre de cuivre -config.techreborn.allow.UUrecipesDiamond= Autoriser les recettes UU pour le diamant -config.techreborn.allow.UUrecipesEmerald= Autoriser les recettes UU pour l'émeraude -config.techreborn.allow.UUrecipesEmeraldOre= Autoriser les recettes UU pour le minerai d'émeraude -config.techreborn.allow.UUrecipesGoldDust= Autoriser les recettes UU pour la poudre d'or -config.techreborn.allow.UUrecipesGoldOre= Autoriser les recettes UU pour le minerai d'or -config.techreborn.allow.UUrecipesIronDust= Autoriser les recettes UU pour la poudre de fer -config.techreborn.allow.UUrecipesIronOre= Autoriser les recettes UU pour le minerai de fer -config.techreborn.allow.UUrecipesLapis= Autoriser les recettes UU pour le lapis -config.techreborn.allow.UUrecipesLeadDust= Autoriser les recettes UU pour la poudre de lapis -config.techreborn.allow.UUrecipesPlatinumDust= Autoriser les recettes UU pour le poudre de platine -config.techreborn.allow.UUrecipesRedStone= Autoriser les recettes UU pour la redstone -config.techreborn.allow.UUrecipesResin= Autoriser les recettes UU pour la résine collante -config.techreborn.allow.UUrecipesTinDust= Autoriser les recettes UU pour la poudre d'étain -config.techreborn.allow.UUrecipesTitaniumDust= Autoriser les recettes UU pour la poudre de titane -config.techreborn.allow.UUrecipesTungstenDust= Autoriser les recettes UU pour la poudre de tungstène -config.techreborn.allow.uurecipesBone= Autoriser les recettes UU pour l'os -config.techreborn.allow.uurecipesCactus= Autoriser les recettes UU pour le cactus -config.techreborn.allow.uurecipesCocoa= Autoriser les recettes UU pour le cacao -config.techreborn.allow.uurecipesEnderPearl= Autoriser les recettes UU pour la perle du Néant -config.techreborn.allow.uurecipesFeather= Autoriser les recettes UU pour le feuillage -config.techreborn.allow.uurecipesGlass= Autoriser les recettes UU pour le verre -config.techreborn.allow.uurecipesGlowstoneBlock= Autoriser les recettes UU pour le bloc de pierre lumineuse -config.techreborn.allow.uurecipesGrass= Autoriser les recettes UU pour l'herbe -config.techreborn.allow.uurecipesInk= Autoriser les recettes UU pour le sac d'encre -config.techreborn.allow.uurecipesIridiamOre= Autoriser les recettes UU pour le minerai d'iridiam -config.techreborn.allow.uurecipesLava= Autoriser les recettes UU pour la lave -config.techreborn.allow.uurecipesLilypad= Autoriser les recettes UU pour le nénuphar -config.techreborn.allow.uurecipesObsidian= Autoriser les recettes UU pour l'obsidienne -config.techreborn.allow.uurecipesSnowBall= Autoriser les recettes UU pour la boule de neige -config.techreborn.allow.uurecipesSnowBlock= Autoriser les recettes UU pour le bloc de neige -config.techreborn.allow.uurecipesStone= Autoriser les recettes UU pour la pierre -config.techreborn.allow.uurecipesSugarCane= Autoriser les recettes UU pour la canne à sucre -config.techreborn.allow.uurecipesVine= Autoriser les recettes UU pour la vigne -config.techreborn.allow.uurecipesWater= Autoriser les recettes UU pour l'eau -config.techreborn.allow.uurecipesWood= Autoriser les recettes UU pour le bois - -#Config Tooltips UU -config.techreborn.allow.UUrecipesAluminumDust.tooltip= Autoriser les recettes UU pour la poudre d'aluminium -config.techreborn.allow.UUrecipesCoal.tooltip= Autoriser les recettes UU pour le charbon -config.techreborn.allow.UUrecipesCopperDust.tooltip= Autoriser les recettes UU pour la poudre de cuivre -config.techreborn.allow.UUrecipesDiamond.tooltip= Autoriser les recettes UU pour le diamant -config.techreborn.allow.UUrecipesEmerald.tooltip= Autoriser les recettes UU pour l'émeraude -config.techreborn.allow.UUrecipesEmeraldOre.tooltip= Autoriser les recettes UU pour le minerai d'émeraude -config.techreborn.allow.UUrecipesGoldDust.tooltip= Autoriser les recettes UU pour la poudre d'or -config.techreborn.allow.UUrecipesGoldOre.tooltip= Autoriser les recettes UU pour le minerai d'or -config.techreborn.allow.UUrecipesIronDust.tooltip= Autoriser les recettes UU pour la poudre de fer -config.techreborn.allow.UUrecipesIronOre.tooltip= Autoriser les recettes UU pour le minerai de fer -config.techreborn.allow.UUrecipesLapis.tooltip= Autoriser les recettes UU pour le lapis -config.techreborn.allow.UUrecipesLeadDust.tooltip= Autoriser les recettes UU pour la poudre de lapis -config.techreborn.allow.UUrecipesPlatinumDust.tooltip= AlAutoriser les recettes UU pour la poudre de platine -config.techreborn.allow.UUrecipesRedStone.tooltip= Autoriser les recettes UU pour la redstone -config.techreborn.allow.UUrecipesResin.tooltip= Autoriser les recettes UU pour la résine collante -config.techreborn.allow.UUrecipesTinDust.tooltip= Autoriser les recettes UU pour la poudre d'étain -config.techreborn.allow.UUrecipesTitaniumDust.tooltip= Autoriser les recettes UU pour la pourdre de titane -config.techreborn.allow.UUrecipesTungstenDust.tooltip= Autoriser les recettes UU pour la poudre de tungstène -config.techreborn.allow.hiderecipes.tooltip= Cacher les recettes UU dans NEI -config.techreborn.allow.uurecipesBone.tooltip= Autoriser les recettes UU pour l'os -config.techreborn.allow.uurecipesCactus.tooltip= Autoriser les recettes UU pourle cactus -config.techreborn.allow.uurecipesCocoa.tooltip= Autoriser les recettes UU pour le cacao -config.techreborn.allow.uurecipesEnderPearl.tooltip= Autoriser les recettes UU pour la perle du Néant -config.techreborn.allow.uurecipesFeather.tooltip= Autoriser les recettes UU pour le feuillage -config.techreborn.allow.uurecipesGlass.tooltip= Autoriser les recettes UU pour verre -config.techreborn.allow.uurecipesGlowstoneBlock.tooltip= Autoriser les recettes UU pour le bloc de pierre lumineuse -config.techreborn.allow.uurecipesGrass.tooltip= Autoriser les recettes UU pour l'herbe -config.techreborn.allow.uurecipesInk.tooltip= Autoriser les recettes UU pour le sac d'encre -config.techreborn.allow.uurecipesIridiamOre.tooltip= Autoriser les recettes UU pour le minerai d'iridiam -config.techreborn.allow.uurecipesLava.tooltip= Allow Autoriser les recettes UU pour la lave -config.techreborn.allow.uurecipesLilypad.tooltip= Autoriser les recettes UU pour le nénuphar -config.techreborn.allow.uurecipesObsidian.tooltip= Autoriser les recettes UU pour l'obsidienne -config.techreborn.allow.uurecipesSnowBall.tooltip= Autoriser les recettes UU pour la boule de neige -config.techreborn.allow.uurecipesSnowBlock.tooltip= Autoriser les recettes UU pour le bloc de neige -config.techreborn.allow.uurecipesStone.tooltip= Autoriser les recettes UU pour la pierre -config.techreborn.allow.uurecipesSugarCane.tooltip= Autoriser les recettes UU pour la canne à sucre -config.techreborn.allow.uurecipesVine.tooltip= Autoriser les recettes UU pour la vigne -config.techreborn.allow.uurecipesWater.tooltip= Autoriser les recettes UU pour l'eau -config.techreborn.allow.uurecipesWood.tooltip= Autoriser les recettes UU pour le bois - - -config.techreborn.allow.tungstonOre.tooltip= Autoriser les recettes UU pour le minerai de tungstène -config.techreborn.bauxiteOre.rare.tooltip=rareté du minerai de bauxite -config.techreborn.cinnabarOre.rare.tooltip=rareté du minerai de cinnabar -config.techreborn.copperOre.rare.tooltip=rareté du minerai de cuivre -config.techreborn.galenaOre.rare.tooltip=rareté du minerai de galène -config.techreborn.iridiumOre.rare.tooltip=rareté du minerai d'iridium -config.techreborn.leadOre.rare.tooltip=rareté du minerai de plomb -config.techreborn.olivineOre.rare.tooltip=rareté du minerai d'olivine -config.techreborn.pyriteOre.rare.tooltip=rareté du minerai de pyrite -config.techreborn.rubyOre.rare.tooltip=rareté du minerai de rubis -config.techreborn.sapphireOre.rare.tooltip=rareté du minerai de saphir -config.techreborn.sheldoniteOre.rare.tooltip=rareté du minerai de sheldonite -config.techreborn.silverOre.rare.tooltip=rareté du minerai d'argent -config.techreborn.sodaliteOre.rare.tooltip=rareté du minerai de sodalite -config.techreborn.sphaleriteOre.rare.tooltip=rareté du minerai de sphalérite -config.techreborn.tinOre.rare.tooltip=rareté du minerai d'étain -config.techreborn.tungstenOre.rare.tooltip=rareté du minerai de tungstène - -config.techreborn.oreUnifer=Unification des minerai -config.techreborn.oreUnifer.tooltip=Active/Désactive l'unification auto des minerai - -config.techreborn.aesuMaxOutput=Sortie maxi USEA -config.techreborn.aesuMaxStorage=Stockage maxi USEA -config.techreborn.aveargeEuOutTickTime=Temps pour calculer la production moyenne -config.techreborn.baseLesuOutput=Sortie USEL de base -config.techreborn.cloakingDeviceEUTick=Consommation de EU par tic du dispositif de dissimulation -config.techreborn.cloakingDeviceMaxCharge=Charge maxi du dispositif de dissimulation -config.techreborn.cloakingDeviceTier=Niveau du dispositif de dissimulation -config.techreborn.dragoneggsiphonerPower=Sortie Eu du syphon d'énergie d'oeuf de dragon -config.techreborn.extraOutputPerLesuBlock=Bloc d'énergie USEL -config.techreborn.heatGeneratorOutput=Sortie du générateur de chaleur -config.techreborn.lapotronicOrbTier=Niveau de l'orbe lapatronique -config.techreborn.lesuStoragePerBlock=Stockage par bloc de USEL -config.techreborn.showChargehud=Monter l'interface de recharge -config.techreborn.allowExpensiveWatermill=Autoriser le moulin à eau cher -config.techreborn.allowExpensiveWindmill=Autoriser le moulin à vent cher - - -#ConfigGui -config.techreborn.category.general=Options générales -config.techreborn.category.world=Options du monde -config.techreborn.category.power=Options d'énergie -config.techreborn.category.crafting=Options d'artisanat -config.techreborn.category.uu=Options UU -config.techreborn.category.emc=Options EMC -config.techreborn.category.integration=Intégration - -tr.configgui.category.trGeneral.tooltip=Général -tr.configgui.category.trWorld.tooltip=Monde -tr.configgui.category.trPower.tooltip=Énergie -tr.configgui.category.trCrafting.tooltip=Artisanat -tr.configgui.category.truu.tooltip=UU -tr.configgui.category.tremc.tooltip=EMC -tr.configgui.category.treinter.tooltip=Intégration de mod - -#Recipe Handlers -techreborn.recipe.alloysmelter=Recette de four électrique d'alliage -techreborn.recipe.ironalloysmelter=Recette de four en fer d'alliage -techreborn.recipe.assemblingmachine=Recette d'assembleur -techreborn.recipe.blastfurnace=Recette de haut fourneau ind. -techreborn.recipe.centrifuge=Recette de centrifugeuse -techreborn.recipe.grinder=Recette de broyeur ind. -techreborn.recipe.industrialelectrolyzer=Recette d'électrolyseur ind. -techreborn.recipe.industrialsawmill=Recette de scierie -techreborn.recipe.lathe=Recette de tour ind. -techreborn.recipe.platecuttingmachine=Recette de guillotine ind. -techreborn.recipe.chemicalReactor=Recette de réacteur chimique -techreborn.recipe.implosioncompressor=Recette de compresseur à implosion - -#Message -techreborn.message.missingmultiblock=MULTIBLOC MANQUANT - -#Cables -Cable.copperCable.name=Câble de cuivre -Cable.insulatedCopperCable.name=Câble de cuivre insolé -Cable.goldCable.name=Câble d'or -Cable.insulatedGoldCable.name=Câble d'or isolé -Cable.doubleInsulatedGoldCable.name=Câble d'or double-isolé -Cable.ironCable.name=Câble de fer -###Cable.copperCable.name=Copper Cable -Cable.insulatedIronCable.name=Câble de fer isolé -Cable.doubleInsulatedIronCable.name=Câble de fer double-isolé -Cable.trippleInsulatedIronCable.name=Câble de fer triple-isolé -Cable.glassFiberCable.name=Câble de fibre de verre -Cable.tinCable.name=Câble d'étain - -#PDA -techreborn.pda.contents=Sommaire -techreborn.pda.itemspage=Éléments -techreborn.pda.blockspage=Blocs -techreborn.pda.index=Index -techreborn.pda.backbutton=Préc. - -item.techreborn.advancedDrill.description=Cette outil est une version avancée du foret de minage, lorsque cet élément est activé il creusera une zone de 3x3. -tile.techreborn.alloyfurnace.description=Cette machine est votre premier pas dans TechReborn avec elle vous pouvez fusionner les métaux en alliage. Ces alliages pourront être utilisé dans la fabrication de machines de niveau supérieur. -tile.techreborn.alloysmelter.description=Cette machine est une version améliorée du four en fer d'alliage. Ce bloc réclame de l'énergie EU ou RF. -tile.techreborn.assemblingmachine.description=Ce bloc est utilisé pour fabriquer quelques machines plus complexes qui ne pouvent pas être fabriquées dans l'établi normal. -tile.techreborn.blastfurnace.description=Cette machine a besoin de 3x4x3 boitiers de machine devant elle pour augmenter sa chaleur interne. Plus chaud la machine est, plus de recettes vous pourrez faire. Cette machine demande aussi des EU/RF. - -keys.techreborn.category=Catégories TechReborn -keys.techreborn.config=Configuration - -achievement.TechReborn:ore_Pickup=Nouveau minerai ! -achievement.TechReborn:ore_Pickup.desc=Minez un minerai techreborn -achievement.TechReborn:centrifuge_Craft=Il est temps de tourner -achievement.TechReborn:thermalgen_Craft=Il est temps de chauffer diff --git a/src/main/resources/assets/techreborn/lang/ru_RU.lang b/src/main/resources/assets/techreborn/lang/ru_RU.lang deleted file mode 100644 index 0a9610303..000000000 --- a/src/main/resources/assets/techreborn/lang/ru_RU.lang +++ /dev/null @@ -1,1020 +0,0 @@ -item.missingRecipe.name=Missing Recipe Placeholder - -itemGroup.techreborn=Tech Reborn - -#machines -tile.techreborn.gasTurbine.name=Газовая турбина -tile.techreborn.industrialBlock.name=Промышленный -tile.techreborn.thermalGenerator.name=Теплогенератор -tile.techreborn.quantumTank.name=Квантовый бак -tile.techreborn.quantumChest.name=Квантовый сундук -tile.techreborn.digitalChest.name=Цифровой сундук -tile.techreborn.centrifuge.name=Промышленная центрифуга -tile.techreborn.rollingmachine.name=Прокатный стан -tile.techreborn.machineCasing.standard.name=Стандартная обшивка машины -tile.techreborn.machineCasing.reinforced.name=Усиленная обшивка машины -tile.techreborn.machineCasing.advanced.name=Продвинутая обшивка машины -tile.techreborn.blastfurnace.name=Промышленная доменная печь -tile.techreborn.alloysmelter.name=Электрический завод сплавов -tile.techreborn.matterfabricator.name=Завод материи -tile.techreborn.implosioncompressor.name=Implosion Compressor -tile.techreborn.industrialgrinder.name=Промышленный шлифовальный станок -tile.techreborn.chunkloader.name=Промышленный загрузчик чанков -tile.techreborn.magicenergyconverter.name=Конвертер магической энергии -tile.techreborn.dieselgenerator.name=Дизельный генератор -tile.techreborn.industrialelectrolyzer.name=Промышленный электролизер -tile.techreborn.magicenergyabsorber.name=Абсорбер магической энергии -tile.techreborn.assemblingmachine.name=Сборочная машина -tile.techreborn.semifluidgenerator.name=Генератор полужидкости -tile.techreborn.alloyfurnace.name=Железная сплавовая печь -tile.techreborn.chemicalreactor.name=Химический реактор -tile.techreborn.dragoneggsiphoner.name=Сифон энергии драконьего яйца -tile.techreborn.idsu.name=IDSU -tile.techreborn.aesu.name=AESU -tile.techreborn.lesu.name=LESU -tile.techreborn.lesustorage.name=Блок LESU -tile.techreborn.distillationtower.name=Дистилляционная труба -tile.techreborn.electriccraftingtable.name=Электрический автоверстак -tile.techreborn.vacuumfreezer.name=Вакуумная морозилка -tile.techreborn.plasmagenerator.name=Плазменный генератор -tile.techreborn.fusioncontrolcomputer.name=Термоядерный реактор -tile.techreborn.computercube.name=Компьютерный куб TechReborn -tile.techreborn.fusioncoil.name=Термоядерные Катушки -tile.techreborn.lightningrod.name=Молниеотвод -tile.techreborn.assemblinmachine.name=Сборочная машина -tile.techreborn.heatgenerator.name=Тепловой генератор -tile.techreborn.machineFrame.aluminum.name=Алюминиевый корпус машины -tile.techreborn.machineFrame.iron.name=Железный корпус машины -tile.techreborn.machineFrame.bronze.name=Бронзовый корпус машины -tile.techreborn.machineFrame.brass.name=Латунный корпус машины -tile.techreborn.machineFrame.steel.name=Стальной корпус машины -tile.techreborn.machineFrame.titanium.name=Титановый корпус машины -tile.techreborn.industrialsawmill.name=Лесопилка -tile.techreborn.chargebench.name=Charge Bench -tile.techreborn.playerDetector.all.name=Детектор игроков (Все) -tile.techreborn.playerDetector.others.name=Детектор игроков (Другие) -tile.techreborn.playerDetector.you.name=Детектор игроков (Вы) -tile.techreborn.generator.name=Генератор -tile.techreborn.extractor.name=Экстрактор -tile.techreborn.grinder.name=Шлифовальный станок -tile.techreborn.compressor.name=Компрессор -tile.techreborn.electricfurnace.name=Электропечь -tile.techreborn.machineFrame.highlyAdvancedMachine.name=Чрезвычайно продвинутый блок машины -tile.techreborn.machineFrame.advancedMachine.name=Продвинутый блок машины -tile.techreborn.machineFrame.machine.name=Блок машины -tile.techreborn.ore2.copper.name=Медная руда -tile.techreborn.ore2.tin.name=Оловянная руда -tile.techreborn.solarpanel.name=Солнечная панель -tile.techreborn.watermill.name=Водяная мельница -tile.techreborn.windmill.name=Ветряная мельница -tile.techreborn.ironfurnace.name=Железная печь -tile.techreborn.recycler.name=Переработчик -tile.techreborn.scrapboxinator.name=Scrapbox-inator -tile.techreborn.batbox.name=Battery Box -tile.techreborn.mfe.name=MFE -tile.techreborn.mfsu.name=MFSU -tile.techreborn.reinforcedglass.name=Укреплённое стекло -tile.techreborn.nuke.name=Ядерное оружие -tile.techreborn.lvtransformer.name=Трансформатор НН -tile.techreborn.mvtransformer.name=Трансформатор СН -tile.techreborn.hvtransformer.name=Трансформатор ВН - - -#Blocks -tile.techreborn.rubberlog.name=Древесина гевеи -tile.techreborn.rubberplank.name=Доски из древесины гевеи -tile.techreborn.rubberleaves.name=Листва гевеи -tile.techreborn.rubbersapling.name=Саженец гевеи - -tile.techreborn.ironfence.name=Железный забор - -#Ores -tile.techreborn.ore.galena.name=Галенитовая руда -tile.techreborn.ore.iridium.name=Иридиевая руда -tile.techreborn.ore.ruby.name=Рубиновая руда -tile.techreborn.ore.sapphire.name=Сапфировая руда -tile.techreborn.ore.bauxite.name=Бокситовая руда -tile.techreborn.ore.pyrite.name=Пиритовая руда -tile.techreborn.ore.cinnabar.name=Киноварь -tile.techreborn.ore.sphalerite.name=Сфалеритовая руда -tile.techreborn.ore.tungsten.name=Вольфрамовая руда -tile.techreborn.ore.sheldonite.name=Шелдонитовая руда -tile.techreborn.ore.peridot.name=Перидотовая руда -tile.techreborn.ore.sodalite.name=Содалитовая руда -tile.techreborn.ore.tetrahedrite.name=Тетраэдритовая руда -tile.techreborn.ore.cassiterite.name=Касситеритовая руда -tile.techreborn.ore.lead.name=Свинцовая руда -tile.techreborn.ore.silver.name=Серебряная руда - -#Storage -tile.techreborn.storage.silver.name=Серебряный блок -tile.techreborn.storage.aluminum.name=Алюминиевый блок -tile.techreborn.storage.titanium.name=Титановый блок -tile.techreborn.storage.chrome.name=Хромовый блок -tile.techreborn.storage.steel.name=Стальной блок -tile.techreborn.storage.brass.name=Латунный блок -tile.techreborn.storage.lead.name=Свинцовый блок -tile.techreborn.storage.electrum.name=Электрумовый блок -tile.techreborn.storage.zinc.name=Цинковый блок -tile.techreborn.storage.platinum.name=Платиновый блок -tile.techreborn.storage.tungsten.name=Вольфрамовый блок -tile.techreborn.storage.nickel.name=Никелевый блок -tile.techreborn.storage.invar.name=Инваровый блок -tile.techreborn.storage.osmium.name=Осмиевый блок -tile.techreborn.storage.iridium.name=Иридиевый блок -tile.techreborn.storage2.tungstensteel.name=Блок вольфрамовой стали -tile.techreborn.storage2.lodestone.name=Магнетитовый блок -tile.techreborn.storage2.tellurium.name=Блок теллура -tile.techreborn.storage2.iridium_reinforced_tungstensteel.name=Блок вольфрамовой стали, укреплённый иридием -tile.techreborn.storage2.iridium_reinforced_stone.name=Камень, укреплённый иридием -tile.techreborn.storage2.ruby.name=Рубиновый блок -tile.techreborn.storage2.sapphire.name=Сапфировый блок -tile.techreborn.storage2.peridot.name=Перидотовый блок -tile.techreborn.storage2.yellowGarnet.name=Блок жёлтого граната -tile.techreborn.storage2.redGarnet.name=Блок красного граната -tile.techreborn.storage2.refinedIron.name=Блок переработанного железа -tile.techreborn.storage2.copper.name=Медный блок -tile.techreborn.storage2.tin.name=Оловянный блок -tile.techreborn.farm.name=Ферма - - -#Fluids -tile.techreborn.berylium.name=Источник бериллия -tile.techreborn.calcium.name=Источник кальция -tile.techreborn.calciumcarbonate.name=Источник карбоната кальция -tile.techreborn.chlorite.name=Источник хлорита -tile.techreborn.deuterium.name=Источник дейтерия -tile.techreborn.glyceryl.name=Источник глицерина -tile.techreborn.helium.name=Источник гелия -tile.techreborn.helium3.name=Источник гелия-3 -tile.techreborn.heliumplasma.name=Источник гелиевой плазмы -tile.techreborn.hydrogen.name=Источник водорода -tile.techreborn.lithium.name=Источник лития -tile.techreborn.mercury.name=Источник ртути -tile.techreborn.methane.name=Источник метана -tile.techreborn.nitrocoalfuel.name=Nitrocoalfuel Source -tile.techreborn.nitrofuel.name=Nitrofuel Source -tile.techreborn.nitrogen.name=Источник азота -tile.techreborn.nitrogendioxide.name=Источник диоксида азота -tile.techreborn.potassium.name=Источник калия -tile.techreborn.silicon.name=Источник кремния -tile.techreborn.sodium.name=Источник натрия -tile.techreborn.sodiumpersulfate.name=Источник персульфата натрия -tile.techreborn.tritium.name=Источник трития -tile.techreborn.wolframium.name=Источник вольфрама -tile.techreborn.supercondensator.name=Ионистор -fluid.fluid.fluidberylium=Бериллий -fluid.fluid.fluidcalcium=Кальций -fluid.fluid.fluidcalciumcarbonate=Карбонат кальция -fluid.fluid.fluidchlorite=Хлорит -fluid.fluid.fluiddeuterium=Дейтерий -fluid.fluid.fluidglyceryl=Глицерил -fluid.fluid.fluidhelium=Гелий -fluid.fluid.fluidhelium3=Гелий-3 -fluid.fluid.fluidheliumplasma=Гелиевая плазма -fluid.fluid.fluidhydrogen=Водород -fluid.fluid.fluidlithium=Литий -fluid.fluid.fluidmercury=Ртуть -fluid.fluid.fluidmethane=Метан -fluid.fluid.fluidnitrocoalfuel=Nitrocoalfuel -fluid.fluid.fluidnitrofuel=Nitrofuel -fluid.fluid.fluidnitrogen=Азот -fluid.fluid.fluidnitrogendioxide=Диоксид азота -fluid.fluid.fluidpotassium=Калий -fluid.fluid.fluidsilicon=Кремний -fluid.fluid.fluidsodium=Натрий -fluid.fluid.fluidsodiumpersulfate=Персульфат натрия -fluid.fluid.fluidtritium=Тритий -fluid.fluid.fluidwolframium=Вольфрам -fluid.tile.techreborn.glyceryl=Глицерил -fluid.tile.techreborn.berylium=Бериллий -fluid.tile.techreborn.chlorite=Хлорит -fluid.tile.techreborn.helium3=Гелий-3 -fluid.tile.techreborn.deuterium=Дейтерий -fluid.tile.techreborn.helium=Гелий -fluid.tile.techreborn.calciumcarbonate=Карбонат кальция -fluid.titanium.name=Расплавленный титан -fluid.chrome.name=Расплавленный хром -fluid.platinum.name=Расплавленная платина -fluid.iridium.name=Расплавленный иридий -fluid.invar.name=Расплавленный инвар -fluid.tungsten.name=Расплавленный вольфрам - -#Dusts -item.techreborn.dust.almandine.name=Алмадиновая пыль -item.techreborn.dust.aluminumBrass.name=Алюминиево-латунная пыль -item.techreborn.dust.aluminum.name=Алюминиевая пыль -item.techreborn.dust.alumite.name=Алюмитовая пыль -item.techreborn.dust.andradite.name=Андрадитовая пыль -item.techreborn.dust.antimony.name=Сурьмяновая пыль -item.techreborn.dust.ardite.name=Ардитовая пыль -item.techreborn.dust.ashes.name=Пепел -item.techreborn.dust.basalt.name=Базальтовая пыль -item.techreborn.dust.bauxite.name=Бокситовая пыль -item.techreborn.dust.biotite.name=Биотитовая пыль -item.techreborn.dust.brass.name=Латунная пыль -item.techreborn.dust.bronze.name=Бронзовая пыль -item.techreborn.dust.cadmium.name=Кадмиевая пыль -item.techreborn.dust.calcite.name=Кальцитовая пыль -item.techreborn.dust.charcoal.name=Древесноугольная пыль -item.techreborn.dust.chrome.name=Хромовая пыль -item.techreborn.dust.cinnabar.name=Киноварная пыль -item.techreborn.dust.clay.name=Глиняная пыль -item.techreborn.dust.coal.name=Угольная пыль -item.techreborn.dust.cobalt.name=Кобальтовая пыль -item.techreborn.dust.copper.name=Медная пыль -item.techreborn.dust.cupronickel.name=Мельхиоровая пыль -item.techreborn.dust.darkAshes.name=Тёмный пепел -item.techreborn.dust.darkIron.name=Пыль тёмного железа -item.techreborn.dust.diamond.name=Алмазная пыль -item.techreborn.dust.electrum.name=Электрумовая пыль -item.techreborn.dust.emerald.name=Изумрудная пыль -item.techreborn.dust.enderEye.name=Пыль глаза Края -item.techreborn.dust.enderPearl.name=Пыль жемчуга Края -item.techreborn.dust.endstone.name=Пыль из камня Края -item.techreborn.dust.flint.name=Кременевая пыль -item.techreborn.dust.gold.name=Золотая пыль -item.techreborn.dust.graphite.name=Графитовая пыль -item.techreborn.dust.grossular.name=Гроссуляровая пыль -item.techreborn.dust.indium.name=Индиевая пыль -item.techreborn.dust.invar.name=Инваровая пыль -item.techreborn.dust.iridium.name=Иридиевая пыль -item.techreborn.dust.iron.name=Железная пыль -item.techreborn.dust.lazurite.name=Лазуритовая пыль -item.techreborn.dust.lead.name=Свинцовая пыль -item.techreborn.dust.magnesium.name=Магниевая пыль -item.techreborn.dust.manganese.name=Марганцовая пыль -item.techreborn.dust.marble.name=Мраморная пыль -item.techreborn.dust.netherrack.name=Пыль адского камня -item.techreborn.dust.nickel.name=Никелевая пыль -item.techreborn.dust.osmium.name=Осмиевая пыль -item.techreborn.dust.peridot.name=Хризолитовая пыль -item.techreborn.dust.phosphorous.name=Фосфорная пыль -item.techreborn.dust.platinum.name=Платиновая пыль -item.techreborn.dust.potassiumFeldspar.name=Ортоклазовая пыль -item.techreborn.dust.pyrite.name=Пиритовая пыль -item.techreborn.dust.pyrope.name=Пироповая пыль -item.techreborn.dust.redGarnet.name=Пыль красного граната -item.techreborn.dust.ruby.name=Рубиновая пыль -item.techreborn.dust.saltpeter.name=Селитровая пыль -item.techreborn.dust.sapphire.name=Сапфировая пыль -item.techreborn.dust.silicon.name=Кремнивая пыль -item.techreborn.dust.silver.name=Серебреная пыль -item.techreborn.dust.sodalite.name=Содалитовая пыль -item.techreborn.dust.spessartine.name=Спессартиновая пыль -item.techreborn.dust.sphalerite.name=Сфалеритовая пыль -item.techreborn.dust.steel.name=Стальная пыль -item.techreborn.dust.sulfur.name=Серная пыль -item.techreborn.dust.tellurium.name=Sulfur Dust -item.techreborn.dust.teslatite.name=Теслатитовая пыль -item.techreborn.dust.tetrahedrite.name=Тетраэдритовая пыль -item.techreborn.dust.tin.name=Оловянная пыль -item.techreborn.dust.titanium.name=Титановая пыль -item.techreborn.dust.tungsten.name=Вольфрамовая пыль -item.techreborn.dust.uvarovite.name=Уваровитовая пыль -item.techreborn.dust.vinteum.name=Винтеумная пыль -item.techreborn.dust.voidstone.name=Пыль камня пустоты -item.techreborn.dust.yellowGarnet.name=Пыль жёлтого граната -item.techreborn.dust.zinc.name=Цинковая пыль -item.techreborn.dust.galena.name=Галенитовая пыль -item.techreborn.dust.sawDust.name=Опилки -item.techreborn.dust.olivine.name=Оливиновая пыль -item.techreborn.dust.andesite.name=Андезитовая пыль -item.techreborn.dust.diorite.name=Диоритовая пыль -item.techreborn.dust.granite.name=Гранитовая пыль - -item.techreborn.ingot.refinedIron.name=Refined Iron Ingot -item.techreborn.wrench.name=Гаечный ключ -item.techreborn.cable.COPPER.name=Медный кабель -item.techreborn.cable.TIN.name=Оловянный кабель -item.techreborn.cable.GOLD.name=Золотой кабель -item.techreborn.cable.HV.name=Кабель высокого напряжения -item.techreborn.cable.GLASSFIBER.name=Cтекловолоконный кабель -item.techreborn.cable.ICOPPER.name=Изолированный медный кабель -item.techreborn.cable.IGOLD.name=Изолированный золотой кабель -item.techreborn.cable.IHV.name=Изолированный кабель высокого напряжения -item.techreborn.scrapbox.name=Ящик с ломом -item.techreborn.part.carbonmesh.name=Углеродный меш -item.techreborn.part.carbonfiber.name=Углеродное волокно - -#Small Dusts -item.techreborn.dustsmall.almandine.name=Маленькая кучка алмандиновой пыли -item.techreborn.dustsmall.aluminum.name=Маленькая кучка алюминиевой пыли -item.techreborn.dustsmall.andradite.name=Маленькая кучка андрадитной пыли -item.techreborn.dustsmall.ashes.name=Маленькая кучка пепла -item.techreborn.dustsmall.basalt.name=Маленькая кучка базальтовой пыли -item.techreborn.dustsmall.bauxite.name=Маленькая кучка бокситной пыли -item.techreborn.dustsmall.brass.name=Маленькая кучка латунной пыли -item.techreborn.dustsmall.bronze.name=Маленькая кучка бронзовой пыли -item.techreborn.dustsmall.calcite.name=Маленькая кучка кальцитной пыли -item.techreborn.dustsmall.charcoal.name=Маленькая кучка древесноугольной пыли -item.techreborn.dustsmall.chrome.name=Маленькая кучка хромяной пыли -item.techreborn.dustsmall.cinnabar.name=Маленькая кучка киноварной пыли -item.techreborn.dustsmall.clay.name=Маленькая кучка глиняной пыли -item.techreborn.dustsmall.coal.name=Маленькая кучка угольной пыли -item.techreborn.dustsmall.copper.name=Маленькая кучка медной пыли -item.techreborn.dustsmall.darkAshes.name=Маленькая кучка темного пепла -item.techreborn.dustsmall.diamond.name=Маленькая кучка алмазной пыли -item.techreborn.dustsmall.electrum.name=Маленькая кучка электрумной пыли -item.techreborn.dustsmall.emerald.name=Маленькая кучка изумрудной пыли -item.techreborn.dustsmall.enderEye.name=Маленькая кучка краеглазной пыли -item.techreborn.dustsmall.enderPearl.name=Маленькая кучка краежемчужной пыли -item.techreborn.dustsmall.endstone.name=Маленькая кучка краекаменной пыли -item.techreborn.dustsmall.flint.name=Маленькая кучка кресальной пыли -item.techreborn.dustsmall.galena.name=Маленькая кучка галенитовой пыли -item.techreborn.dustsmall.glowstone.name=Маленькая кучка светокаменной пыли -item.techreborn.dustsmall.gold.name=Маленькая кучка золотой пыли -item.techreborn.dustsmall.grossular.name=Маленькая кучка гроссуларной пыли -item.techreborn.dustsmall.invar.name=Маленькая кучка инварной пыли -item.techreborn.dustsmall.iron.name=Маленькая кучка железной пыли -item.techreborn.dustsmall.lazurite.name=Маленькая кучка лазуритной пыли -item.techreborn.dustsmall.lead.name=Маленькая кучка свинцовой пыли -item.techreborn.dustsmall.magnesium.name=Маленькая кучка магнезиевой пыли -item.techreborn.dustsmall.manganese.name=Маленькая кучка Манганезиевой пыли -item.techreborn.dustsmall.marble.name=Маленькая кучка мраморной пыли -item.techreborn.dustsmall.netherrack.name=Маленькая кучка нижнекаменной пыли -item.techreborn.dustsmall.nickel.name=Маленькая кучка никелевой пыли -item.techreborn.dustsmall.obsidian.name=Маленькая кучка обсидиановой пыли -item.techreborn.dustsmall.peridot.name=Маленькая кучка перидота -item.techreborn.dustsmall.phosphorous.name=Маленькая кучка фосфорной пыли -item.techreborn.dustsmall.platinum.name=Маленькая кучка платиновой пыли -item.techreborn.dustsmall.pyrite.name=Маленькая кучка пиритной пыли -item.techreborn.dustsmall.pyrope.name=Маленькая кучка пиротной пыли -item.techreborn.dustsmall.redGarnet.name=Маленькая кучка красногранатной пыли -item.techreborn.dustsmall.redstone.name=Маленькая кучка красного камня -item.techreborn.dustsmall.ruby.name=Маленькая кучка рубиновой пыли -item.techreborn.dustsmall.saltpeter.name=Маленькая кучка селитряной пыли -item.techreborn.dustsmall.sapphire.name=Маленькая кучка сапфирной пыли -item.techreborn.dustsmall.sawdust.name=Маленькая кучка опилочной пыли -item.techreborn.dustsmall.silver.name=Маленькая кучка серебряной пыли -item.techreborn.dustsmall.sodalite.name=Маленькая кучка содной пыли -item.techreborn.dustsmall.spessartine.name=Маленькая кучка спессартиновой пыли -item.techreborn.dustsmall.sphalerite.name=Маленькая кучка сфалеритной пыли -item.techreborn.dustsmall.steel.name=Маленькая кучка стальной пыли -item.techreborn.dustsmall.sulfur.name=Маленькая кучка серной пыли -item.techreborn.dustsmall.tin.name=Маленькая кучка оловянной пыли -item.techreborn.dustsmall.titanium.name=Маленькая кучка титановой пыли -item.techreborn.dustsmall.tungsten.name=Маленькая кучка вольфрамовой пыли -item.techreborn.dustsmall.uvarovite.name=Маленькая кучка уваровитной пыли -item.techreborn.dustsmall.voidstone.name=Маленькая кучка пустотнокаменной пыли -item.techreborn.dustsmall.yellowGarnet.name=Маленькая кучка желтогранатной пыли -item.techreborn.dustsmall.zinc.name=Маленькая кучка цинковой пыли -item.techreborn.dustsmall.olivine.name=Маленькая кучка оливиновой пыли -item.techreborn.dustsmall.andesite.name=Маленькая кучка андезитной пыли -item.techreborn.dustsmall.diorite.name=Маленькая кучка диоритной пыли -item.techreborn.dustsmall.granite.name=Маленькая кучка гранитной пыли - -item.techreborn.cell.name=Пустая капсула -item.techreborn.rebattery.name=Аккумулятор -item.techreborn.lithiumBattery.name=Литиевый аккумулятор -item.techreborn.energyCrystal.name=Энергетический кристалл -item.techreborn.lapotronCrystal.name=Лазуротроновый кристалл -item.techreborn.treetap.name=Краник -item.techreborn.nanosaber.name=Наносабля -item.techreborn.upgrade.Overclock.name=Улучшение «Ускоритель» -item.techreborn.upgrade.Transformer.name=Улучшение «Трансформатор» -item.techreborn.upgrade.EnergyStorage.name=Улучшение «Энергохранитель» - -#Gems -item.techreborn.gem.ruby.name=Рубин -item.techreborn.gem.sapphire.name=Сапфир -item.techreborn.gem.peridot.name=Хризолит -item.techreborn.gem.redGarnet.name=Красный гранат -item.techreborn.gem.yellowGarnet.name=Жёлтый гранат - -#Ingots -item.techreborn.ingot.aluminum.name=Алюминиевый слиток -item.techreborn.ingot.antimony.name=Сурьмяный слиток -item.techreborn.ingot.batteryAlloy.name=Слиток батарейного сплава -item.techreborn.ingot.redAlloy.name=Слиток красного сплава -item.techreborn.ingot.blueAlloy.name=Слиток синего сплава -item.techreborn.ingot.brass.name=Латунный слиток -item.techreborn.ingot.bronze.name=Бронзовый слиток -item.techreborn.ingot.cadmium.name=Кадмиевый слиток -item.techreborn.ingot.chrome.name=Хромовый слиток -item.techreborn.ingot.copper.name=Медный слиток -item.techreborn.ingot.cupronickel.name=Мельхиоровый слиток -item.techreborn.ingot.electrum.name=Электрумовый слиток -item.techreborn.ingot.indium.name=Индиевый слиток -item.techreborn.ingot.invar.name=Инваровый слиток -item.techreborn.ingot.iridium.name=Иридиевый слиток -item.techreborn.ingot.kanthal.name=Фехралевый слиток -item.techreborn.ingot.lead.name=Свинцовый слиток -item.techreborn.ingot.lodestone.name=Магнетитовый слиток -item.techreborn.ingot.magnalium.name=Магналиевый слиток -item.techreborn.ingot.nichrome.name=Нихромовый слиток -item.techreborn.ingot.nickel.name=Никелевый слиток -item.techreborn.ingot.osmium.name=Осмиевый слиток -item.techreborn.ingot.platinum.name=Платиновый слиток -item.techreborn.ingot.silver.name=Серебряный слиток -item.techreborn.ingot.steel.name=Стальной слиток -item.techreborn.ingot.tellurium.name=Таллиевый слиток -item.techreborn.ingot.tin.name=Оловянный слиток -item.techreborn.ingot.titanium.name=Титановый слиток -item.techreborn.ingot.tungsten.name=Вольфрамовый слиток -item.techreborn.ingot.hotTungstensteel.name=Горячий слиток из вольфрамовой стали -item.techreborn.ingot.tungstensteel.name=Слиток из вольфрамовой стали -item.techreborn.ingot.zinc.name=Цинковый слиток -item.techreborn.ingot.advancedAlloy.name=Слиток продвинутого сплава -item.techreborn.ingot.mixedMetal.name=Смешанный металлический слиток -item.techreborn.ingot.iridiumAlloy.name=Слиток иридиевого сплава - -#Nuggets -item.techreborn.nuggets.aluminum.name=Алюминиевый самородок -item.techreborn.nuggets.antimony.name=Сурьмяный самородок -item.techreborn.nuggets.brass.name=Латунный самородок -item.techreborn.nuggets.bronze.name=Бронзовый самородок -item.techreborn.nuggets.chrome.name=Хромовый самородок -item.techreborn.nuggets.copper.name=Медный самородок -item.techreborn.nuggets.electrum.name=Электрумовый самородок -item.techreborn.nuggets.invar.name=Инваровый самородок -item.techreborn.nuggets.iridium.name=Иридиевый самородок -item.techreborn.nuggets.iron.name=Железный самородок -item.techreborn.nuggets.lead.name=Свинцовый самородок -item.techreborn.nuggets.nickel.name=Никелевый самородок -item.techreborn.nuggets.osmium.name=Осмиевый самородок -item.techreborn.nuggets.platinum.name=Платиновый самородок -item.techreborn.nuggets.silver.name=Серебряный самородок -item.techreborn.nuggets.steel.name=Стальной самородок -item.techreborn.nuggets.tin.name=Оловянный самородок -item.techreborn.nuggets.titanium.name=Титановый самородок -item.techreborn.nuggets.tungsten.name=Вольфрамовый самородок -item.techreborn.nuggets.tungstensteel.name=Самородок из вольфрамовой стали -item.techreborn.nuggets.hotTungstensteel.name=Горячий самородок из вольфрамовой стали -item.techreborn.nuggets.zinc.name=Цинковый самородок -item.techreborn.nuggets.refinedIron.name=Самородок из переработанного железа -item.techreborn.nuggets.diamond.name=Алмазный самородок - -#Crushed Ore -item.techreborn.crushedore.Aluminum.name=Измельчённая алюминиевая руда -item.techreborn.crushedore.Ardite.name=Измельчённая ардитовая руда -item.techreborn.crushedore.Bauxite.name=Измельчённая бокситная руда -item.techreborn.crushedore.Cadmium.name=Измельчённая кадмиевая руда -item.techreborn.crushedore.Cinnabar.name=Измельчённая киноварная руда -item.techreborn.crushedore.Cobalt.name=Измельчённая кобальтовая руда -item.techreborn.crushedore.DarkIron.name=Измельчённая руда темного железа -item.techreborn.crushedore.Indium.name=Измельчённая индиевая руда -item.techreborn.crushedore.Iridium.name=Измельчённая иридиевая руда -item.techreborn.crushedore.Nickel.name=Измельчённая никелевая руда -item.techreborn.crushedore.Osmium.name=Измельчённая осмиевая руда -item.techreborn.crushedore.Platinum.name=Измельчённая платиновая руда -item.techreborn.crushedore.Pyrite.name=Измельчённая пиритная руда -item.techreborn.crushedore.Sphalerite.name=Измельчённая сфалеритная руда -item.techreborn.crushedore.Tetrahedrite.name=Измельчённая тетрахедритная руда -item.techreborn.crushedore.Tungsten.name=Измельчённая вольфрамовая руда -item.techreborn.crushedore.Galena.name=Измельчённая галенитная руда - -#Purified Crushed Ore -item.techreborn.purifiedcrushedore.Aluminum.name=Очищенная измельчённая алюминиевая руда -item.techreborn.purifiedcrushedore.Ardite.name=Очищенная измельчённая ардитовая руда -item.techreborn.purifiedcrushedore.Bauxite.name=Очищенная измельчённая бокситная руда -item.techreborn.purifiedcrushedore.Cadmium.name=Очищенная измельчённая кадмиевая руда -item.techreborn.purifiedcrushedore.Cinnabar.name=Очищенная измельчённая киноварная руда -item.techreborn.purifiedcrushedore.Cobalt.name=Очищенная измельчённая кобальтовая руда -item.techreborn.purifiedcrushedore.DarkIron.name=Очищенная измельчённая руда темного железа -item.techreborn.purifiedcrushedore.Indium.name=Очищенная измельчённая индиевая руда -item.techreborn.purifiedcrushedore.Iridium.name=Очищенная измельчённая иридиевая руда -item.techreborn.purifiedcrushedore.Nickel.name=Очищенная измельчённая никелевая руда -item.techreborn.purifiedcrushedore.Osmium.name=Очищенная измельчённая осмиевая руда -item.techreborn.purifiedcrushedore.Platinum.name=Очищенная измельчённая платиновая руда -item.techreborn.purifiedcrushedore.Pyrite.name=Очищенная измельчённая пиритная руда -item.techreborn.purifiedcrushedore.Sphalerite.name=Очищенная измельчённая сфалеритная руда -item.techreborn.purifiedcrushedore.Tetrahedrite.name=Очищенная измельчённая тетрахедритная руда -item.techreborn.purifiedcrushedore.Tungsten.name=Очищенная измельчённая вольфрамовая руда -item.techreborn.purifiedcrushedore.Galena.name=Очищенная измельчённая галенитная руда - -#Plates -item.techreborn.plate.aluminum.name=Aluminium Plate -item.techreborn.plate.brass.name=Brass Plate -item.techreborn.plate.bronze.name=Bronze Plate -item.techreborn.plate.carbon.name=Carbon Plate -item.techreborn.plate.coal.name=Coal Plate -item.techreborn.plate.chrome.name=Chrome Plate -item.techreborn.plate.copper.name=Copper Plate -item.techreborn.plate.diamond.name=Diamond Plate -item.techreborn.plate.electrum.name=Electrum Plate -item.techreborn.plate.emerald.name=Emerald Plate -item.techreborn.plate.gold.name=Gold Plate -item.techreborn.plate.invar.name=Invar Plate -item.techreborn.plate.iridium.name=Iridium Plate -item.techreborn.plate.iron.name=Iron Plate -item.techreborn.plate.lapis.name=Lapis Lazuli Plate -item.techreborn.plate.lead.name=Lead Plate -item.techreborn.plate.magnalium.name=Magnalium Plate -item.techreborn.plate.nickel.name=Nickel Plate -item.techreborn.plate.obsidian.name=Obsidian Plate -item.techreborn.plate.osmium.name=Osmium Plate -item.techreborn.plate.peridot.name=Peridot Plate -item.techreborn.plate.platinum.name=Platinum Plate -item.techreborn.plate.redGarnet.name=Red Garnet Plate -item.techreborn.plate.redstone.name=Redstone Plate -item.techreborn.plate.ruby.name=Ruby Plate -item.techreborn.plate.sapphire.name=Sapphire Plate -item.techreborn.plate.silicon.name=Silicon Plate -item.techreborn.plate.silver.name=Silver Plate -item.techreborn.plate.steel.name=Steel Plate -item.techreborn.plate.teslatite.name=Teslatite Plate -item.techreborn.plate.tin.name=Tin Plate -item.techreborn.plate.titanium.name=Titanium Plate -item.techreborn.plate.tungsten.name=Tungsten Plate -item.techreborn.plate.hotTungstensteel.name=Hot Tungstensteel Plate -item.techreborn.plate.tungstensteel.name=Tungstensteel Plate -item.techreborn.plate.yellowGarnet.name=Yellow Garnet Plate -item.techreborn.plate.zinc.name=Zinc Plate -item.techreborn.plate.refinedIron.name=Refined Iron Plate -item.techreborn.plate.wood.name=Wooden Plate -item.techreborn.plate.advancedAlloy.name=Advanced Alloy -item.techreborn.plate.lazurite.name=Lazurite Plate - -#Parts -item.techreborn.part.advancedCircuitParts.name=Advanced Circuit Parts -item.techreborn.part.basicCircuitBoard.name=Basic Circuit Board -item.techreborn.part.advancedCircuitBoard.name=Advanced Circuit Board -item.techreborn.part.processorCircuitBoard.name=Processor Circuit Board -item.techreborn.part.energyFlowCircuit.name=Energy Flow Circuit -item.techreborn.part.dataControlCircuit.name=Data Control Circuit -item.techreborn.part.dataOrb.name=Data Orb -item.techreborn.part.dataStorageCircuit.name=Data Storage Circuit -item.techreborn.part.diamondGrindingHead.name=Diamond Grinding Head -item.techreborn.part.diamondSawBlade.name=Diamond Saw Blade -item.techreborn.part.tungstenGrindingHead.name=Tungsten Grinding Head -item.techreborn.part.heliumCoolantSimple.name=60k Helium Coolant Cell -item.techreborn.part.heliumCoolantTriple.name=180k Helium Coolant Cell -item.techreborn.part.heliumCoolantSix.name=360k Helium Coolant Cell -item.techreborn.part.NaKCoolantSimple.name=60k NaK Coolant Cell -item.techreborn.part.NaKCoolantTriple.name=180k NaK Coolant Cell -item.techreborn.part.NaKCoolantSix.name=360k NaK Coolant Cell -item.techreborn.part.cupronickelHeatingCoil.name=Cupronickel Heating Coil -item.techreborn.part.nichromeHeatingCoil.name=Nichrome Heating Coil -item.techreborn.part.kanthalHeatingCoil.name=Kanthal Heating Coil -item.techreborn.part.steelGear.name=Steel Gear -item.techreborn.part.tungstensteelGear.name=Tungstensteel Gear -item.techreborn.part.laserFocus.name=Laser Focus -item.techreborn.part.ductTape.name=Aerospace Advanced Reinforced Duct Tape FAL-84 -item.techreborn.part.iridiumAlloyIngot.name=Iridium Alloy Ingot -item.techreborn.part.rockCutterBlade.name=Rock Cutter Blade -item.techreborn.part.superConductor.name=Superconductor -item.techreborn.part.thoriumCell.name=Fuel Rod (Thorium) -item.techreborn.part.doubleThoriumCell.name=Dual Fuel Rod (Thorium) -item.techreborn.part.quadThoriumCell.name=Quad Fuel Rod (Thorium) -item.techreborn.part.plutoniumCell.name=Fuel Rod (Plutonium) -item.techreborn.part.doublePlutoniumCell.name=Dual Fuel Rod (Plutonium) -item.techreborn.part.quadPlutoniumCell.name=Quad Fuel Rod (Plutonium) -item.techreborn.part.destructoPack.name=Destructopack -item.techreborn.part.iridiumNeutronReflector.name=Iridium Neutron Reflector -item.techreborn.part.massHoleDevice.name=Mass Hole Device -item.techreborn.part.computerMonitor.name=Computer Monitor -item.techreborn.part.machineParts.name=Machine Parts -item.techreborn.part.neutronReflector.name=Neutron Reflector -item.techreborn.part.thickNeutronReflector.name=Thick Neutron Reflector -item.techreborn.part.rubberSap.name=Sap -item.techreborn.part.rubber.name=Rubber -item.techreborn.part.scrap.name=Scrap -item.techreborn.part.electronicCircuit.name=Electronic Circuit -item.techreborn.part.advancedCircuit.name=Advanced Electronic Circuit -item.techreborn.part.frequencyTransmitter.name=Frequency Transmitter -item.techreborn.part.wolframiumGrindingHead.name=Wolframium Grinding Head -item.techreborn.part.dogecoin.name=Dogecoin -item.techreborn.part.coolantSimple.name=10k Coolant Cell -item.techreborn.part.coolantTriple.name=30k Coolant Cell -item.techreborn.part.coolantSix.name=60k Coolant Cell - -item.techreborn.frequencyTransmitter.name=Frequency Transmitter - -#Tools -item.techreborn.rockcutter.name=Rockcutter -item.techreborn.lithiumbatpack.name=Lithium Batpack -item.techreborn.lapotronpack.name=Lapotron Pack -item.techreborn.omniTool.name=Omni-Tool -item.techreborn.ironDrill.name=Steel Drill -item.techreborn.diamondDrill.name=Diamond Drill -item.techreborn.advancedDrill.name=Advanced Drill -item.techreborn.ironChainsaw.name=Steel Chainsaw -item.techreborn.diamondChainsaw.name=Diamond Chainsaw -item.techreborn.advancedChainsaw.name=Advanced Chainsaw -item.techreborn.lapotronicorb.name=Lapotronic Energy Orb -item.techreborn.cloakingdevice.name=Cloaking Device -item.techreborn.steelJackhammer.name=Steel Jackhammer -item.techreborn.diamondJackhammer.name=Diamond Jackhammer -item.techreborn.advancedJackhammer.name=Advanced Jackhammer - -item.bronzeSword.name=Bronze Sword -item.bronzePickaxe.name=Bronze Pickaxe -item.bronzeSpade.name=Bronze Shovel -item.bronzeAxe.name=Bronze Axe -item.bronzeHoe.name=Bronze Hoe -item.bronzeHelmet.name=Bronze Helmet -item.bronzeChestplate.name=Bronze Chestplate -item.bronzeLeggings.name=Bronze Leggings -item.bronzeBoots.name=Bronze Boots - -#Для перидота и сапфира лучше использовать родительный падеж, благозвучнее (А)RarogCmex -item.rubySword.name=Рубиновый меч -item.rubyPickaxe.name=Рубиновая кирка -item.rubySpade.name=Рубиновая лопата -item.rubyAxe.name=Рубиновый топор -item.rubyHoe.name=Рубиновая кирка -item.rubyHelmet.name=Рубиновый шлем -item.rubyChestplate.name=Рубиновый нагрудник -item.rubyLeggings.name=Рубиновые штаны -item.rubyBoots.name=Рубиновые сапоги - -item.sapphireSword.name= Меч из Сапфира -item.sapphirePickaxe.name= Кирка из Сапфира -item.sapphireSpade.name= Лопата из Сапфира -item.sapphireAxe.name= Топор из Сапфира -item.sapphireHoe.name= Мотыга из Сапфира -item.sapphireHelmet.name= Шлем из Сапфира -item.sapphireChestplate.name= Нагрудник из Сапфира -item.sapphireLeggings.name= Штаны из Сапфира -item.sapphireBoots.name= Сапоги из Сапфира - - -#Перидот и хразолит синонимы,поэтому использую перидот как уже знакомое название -item.peridotSword.name=Меч из перидота -item.peridotPickaxe.name=Кирка из перидота -item.peridotSpade.name=Лопата из перидота -item.peridotAxe.name=Топор из перидота -item.peridotHoe.name=Мотыга из перидота -item.peridotHelmet.name=Шлем из перидота -item.peridotChestplate.name=Нагрудник из перидота -item.peridotLeggings.name=Штаны из перидота -item.peridotBoots.name=Сапоги из перидота - -#Fluid -fluid.fluidberylium=Бериллий -fluid.fluidcalcium=Кальций -fluid.fluidcalciumcarbonate=Карбонат кальция -fluid.fluidchlorite=Хлорит -fluid.fluiddeuterium=Дейтерий -fluid.fluidglyceryl=Глицерил -fluid.fluidhelium=Гелий -fluid.fluidhelium3=Гелий-3 -fluid.fluidheliumplasma=Гелиевая плазма -fluid.fluidhydrogen=Водород -fluid.fluidlithium=Литий -fluid.fluidmercury=Ртуть -fluid.fluidmethane=Метан -fluid.fluidnitrocoalfuel=Nitrocoalfuel -fluid.fluidnitrofuel=Nitrofuel -fluid.fluidnitrogen=Азот -fluid.fluidnitrogendioxide=Диоксид азота -fluid.fluidpotassium=Калий -fluid.fluidsilicon=Кремний -fluid.fluidsodium=Натрий -fluid.fluidsodiumpersulfate=Персульфат натрия -fluid.fluidtritium=Тритий -fluid.fluidwolframium=Вольфрам - -#Items -item.techreborn.uuMatter.name=UU-Matter -item.techreborn.manual.name=Tech Manual -item.techreborn.debug.name=Debug Tool -#Configs -config.techreborn.allow.galenaOre=Allow Galena Ore -config.techreborn.allow.galenaOre.tooltip=Decide whether Galena Ore spawns or not -config.techreborn.allow.iridiumOre=Allow Iridium Ore -config.techreborn.allow.iridiumOre.tooltip=Decide whether Iridium Ore spawns or not -config.techreborn.allow.rubyOre=Allow Ruby Ore -config.techreborn.allow.rubyOre.tooltip=Decide whether Ruby Ore spawns or not -config.techreborn.allow.sapphireOre=Allow Sapphire Ore -config.techreborn.allow.sapphireOre.tooltip=Decide whether Sapphire Ore spawns or not -config.techreborn.allow.bauxiteOre=Allow Bauxite Ore -config.techreborn.allow.bauxiteOre.tooltip=Decide whether Bauxite Ore spawns or not -config.techreborn.allow.copperOre=Allow Copper Ore -config.techreborn.allow.copperOre.tooltip=Decide whether Copper Ore spawns or not -config.techreborn.allow.tinOre=Allow Tin Ore -config.techreborn.allow.tinOre.tooltip=Decide whether Tin Ore spawns or not -config.techreborn.allow.leadOre=Allow Lead Ore -config.techreborn.allow.leadOre.tooltip=Decide whether Lead Ore spawns or not -config.techreborn.allow.silverOre=Allow Silver Ore -config.techreborn.allow.silverOre.tooltip=Decide whether Silver Ore spawns or not -config.techreborn.allow.pyriteOre=Allow Pyrite Ore -config.techreborn.allow.pyriteOre.tooltip=Decide whether Pyrite Ore spawns or not -config.techreborn.allow.cinnabarOre=Allow Cinnabar Ore -config.techreborn.allow.cinnabarOre.tooltip=Decide whether Cinnabar Ore spawns or not -config.techreborn.allow.sphaleriteOre=Allow Sphalerite Ore -config.techreborn.allow.sphaleriteOre.tooltip=Decide whether Sphalerite Ore spawns or not -config.techreborn.allow.tungstenOre=Allow Tungsten Ore -config.techreborn.allow.tungstenOre.tooltip=Decide whether Tungsten Ore spawns or not -config.techreborn.allow.sheldoniteOre=Allow Sheldonite Ore -config.techreborn.allow.sheldoniteOre.tooltip=Decide whether Sheldonite Ore spawns or not -config.techreborn.allow.olivineOre=Allow Olivine Ore -config.techreborn.allow.olivineOre.tooltip=Decide whether Olivine Ore spawns or not -config.techreborn.allow.sodaliteOre=Allow Sodalite Ore -config.techreborn.allow.sodaliteOre.tooltip=Decide whether Sodalite Ore spawns or not - -config.techreborn.fortuneSecondaryOreMultiplierPerLevel=Fortune's Effect on Secondaries -config.techreborn.fortuneSecondaryOreMultiplierPerLevel.tooltip=How much of an increase should each level of fortune have on secondary ore drops? - -config.techreborn.allowExpensiveMacerator=Allow Expensive Macerator -config.techreborn.allowExpensiveMacerator.tooltip= -config.techreborn.allowExpensiveDrill=Allow Expensive Drill -config.techreborn.allowExpensiveDrill.tooltip= -config.techreborn.allowExpensiveDiamondDrill=Allow Expensive Diamond Drill -config.techreborn.allowExpensiveDiamondDrill.tooltip= -config.techreborn.allowExpensiveSolarPanels=Allow Expensive Solar Panels -config.techreborn.allowExpensiveSolarPanels.tooltip= - -config.techreborn.advancedDrillTier=Advanced Drill Power Tier -config.techreborn.advancedDrillTier.tooltip= -config.techreborn.lapotronPackTier=Lapotron Pack Power Tier -config.techreborn.lapotronPackTier.tooltip= -config.techreborn.lithiumBatpackTier=Lithium Batpack Power Tier -config.techreborn.lithiumBatpackTier.tooltip= -config.techreborn.omniToolTier=OmniTool Tier -config.techreborn.omniToolTier.tooltip= -config.techreborn.rockCutterTier=Rock Cutter Power Tier -config.techreborn.rockCutterTier.tooltip= -config.techreborn.gravityChestplateTier=Gravity Chestplates Power Tier -config.techreborn.gravityChestplateTier.tooltip= -config.techreborn.centrifugeTier=Centrifuge Power Tier -config.techreborn.centrifugeTier.tooltip= -config.techreborn.thermalGeneratorTier=Thermal Generator Power Tier -config.techreborn.thermalGeneratorTier.tooltip= - -config.techreborn.thermalGeneratorPower=Thermal Generator Output -config.techreborn.thermalGeneratorPower.tooltip= -config.techreborn.centrifugePowerUsage=Centrifuge Input per tick -config.techreborn.centrifugePowerUsage.tooltip= - -config.techreborn.advancedDrillMaxCharge=Maximum charge for Advanced Drill -config.techreborn.advancedDrillMaxCharge.tooltip= -config.techreborn.lapotronPackMaxCharge=Maximum charge for -config.techreborn.lapotronPackMaxCharge.tooltip= -config.techreborn.omniToolMaxCharge=Maximum charge for -config.techreborn.omniToolMaxCharge.tooltip= -config.techreborn.lithiumBatpackMaxCharge=Maximum charge for Lithium Batpack -config.techreborn.lithiumBatpackMaxCharge.tooltip= -config.techreborn.rockCutterMaxCharge=Maximum charge for Rock Cutter -config.techreborn.rockCutterMaxCharge.tooltip= -config.techreborn.gravityChestplateMaxCharge=Maximum charge for Gravity Chestplate -config.techreborn.gravityChestplateMaxCharge.tooltip= -config.techreborn.centrifugeMaxCharge=Maximum charge for Centrifuge -config.techreborn.centrifugeMaxCharge.tooltip= -config.techreborn.thermalGeneratorMaxCharge=Maximum charge for Thermal Generator -config.techreborn.thermalGeneratorMaxCharge.tooltip= -config.techreborn.aveargeEuOutTickTim=Eu out time -config.techreborn.aveargeEuOutTickTime.tooltip=How often in ticks to update the eu out -config.techreborn.euPerRF=EU Conversion -config.techreborn.euPerRF.tooltip=The amount of RF that equal 1 EU. 4 by default, so 4RF == 1EU and .25EU == 1RF -config.techreborn.farmeu=Farm EU per Tick -config.techreborn.farmeu.tooltip=Amount of eu used per tick by the farm -config.techreborn.enableRF=Enable RF support -config.techreborn.enableRF.tooltip= Enable RF support for all machines. -config.techreborn.enableEU=Enable EU support -config.techreborn.enableEU.tooltip= Enable EU support for all machines. -config.techreborn.connectTextures=Enable Connected textures -config.techreborn.connectTextures.tooltip= Enable Connected textures -config.techreborn.rainExplosions=Enable machine explosions when rain hits -config.techreborn.rainExplosions.tooltip= When this is enabled machines will explode when they come in contact with rain. -config.techreborn.allowExpensiveWatermill.tooltip= Allow Expensive Watermill -config.techreborn.allowExpensiveWindmill.tooltip= Allow Expensive Watermill -config.techreborn.allowBopRecipes.tooltip= Allow BOP Recipes -config.techreborn.allowForestryRecipes.tooltip= Allow Forestry Recipes -config.techreborn.allowNaturaRecipes.tooltip= Allow Natura Recipes -config.techreborn.aesuMaxOutput.tooltip= AESU max output -config.techreborn.aesuMaxStorage.tooltip= AESU max storage -config.techreborn.baseLesuOutput.tooltip= Base LESU output -config.techreborn.cloakingDeviceEUTick.tooltip= Cloaking Device Eu/Tick -config.techreborn.cloakingDeviceMaxCharge.tooltip= Cloaking Device Max Charge -config.techreborn.cloakingDeviceTier.tooltip= Cloaking Device Tier -config.techreborn.dragoneggsiphonerPower.tooltip=Dragon Egg Siphoner Eu/Tick -config.techreborn.extraOutputPerLesuBlock.tooltip= LESU Storage Block extra output -config.techreborn.heatGeneratorOutput.tooltip= Heat Generator output -config.techreborn.lapotronicOrbMaxCharge= Lapotronic Orb Max Charge -config.techreborn.lapotronicOrbTier.tooltip= Lapatronic Orb Tier -config.techreborn.lesuStoragePerBlock.tooltip= LESU Storage Block extra output -config.techreborn.showChargehud.tooltip=Show Charge Hud -#Config UU -config.techreborn.allow.UUrecipesAluminumDust= Allow UU recipes for AluminiumDust -config.techreborn.allow.UUrecipesCoal= Allow UU recipes for Coal -config.techreborn.allow.UUrecipesCopperDust= Allow UU recipes for Copper Dust -config.techreborn.allow.UUrecipesDiamond= Allow UU recipes for Diamond -config.techreborn.allow.UUrecipesEmerald= Allow UU recipes for Emerald -config.techreborn.allow.UUrecipesEmeraldOre= Allow UU recipes for Emerald Ore -config.techreborn.allow.UUrecipesGoldDust= Allow UU recipes for Gold Dust -config.techreborn.allow.UUrecipesGoldOre= Allow UU recipes for Gold Ore -config.techreborn.allow.UUrecipesIronDust= Allow UU recipes for Iron Dust -config.techreborn.allow.UUrecipesIronOre= Allow UU recipes for Iron Ore -config.techreborn.allow.UUrecipesLapis= Allow UU recipes for Lapis -config.techreborn.allow.UUrecipesLeadDust= Allow UU recipes for Lapis dust -config.techreborn.allow.UUrecipesPlatinumDust= Allow UU recipes for Platinum Dust -config.techreborn.allow.UUrecipesRedStone= Allow UU recipes for Redstone -config.techreborn.allow.UUrecipesResin= Allow UU recipes for Sticky Resin -config.techreborn.allow.UUrecipesTinDust= Allow UU recipes for Tin Dust -config.techreborn.allow.UUrecipesTitaniumDust= Allow UU recipes for Titanium Dust -config.techreborn.allow.UUrecipesTungstenDust= Allow UU recipes for Tungsten Dust -config.techreborn.allow.uurecipesBone= Allow UU recipes for Bone -config.techreborn.allow.uurecipesCactus= Allow UU recipes for Cactus -config.techreborn.allow.uurecipesCocoa= Allow UU recipes for Cocoa -config.techreborn.allow.uurecipesEnderPearl= Allow UU recipes for Ender Pearl -config.techreborn.allow.uurecipesFeather= Allow UU recipes for Feather -config.techreborn.allow.uurecipesGlass= Allow UU recipes for Glass -config.techreborn.allow.uurecipesGlowstoneBlock= Allow UU recipes for Glowstone Blocks -config.techreborn.allow.uurecipesGrass= Allow UU recipes for Grass -config.techreborn.allow.uurecipesInk= Allow UU recipes for Ink Sacks -config.techreborn.allow.uurecipesIridiamOre= Allow UU recipes for IridiamOre -config.techreborn.allow.uurecipesLava= Allow UU recipes for Lava -config.techreborn.allow.uurecipesLilypad= Allow UU recipes for Lilypad -config.techreborn.allow.uurecipesObsidian= Allow UU recipes for Obsidian -config.techreborn.allow.uurecipesSnowBall= Allow UU recipes for Snowball -config.techreborn.allow.uurecipesSnowBlock= Allow UU recipes for SnowBlock -config.techreborn.allow.uurecipesStone= Allow UU recipes for Stone -config.techreborn.allow.uurecipesSugarCane= Allow UU recipes for SugarCane -config.techreborn.allow.uurecipesVine= Allow UU recipes for Vine -config.techreborn.allow.uurecipesWater= Allow UU recipes for Water -config.techreborn.allow.uurecipesWood= Allow UU recipes for Wood - -#Config Tooltips UU -config.techreborn.allow.UUrecipesAluminumDust.tooltip= Allow UU recipes for AluminiumDust -config.techreborn.allow.UUrecipesCoal.tooltip= Allow UU recipes for Coal -config.techreborn.allow.UUrecipesCopperDust.tooltip= Allow UU recipes for Copper Dust -config.techreborn.allow.UUrecipesDiamond.tooltip= Allow UU recipes for Diamond -config.techreborn.allow.UUrecipesEmerald.tooltip= Allow UU recipes for Emerald -config.techreborn.allow.UUrecipesEmeraldOre.tooltip= Allow UU recipes for Emerald Ore -config.techreborn.allow.UUrecipesGoldDust.tooltip= Allow UU recipes for Gold Dust -config.techreborn.allow.UUrecipesGoldOre.tooltip= Allow UU recipes for Gold Ore -config.techreborn.allow.UUrecipesIronDust.tooltip= Allow UU recipes for Iron Dust -config.techreborn.allow.UUrecipesIronOre.tooltip= Allow UU recipes for Iron Ore -config.techreborn.allow.UUrecipesLapis.tooltip= Allow UU recipes for Lapis -config.techreborn.allow.UUrecipesLeadDust.tooltip= Allow UU recipes for Lapis dust -config.techreborn.allow.UUrecipesPlatinumDust.tooltip= Allow UU recipes for Platinum Dust -config.techreborn.allow.UUrecipesRedStone.tooltip= Allow UU recipes for Redstone -config.techreborn.allow.UUrecipesResin.tooltip= Allow UU recipes for Sticky Resin -config.techreborn.allow.UUrecipesTinDust.tooltip= Allow UU recipes for Tin Dust -config.techreborn.allow.UUrecipesTitaniumDust.tooltip= Allow UU recipes for Titanium Dust -config.techreborn.allow.UUrecipesTungstenDust.tooltip= Allow UU recipes for Tungsten Dust -config.techreborn.allow.hiderecipes.tooltip= Hide UU recipes from NEI -config.techreborn.allow.uurecipesBone.tooltip= Allow UU recipes for Bone -config.techreborn.allow.uurecipesCactus.tooltip= Allow UU recipes for Cactus -config.techreborn.allow.uurecipesCocoa.tooltip= Allow UU recipes for Cocoa -config.techreborn.allow.uurecipesEnderPearl.tooltip= Allow UU recipes for Ender Pearl -config.techreborn.allow.uurecipesFeather.tooltip= Allow UU recipes for Feather -config.techreborn.allow.uurecipesGlass.tooltip= Allow UU recipes for Glass -config.techreborn.allow.uurecipesGlowstoneBlock.tooltip= Allow UU recipes for Glowstone Blocks -config.techreborn.allow.uurecipesGrass.tooltip= Allow UU recipes for Grass -config.techreborn.allow.uurecipesInk.tooltip= Allow UU recipes for Ink Sacks -config.techreborn.allow.uurecipesIridiamOre.tooltip= Allow UU recipes for IridiamOre -config.techreborn.allow.uurecipesLava.tooltip= Allow UU recipes for Lava -config.techreborn.allow.uurecipesLilypad.tooltip= Allow UU recipes for Lilypad -config.techreborn.allow.uurecipesObsidian.tooltip= Allow UU recipes for Obsidian -config.techreborn.allow.uurecipesSnowBall.tooltip= Allow UU recipes for Snowball -config.techreborn.allow.uurecipesSnowBlock.tooltip= Allow UU recipes for SnowBlock -config.techreborn.allow.uurecipesStone.tooltip= Allow UU recipes for Stone -config.techreborn.allow.uurecipesSugarCane.tooltip= Allow UU recipes for SugarCane -config.techreborn.allow.uurecipesVine.tooltip= Allow UU recipes for Vine -config.techreborn.allow.uurecipesWater.tooltip= Allow UU recipes for Water -config.techreborn.allow.uurecipesWood.tooltip= Allow UU recipes for Wood - - -config.techreborn.allow.tungstonOre.tooltip= Allow UU recipes for Tungston Ore -config.techreborn.bauxiteOre.rare.tooltip=rarity of Bauxite Ore -config.techreborn.cinnabarOre.rare.tooltip=rarity of Cinnabar Ore -config.techreborn.copperOre.rare.tooltip=rarity of Copper Ore -config.techreborn.galenaOre.rare.tooltip=rarity of Galena Ore -config.techreborn.iridiumOre.rare.tooltip=rarity of Iridium Ore -config.techreborn.leadOre.rare.tooltip=rarity of Lead Ore -config.techreborn.olivineOre.rare.tooltip=rarity of Olivine Ore -config.techreborn.pyriteOre.rare.tooltip=rarity of Pyrite Ore -config.techreborn.rubyOre.rare.tooltip=rarity of Ruby Ore -config.techreborn.sapphireOre.rare.tooltip=rarity of Sapphire Ore -config.techreborn.sheldoniteOre.rare.tooltip=rarity of Sheldonite Ore -config.techreborn.silverOre.rare.tooltip=rarity of Silver Ore -config.techreborn.sodaliteOre.rare.tooltip=rarity of Sodalite Ore -config.techreborn.sphaleriteOre.rare.tooltip=rarity of Sphalerite Ore -config.techreborn.tinOre.rare.tooltip=rarity of Tin Ore -config.techreborn.tungstenOre.rare.tooltip=rarity of Tungsten Ore - -config.techreborn.oreUnifer=Ore Unification -config.techreborn.oreUnifer.tooltip=Enable/Disable the auto ore unification - -config.techreborn.aesuMaxOutput=AESU max output -config.techreborn.aesuMaxStorage=AESU max storage -config.techreborn.aveargeEuOutTickTime=Time to calculate average output -config.techreborn.baseLesuOutput=Base lesu output -config.techreborn.cloakingDeviceEUTick=Clocking Device EU usage per tick -config.techreborn.cloakingDeviceMaxCharge=Cloaking Device Max Charge -config.techreborn.cloakingDeviceTier=Cloaking Device Tier -config.techreborn.dragoneggsiphonerPower=Dragon Egg Siphoner EU output -config.techreborn.extraOutputPerLesuBlock=LESU block power -config.techreborn.heatGeneratorOutput=Heat Generator Output -config.techreborn.lapotronicOrbTier=Lapotronic Orb Tier -config.techreborn.lesuStoragePerBlock=Lesu Storage Per Block -config.techreborn.showChargehud=Show charge HUD -config.techreborn.allowExpensiveWatermill=Allow Expensive Watermill -config.techreborn.allowExpensiveWindmill=Allow Expensive Windmill - - -#ConfigGui -config.techreborn.category.general=Основные настройки -config.techreborn.category.world=Настройки мира -config.techreborn.category.power=Настройки энергии -config.techreborn.category.crafting=Настройки крафта -config.techreborn.category.uu=Настройки UU -config.techreborn.category.emc=Настройки EMC -config.techreborn.category.integration=Интеграция - -tr.configgui.category.trGeneral.tooltip=Основные -tr.configgui.category.trWorld.tooltip=Мир -tr.configgui.category.trPower.tooltip=Энергия -tr.configgui.category.trCrafting.tooltip=Крафтинг -tr.configgui.category.truu.tooltip=UU -tr.configgui.category.tremc.tooltip=EMC -tr.configgui.category.treinter.tooltip=Интеграция с модами - -#Recipe Handlers -techreborn.recipe.alloysmelter=Рецепт завода сплавов -techreborn.recipe.ironalloysmelter=Рецепт железного завода сплавов -techreborn.recipe.assemblingmachine=Рецепт сборочной машины -techreborn.recipe.blastfurnace=Рецепт доменной печи -techreborn.recipe.centrifuge=Рецепт центрифуги -techreborn.recipe.grinder=Рецепт промышленного шлифовального станка -techreborn.recipe.industrialelectrolyzer=Рецепт промышленного электролизера -techreborn.recipe.industrialsawmill=Рецепт промышленной лесопилки -techreborn.recipe.lathe=Рецепт токарного станка -techreborn.recipe.platecuttingmachine=Plate Cutting Machine Recipe -techreborn.recipe.chemicalReactor=Рецепт химического реактора -techreborn.recipe.implosioncompressor=Implosion Compressor - -#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.allPlayers=All Players -techreborn.message.onlyOtherPlayers=Only Other Players -techreborn.message.onlyYou=Only You -techreborn.message.nanosaberActive=Active -techreborn.message.nanosaberInactive=Inactive - -#Cables -Cable.copperCable.name=Медный кабель -Cable.insulatedCopperCable.name=Изолированный медный кабель -Cable.goldCable.name=Золотой кабель -Cable.insulatedGoldCable.name=Изолированный золотой кабель -Cable.doubleInsulatedGoldCable.name=Золотой кабель двойной изоляции -Cable.ironCable.name=Железный кабель -Cable.copperCable.name=Медный кабель -Cable.insulatedIronCable.name=Изолированный железный кабель -Cable.doubleInsulatedIronCable.name=Железный кабель двойной изоляции -Cable.trippleInsulatedIronCable.name=Железный кабель тройной изоляции -Cable.glassFiberCable.name=Стекловолоконный кабель -Cable.tinCable.name=Оловянный кабель - -desc.uninsulatedCable=Наносит урон существам! -desc.euTransfer=Трансфер еЭ: -desc.tier=Уровень: - - -#Manual -techreborn.manual.contents=Содержание -techreborn.manual.gettingstarted=Начало -techreborn.manual.generatingpower=Генерация энергии -techreborn.manual.basicmachines=Базовые машины -techreborn.manual.advancedmachines=Продвинутые машины -techreborn.manual.tools=Инструменты - -techreborn.manual.gettingrubber=Получение резины -techreborn.manual.backbutton=Назад -techreborn.manual.gettingplates=Crafting Plates - -item.techreborn.advancedDrill.description=This Tool is a advanced version of the mining drill, when this item is activated it will dig out a 3x3. -tile.techreborn.alloyfurnace.description=This Machine is your first step into TechReborn with this you can fuse metals into other metals. These other metals can be used to craft the higher tier machines. -tile.techreborn.alloysmelter.description=This machine is a upgraded version of the Alloy Furnace, This block requires EU or RF. -tile.techreborn.assemblingmachine.description=This block is used to craft some of the more complex machines that can't be crafted in a normal crafting table. -tile.techreborn.blastfurnace.description=This Machine needs a 3x4x3 of machine casings behind it to increase its internal heat, The hotter the machine is the more recipes will open up to you. This machine also needs EU/RF. - -keys.techreborn.category=Категория TechReborn -keys.techreborn.config=Конфигурация - -achievement.TechReborn:ore_PickUp=Новая руда! -achievement.TechReborn:ore_PickUp.desc=Добудьте руду из мода TechReborn -achievement.TechReborn:centrifuge_Craft=Вращение -achievement.TechReborn:thermalgen_Craft=Нагрев - -# JEI Integration -techreborn.jei.recipe.start.cost=Начало: %sеЭ -techreborn.jei.recipe.running.cost=еЭ/т: %s -techreborn.jei.recipe.processing.time.1=Время: %s тиков -techreborn.jei.recipe.processing.time.2=(%s сек.) -jei.techreborn.scrapbox.name=Opening Scrapboxes -techreborn.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.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.desc.scrapBoxNoDispenser=Scrapboxes can be opened by a simple use in hand! - -techreborn.jei.category.alloy.furnace=Сплавовая печь - -#Death Messages -death.attack.shock=%s получил(а) удар током - - -#Entitys -entity.techreborn.nuke.name=Nuke - -tooltip.wip=Скоро -tooltip.upBroken=Upgrades DO NOT function! -tooltip.ingredient=На данный момент является только ингридиентом для крафта diff --git a/src/main/resources/assets/techreborn/lang/zh_CN.lang b/src/main/resources/assets/techreborn/lang/zh_CN.lang deleted file mode 100644 index 0168421f9..000000000 --- a/src/main/resources/assets/techreborn/lang/zh_CN.lang +++ /dev/null @@ -1,1018 +0,0 @@ - -item.missingRecipe.name=Missing Recipe Placeholder - -itemGroup.techreborn=Tech Reborn - -#machines -tile.techreborn.gasTurbine.name=燃气轮机 -tile.techreborn.industrialBlock.name=工业 -tile.techreborn.thermalGenerator.name=热敏发电机 -tile.techreborn.quantumTank.name=量子缸 -tile.techreborn.quantumChest.name=量子箱 -tile.techreborn.digitalChest.name=数码箱 -tile.techreborn.centrifuge.name=工业离心机 -tile.techreborn.rollingmachine.name=辊压机 -tile.techreborn.machineCasing.standard.name=标准机械外壳 -tile.techreborn.machineCasing.reinforced.name=强化机械外壳 -tile.techreborn.machineCasing.advanced.name=高级机械外壳 -tile.techreborn.blastfurnace.name=工业高炉 -tile.techreborn.alloysmelter.name=电力合金冶炼炉 -tile.techreborn.matterfabricator.name=物质机 -tile.techreborn.implosioncompressor.name=聚爆压缩机 -tile.techreborn.industrialgrinder.name=工业磨粉机 -tile.techreborn.chunkloader.name=工业区块加载器 -tile.techreborn.magicenergyconverter.name=魔法能源转化器 -tile.techreborn.dieselgenerator.name=柴油发电机 -tile.techreborn.industrialelectrolyzer.name=工业电解器 -tile.techreborn.magicenergyabsorber.name=魔法能源吸收器 -tile.techreborn.assemblingmachine.name=装配机 -tile.techreborn.semifluidgenerator.name=半流质发电机 -tile.techreborn.alloyfurnace.name=铁制合金冶炼炉 -tile.techreborn.chemicalreactor.name=化学反应器 -tile.techreborn.dragoneggsiphoner.name=龙蛋能源吸取器 -tile.techreborn.idsu.name=IDSU -tile.techreborn.aesu.name=AESU -tile.techreborn.lesu.name=LESU -tile.techreborn.lesustorage.name=LESU方块 -tile.techreborn.distillationtower.name=蒸馏塔 -tile.techreborn.electriccraftingtable.name=电动工作台 -tile.techreborn.vacuumfreezer.name=真空冷冻器 -tile.techreborn.plasmagenerator.name=等离子体发电机 -tile.techreborn.fusioncontrolcomputer.name=聚变控制计算机 -tile.techreborn.computercube.name=TechReborn电脑主机 -tile.techreborn.fusioncoil.name=核聚变线圈 -tile.techreborn.lightningrod.name=避雷针 -tile.techreborn.assemblinmachine.name=装配机 -tile.techreborn.heatgenerator.name=热能发电机 -tile.techreborn.machineFrame.aluminum.name=铝机壳 -tile.techreborn.machineFrame.iron.name=铁机壳 -tile.techreborn.machineFrame.bronze.name=青铜机壳 -tile.techreborn.machineFrame.brass.name=黄铜机壳 -tile.techreborn.machineFrame.steel.name=钢机壳 -tile.techreborn.machineFrame.titanium.name=钛机壳 -tile.techreborn.industrialsawmill.name=工业锯木机 -tile.techreborn.chargebench.name=充电台 -tile.techreborn.playerDetector.all.name=玩家检测器 (所有玩家) -tile.techreborn.playerDetector.others.name=玩家检测器 (其他玩家) -tile.techreborn.playerDetector.you.name=玩家检测器 (你自己) -tile.techreborn.generator.name=火力发电机 -tile.techreborn.extractor.name=提取机 -tile.techreborn.grinder.name=磨粉机 -tile.techreborn.compressor.name=压缩机 -tile.techreborn.electricfurnace.name=电炉 -tile.techreborn.machineFrame.highlyAdvancedMachine.name=高度先进机械方块 -tile.techreborn.machineFrame.advancedMachine.name=高级机器外壳 -tile.techreborn.machineFrame.machine.name=基础机器外壳 -tile.techreborn.ore2.copper.name=铜矿石 -tile.techreborn.ore2.tin.name=锡矿石 -tile.techreborn.solarpanel.name=太阳能板 -tile.techreborn.watermill.name=水力发电机 -tile.techreborn.windmill.name=风力发电机 -tile.techreborn.ironfurnace.name=铁炉 -tile.techreborn.recycler.name=回收机 -tile.techreborn.scrapboxinator.name=废料盒拆包器 -tile.techreborn.batbox.name=储电盒 -tile.techreborn.mfe.name=MFE -tile.techreborn.mfsu.name=MFSU -tile.techreborn.reinforcedglass.name=防爆玻璃 -tile.techreborn.nuke.name=核弹 -tile.techreborn.lvtransformer.name=低压变压器 -tile.techreborn.mvtransformer.name=中压变压器 -tile.techreborn.hvtransformer.name=高压变压器 - - -#Blocks -tile.techreborn.rubberlog.name=橡胶木 -tile.techreborn.rubberplank.name=橡胶木板 -tile.techreborn.rubberleaves.name=橡胶树叶 -tile.techreborn.rubbersapling.name=橡胶树苗 - -tile.techreborn.ironfence.name=铁栅栏 - -#Ores -tile.techreborn.ore.galena.name=方铅矿石 -tile.techreborn.ore.iridium.name=铱矿石 -tile.techreborn.ore.ruby.name=红宝石矿石 -tile.techreborn.ore.sapphire.name=蓝宝石矿石 -tile.techreborn.ore.bauxite.name=铝土矿石 -tile.techreborn.ore.pyrite.name=黄铁矿石 -tile.techreborn.ore.cinnabar.name=朱砂矿石 -tile.techreborn.ore.sphalerite.name=闪锌矿石 -tile.techreborn.ore.tungsten.name=钨矿石 -tile.techreborn.ore.sheldonite.name=铂矿石 -tile.techreborn.ore.peridot.name=橄榄石矿石 -tile.techreborn.ore.sodalite.name=方钠石矿石 -tile.techreborn.ore.tetrahedrite.name=黝铜矿石 -tile.techreborn.ore.cassiterite.name=锡石矿石 -tile.techreborn.ore.lead.name=铅矿石 -tile.techreborn.ore.silver.name=银矿石 - -#Storage -tile.techreborn.storage.silver.name=银块 -tile.techreborn.storage.aluminum.name=铝块 -tile.techreborn.storage.titanium.name=钛块 -tile.techreborn.storage.chrome.name=铬块 -tile.techreborn.storage.steel.name=钢块 -tile.techreborn.storage.brass.name=黄铜块 -tile.techreborn.storage.lead.name=铅块 -tile.techreborn.storage.electrum.name=琥珀金块 -tile.techreborn.storage.zinc.name=锌块 -tile.techreborn.storage.platinum.name=铂块 -tile.techreborn.storage.tungsten.name=钨块 -tile.techreborn.storage.nickel.name=镍块 -tile.techreborn.storage.invar.name=殷钢块 -tile.techreborn.storage.osmium.name=锇块 -tile.techreborn.storage.iridium.name=铱块 -tile.techreborn.storage2.tungstensteel.name=钨钢块 -tile.techreborn.storage2.lodestone.name=天然磁石块 -tile.techreborn.storage2.tellurium.name=碲块 -tile.techreborn.storage2.iridium_reinforced_tungstensteel.name=铱强化钨钢块 -tile.techreborn.storage2.iridium_reinforced_stone.name=铱强化石 -tile.techreborn.storage2.ruby.name=红宝石块 -tile.techreborn.storage2.sapphire.name=蓝宝石块 -tile.techreborn.storage2.peridot.name=橄榄石块 -tile.techreborn.storage2.yellowGarnet.name=黄色石榴石块 -tile.techreborn.storage2.redGarnet.name=红色石榴石块 -tile.techreborn.storage2.refinedIron.name=精炼铁块 -tile.techreborn.storage2.copper.name=铜块 -tile.techreborn.storage2.tin.name=锡块 -tile.techreborn.farm.name=Farm - - -#Fluids -tile.techreborn.berylium.name=液态铍 -tile.techreborn.calcium.name=液态钙 -tile.techreborn.calciumcarbonate.name=熔融碳酸钙 -tile.techreborn.chlorite.name=亚氯酸盐 -tile.techreborn.deuterium.name=氘 -tile.techreborn.glyceryl.name=硝化甘油 -tile.techreborn.helium.name=氦 -tile.techreborn.helium3.name=氦-3 -tile.techreborn.heliumplasma.name=等离子氦 -tile.techreborn.hydrogen.name=氢 -tile.techreborn.lithium.name=液态锂 -tile.techreborn.mercury.name=汞 -tile.techreborn.methane.name=甲烷 -tile.techreborn.nitrocoalfuel.name=硝基煤油 -tile.techreborn.nitrofuel.name=硝基燃油 -tile.techreborn.nitrogen.name=氮 -tile.techreborn.nitrogendioxide.name=二氧化氮 -tile.techreborn.potassium.name=液态钾 -tile.techreborn.silicon.name=液态硅 -tile.techreborn.sodium.name=液态钠 -tile.techreborn.sodiumpersulfate.name=过硫酸钠 -tile.techreborn.tritium.name=氚 -tile.techreborn.wolframium.name=液态钨 -tile.techreborn.supercondensator.name=超级电容 -fluid.fluid.fluidberylium=铍 -fluid.fluid.fluidcalcium=钙 -fluid.fluid.fluidcalciumcarbonate=碳酸钙 -fluid.fluid.fluidchlorite=亚氯酸盐 -fluid.fluid.fluiddeuterium=氘 -fluid.fluid.fluidglyceryl=硝化甘油 -fluid.fluid.fluidhelium=氦 -fluid.fluid.fluidhelium3=氦-3 -fluid.fluid.fluidheliumplasma=等离子氦 -fluid.fluid.fluidhydrogen=氢 -fluid.fluid.fluidlithium=锂 -fluid.fluid.fluidmercury=汞 -fluid.fluid.fluidmethane=甲烷 -fluid.fluid.fluidnitrocoalfuel=硝基煤燃料 -fluid.fluid.fluidnitrofuel=硝基燃油 -fluid.fluid.fluidnitrogen=氮 -fluid.fluid.fluidnitrogendioxide=二氧化氮 -fluid.fluid.fluidpotassium=钾 -fluid.fluid.fluidsilicon=硅 -fluid.fluid.fluidsodium=钠 -fluid.fluid.fluidsodiumpersulfate=过硫酸钠 -fluid.fluid.fluidtritium=氚 -fluid.fluid.fluidwolframium=钨 -fluid.tile.techreborn.glyceryl=硝化甘油 -fluid.tile.techreborn.berylium=铍 -fluid.tile.techreborn.chlorite=绿泥石 -fluid.tile.techreborn.helium3=氦-3 -fluid.tile.techreborn.deuterium=氘 -fluid.tile.techreborn.helium=氦 -fluid.tile.techreborn.calciumcarbonate=碳酸钙 -fluid.titanium.name=熔融钛 -fluid.chrome.name=熔融铬 -fluid.platinum.name=熔融铂 -fluid.iridium.name=熔融铱 -fluid.invar.name=熔融殷钢 -fluid.tungsten.name=熔融钨 - -#Dusts -item.techreborn.dust.almandine.name=铁铝榴石粉 -item.techreborn.dust.aluminumBrass.name=铝黄铜粉 -item.techreborn.dust.aluminum.name=铝粉 -item.techreborn.dust.alumite.name=耐酸铝粉 -item.techreborn.dust.andradite.name=钙铁榴石粉 -item.techreborn.dust.antimony.name=锑粉 -item.techreborn.dust.ardite.name=阿迪特粉 -item.techreborn.dust.ashes.name=灰烬 -item.techreborn.dust.basalt.name=玄武岩粉 -item.techreborn.dust.bauxite.name=铝土矿粉 -item.techreborn.dust.biotite.name=黑云母粉 -item.techreborn.dust.brass.name=黄铜粉 -item.techreborn.dust.bronze.name=青铜粉 -item.techreborn.dust.cadmium.name=镉粉 -item.techreborn.dust.calcite.name=方解石粉 -item.techreborn.dust.charcoal.name=木炭粉 -item.techreborn.dust.chrome.name=铬粉 -item.techreborn.dust.cinnabar.name=朱砂粉 -item.techreborn.dust.clay.name=粘土粉 -item.techreborn.dust.coal.name=煤粉 -item.techreborn.dust.cobalt.name=钴粉 -item.techreborn.dust.copper.name=铜粉 -item.techreborn.dust.cupronickel.name=白铜粉 -item.techreborn.dust.darkAshes.name=黑色灰烬 -item.techreborn.dust.darkIron.name=玄铁粉 -item.techreborn.dust.diamond.name=钻石粉 -item.techreborn.dust.electrum.name=琥珀金粉 -item.techreborn.dust.emerald.name=绿宝石粉 -item.techreborn.dust.enderEye.name=末影之眼粉 -item.techreborn.dust.enderPearl.name=末影珍珠粉 -item.techreborn.dust.endstone.name=末地石粉 -item.techreborn.dust.flint.name=燧石粉 -item.techreborn.dust.gold.name=金粉 -item.techreborn.dust.graphite.name=石墨粉 -item.techreborn.dust.grossular.name=钙铝榴石粉 -item.techreborn.dust.indium.name=铟粉 -item.techreborn.dust.invar.name=殷钢粉 -item.techreborn.dust.iridium.name=铱粉 -item.techreborn.dust.iron.name=铁粉 -item.techreborn.dust.lazurite.name=青金石粉 -item.techreborn.dust.lead.name=铅粉 -item.techreborn.dust.magnesium.name=镁粉 -item.techreborn.dust.manganese.name=锰粉 -item.techreborn.dust.marble.name=大理石粉 -item.techreborn.dust.netherrack.name=地狱岩粉 -item.techreborn.dust.nickel.name=镍粉 -item.techreborn.dust.osmium.name=锇粉 -item.techreborn.dust.peridot.name=橄榄石粉 -item.techreborn.dust.phosphorous.name=磷粉 -item.techreborn.dust.platinum.name=铂粉 -item.techreborn.dust.potassiumFeldspar.name=钾长石粉 -item.techreborn.dust.pyrite.name=黄铁矿粉 -item.techreborn.dust.pyrope.name=镁铝榴石粉 -item.techreborn.dust.redGarnet.name=红色石榴石粉 -item.techreborn.dust.ruby.name=红宝石粉 -item.techreborn.dust.saltpeter.name=硝石粉 -item.techreborn.dust.sapphire.name=蓝宝石粉 -item.techreborn.dust.silicon.name=硅粉 -item.techreborn.dust.silver.name=银粉 -item.techreborn.dust.sodalite.name=方钠石粉 -item.techreborn.dust.spessartine.name=锰铝榴石粉 -item.techreborn.dust.sphalerite.name=闪锌矿粉 -item.techreborn.dust.steel.name=钢粉 -item.techreborn.dust.sulfur.name=硫粉 -item.techreborn.dust.tellurium.name=碲粉 -item.techreborn.dust.teslatite.name=蓝石粉 -item.techreborn.dust.tetrahedrite.name=黝铜矿粉 -item.techreborn.dust.tin.name=锡粉 -item.techreborn.dust.titanium.name=钛粉 -item.techreborn.dust.tungsten.name=钨粉 -item.techreborn.dust.uvarovite.name=钙铬榴石粉 -item.techreborn.dust.vinteum.name=古蓝石粉 -item.techreborn.dust.voidstone.name=虚空石粉 -item.techreborn.dust.yellowGarnet.name=黄色石榴石粉 -item.techreborn.dust.zinc.name=锌粉 -item.techreborn.dust.galena.name=方铅矿粉 -item.techreborn.dust.sawDust.name=锯末 -item.techreborn.dust.olivine.name=橄榄石粉 -item.techreborn.dust.andesite.name=安山岩粉 -item.techreborn.dust.diorite.name=闪长岩粉 -item.techreborn.dust.granite.name=花岗岩粉 - -item.techreborn.ingot.refinedIron.name=精炼铁锭 -item.techreborn.wrench.name=扳手 -item.techreborn.cable.COPPER.name=铜质导线 -item.techreborn.cable.TIN.name=锡质导线 -item.techreborn.cable.GOLD.name=金质导线 -item.techreborn.cable.HV.name=高压导线 -item.techreborn.cable.GLASSFIBER.name=玻璃纤维导线 -item.techreborn.cable.ICOPPER.name=绝缘铜质导线 -item.techreborn.cable.IGOLD.name=绝缘金质导线 -item.techreborn.cable.IHV.name=绝缘高压导线 -item.techreborn.scrapbox.name=废料盒 -item.techreborn.part.carbonmesh.name=碳网 -item.techreborn.part.carbonfiber.name=碳纤维 - -#Small Dusts -item.techreborn.dustsmall.almandine.name=小堆铁铝榴石粉 -item.techreborn.dustsmall.aluminum.name=小堆铝粉 -item.techreborn.dustsmall.andradite.name=小堆钙铁榴石粉 -item.techreborn.dustsmall.ashes.name=小堆灰烬 -item.techreborn.dustsmall.basalt.name=小堆玄武岩粉 -item.techreborn.dustsmall.bauxite.name=小堆铝土矿粉 -item.techreborn.dustsmall.brass.name=小堆黄铜粉 -item.techreborn.dustsmall.bronze.name=小堆青铜粉 -item.techreborn.dustsmall.calcite.name=小堆方解石粉 -item.techreborn.dustsmall.charcoal.name=小堆木炭粉 -item.techreborn.dustsmall.chrome.name=小堆铬粉 -item.techreborn.dustsmall.cinnabar.name=小堆朱砂粉 -item.techreborn.dustsmall.clay.name=小堆粘土粉 -item.techreborn.dustsmall.coal.name=小堆煤粉 -item.techreborn.dustsmall.copper.name=小堆铜粉 -item.techreborn.dustsmall.darkAshes.name=小堆黑色灰烬 -item.techreborn.dustsmall.diamond.name=小堆钻石粉 -item.techreborn.dustsmall.electrum.name=小堆琥珀金粉 -item.techreborn.dustsmall.emerald.name=小堆绿宝石粉 -item.techreborn.dustsmall.enderEye.name=小堆末影之眼粉 -item.techreborn.dustsmall.enderPearl.name=小堆末影珍珠粉 -item.techreborn.dustsmall.endstone.name=小堆末地石粉 -item.techreborn.dustsmall.flint.name=小堆燧石粉 -item.techreborn.dustsmall.galena.name=小堆方铅矿粉 -item.techreborn.dustsmall.glowstone.name=小堆萤石粉 -item.techreborn.dustsmall.gold.name=小堆金粉 -item.techreborn.dustsmall.grossular.name=小堆钙铝榴石粉 -item.techreborn.dustsmall.invar.name=小堆殷钢粉 -item.techreborn.dustsmall.iron.name=小堆铁粉 -item.techreborn.dustsmall.lazurite.name=小堆青金石粉 -item.techreborn.dustsmall.lead.name=小堆铅粉 -item.techreborn.dustsmall.magnesium.name=小堆镁粉 -item.techreborn.dustsmall.manganese.name=小堆锰粉 -item.techreborn.dustsmall.marble.name=小堆大理石粉 -item.techreborn.dustsmall.netherrack.name=小堆地狱岩粉 -item.techreborn.dustsmall.nickel.name=小堆镍粉 -item.techreborn.dustsmall.obsidian.name=小堆黑曜石粉 -item.techreborn.dustsmall.peridot.name=小堆橄榄石粉 -item.techreborn.dustsmall.phosphorous.name=小堆磷粉 -item.techreborn.dustsmall.platinum.name=小堆铂粉 -item.techreborn.dustsmall.pyrite.name=小堆黄铁矿粉 -item.techreborn.dustsmall.pyrope.name=小堆镁铝榴石粉 -item.techreborn.dustsmall.redGarnet.name=小堆红色石榴石粉 -item.techreborn.dustsmall.redstone.name=小堆红石粉 -item.techreborn.dustsmall.ruby.name=小堆红宝石粉 -item.techreborn.dustsmall.saltpeter.name=小堆硝石粉 -item.techreborn.dustsmall.sapphire.name=小堆蓝宝石粉 -item.techreborn.dustsmall.sawDust.name=小堆锯末 -item.techreborn.dustsmall.silver.name=小堆银粉 -item.techreborn.dustsmall.sodalite.name=小堆方钠石粉 -item.techreborn.dustsmall.spessartine.name=小堆锰铝榴石粉 -item.techreborn.dustsmall.sphalerite.name=小堆闪锌矿粉 -item.techreborn.dustsmall.steel.name=小堆钢粉 -item.techreborn.dustsmall.sulfur.name=小堆硫粉 -item.techreborn.dustsmall.tin.name=小堆锡粉 -item.techreborn.dustsmall.titanium.name=小堆钛粉 -item.techreborn.dustsmall.tungsten.name=小堆钨粉 -item.techreborn.dustsmall.uvarovite.name=小堆钙铬榴石粉 -item.techreborn.dustsmall.voidstone.name=小堆虚空石粉 -item.techreborn.dustsmall.yellowGarnet.name=小堆黄色石榴石粉 -item.techreborn.dustsmall.zinc.name=小堆锌粉 -item.techreborn.dustsmall.olivine.name=小堆橄榄石粉 -item.techreborn.dustsmall.andesite.name=小堆安山岩粉 -item.techreborn.dustsmall.diorite.name=小堆闪长岩粉 -item.techreborn.dustsmall.granite.name=小堆花岗岩粉 - -item.techreborn.cell.name=空单元 -item.techreborn.rebattery.name=充电电池 -item.techreborn.lithiumBattery.name=锂电池 -item.techreborn.energyCrystal.name=能量水晶 -item.techreborn.lapotronCrystal.name=兰波顿水晶 -item.techreborn.treetap.name=木龙头 -item.techreborn.nanosaber.name=纳米剑 -item.techreborn.upgrade.Overclock.name=超频升级 -item.techreborn.upgrade.Transformer.name=变压器升级 -item.techreborn.upgrade.EnergyStorage.name=储能升级 - -#Gems -item.techreborn.gem.ruby.name=红宝石 -item.techreborn.gem.sapphire.name=蓝宝石 -item.techreborn.gem.peridot.name=橄榄石 -item.techreborn.gem.redGarnet.name=红色石榴石 -item.techreborn.gem.yellowGarnet.name=黄色石榴石 - -#Ingots -item.techreborn.ingot.aluminum.name=铝锭 -item.techreborn.ingot.antimony.name=锑锭 -item.techreborn.ingot.batteryAlloy.name=电池合金锭 -item.techreborn.ingot.redAlloy.name=红色合金锭 -item.techreborn.ingot.blueAlloy.name=蓝色合金锭 -item.techreborn.ingot.brass.name=黄铜锭 -item.techreborn.ingot.bronze.name=青铜锭 -item.techreborn.ingot.cadmium.name=镉锭 -item.techreborn.ingot.chrome.name=铬锭 -item.techreborn.ingot.copper.name=铜锭 -item.techreborn.ingot.cupronickel.name=白铜锭 -item.techreborn.ingot.electrum.name=琥珀金锭 -item.techreborn.ingot.indium.name=铟锭 -item.techreborn.ingot.invar.name=殷钢锭 -item.techreborn.ingot.iridium.name=铱锭 -item.techreborn.ingot.kanthal.name=坝塔尔合金锭 -item.techreborn.ingot.lead.name=铅锭 -item.techreborn.ingot.lodestone.name=天然磁石锭 -item.techreborn.ingot.magnalium.name=镁铝合金锭 -item.techreborn.ingot.nichrome.name=镍铬合金锭 -item.techreborn.ingot.nickel.name=镍锭 -item.techreborn.ingot.osmium.name=锇锭 -item.techreborn.ingot.platinum.name=铂锭 -item.techreborn.ingot.silver.name=银锭 -item.techreborn.ingot.steel.name=钢锭 -item.techreborn.ingot.tellurium.name=碲锭 -item.techreborn.ingot.tin.name=锡锭 -item.techreborn.ingot.titanium.name=钛锭 -item.techreborn.ingot.tungsten.name=钨锭 -item.techreborn.ingot.hotTungstensteel.name=热钨钢锭 -item.techreborn.ingot.tungstensteel.name=钨钢锭 -item.techreborn.ingot.zinc.name=锌锭 -item.techreborn.ingot.advancedAlloy.name=高级合金锭 -item.techreborn.ingot.mixedMetal.name=合金锭 -item.techreborn.ingot.iridiumAlloy.name=铱合金锭 - -#Nuggets -item.techreborn.nuggets.aluminum.name=铝粒 -item.techreborn.nuggets.antimony.name=锑粒 -item.techreborn.nuggets.brass.name=黄铜粒 -item.techreborn.nuggets.bronze.name=青铜粒 -item.techreborn.nuggets.chrome.name=铬粒 -item.techreborn.nuggets.copper.name=铜粒 -item.techreborn.nuggets.electrum.name=琥珀金粒 -item.techreborn.nuggets.invar.name=殷钢粒 -item.techreborn.nuggets.iridium.name=铱粒 -item.techreborn.nuggets.iron.name=铁粒 -item.techreborn.nuggets.lead.name=铅粒 -item.techreborn.nuggets.nickel.name=镍粒 -item.techreborn.nuggets.osmium.name=锇粒 -item.techreborn.nuggets.platinum.name=铂粒 -item.techreborn.nuggets.silver.name=银粒 -item.techreborn.nuggets.steel.name=钢粒 -item.techreborn.nuggets.tin.name=锡粒 -item.techreborn.nuggets.titanium.name=钛粒 -item.techreborn.nuggets.tungsten.name=钨粒 -item.techreborn.nuggets.tungstensteel.name=钨钢粒 -item.techreborn.nuggets.hotTungstensteel.name=热钨钢粒 -item.techreborn.nuggets.zinc.name=锌粒 -item.techreborn.nuggets.refinedIron.name=精炼铁粒 -item.techreborn.nuggets.diamond.name=钻石粒 - -#Crushed Ore -item.techreborn.crushedore.Aluminum.name=粉碎的铝矿石 -item.techreborn.crushedore.Ardite.name=粉碎的阿迪特矿石 -item.techreborn.crushedore.Bauxite.name=粉碎的铝土矿矿石 -item.techreborn.crushedore.Cadmium.name=粉碎的镉矿石 -item.techreborn.crushedore.Cinnabar.name=粉碎的朱砂矿石 -item.techreborn.crushedore.Cobalt.name=粉碎的钴矿石 -item.techreborn.crushedore.DarkIron.name=粉碎的玄铁矿石 -item.techreborn.crushedore.Indium.name=粉碎的铟矿石 -item.techreborn.crushedore.Iridium.name=粉碎的铱矿石 -item.techreborn.crushedore.Nickel.name=粉碎的镍矿石 -item.techreborn.crushedore.Osmium.name=粉碎的锇矿石 -item.techreborn.crushedore.Platinum.name=粉碎的铂矿石 -item.techreborn.crushedore.Pyrite.name=粉碎的黄铁矿矿石 -item.techreborn.crushedore.Sphalerite.name=粉碎的闪锌矿石 -item.techreborn.crushedore.Tetrahedrite.name=粉碎的黝铜矿石 -item.techreborn.crushedore.Tungsten.name=粉碎的钨矿石 -item.techreborn.crushedore.Galena.name=粉碎的方铅矿矿石 - -#Purified Crushed Ore -item.techreborn.purifiedcrushedore.Aluminum.name=纯净的铝矿石 -item.techreborn.purifiedcrushedore.Ardite.name=纯净的阿迪特矿石 -item.techreborn.purifiedcrushedore.Bauxite.name=纯净的铝土矿矿石 -item.techreborn.purifiedcrushedore.Cadmium.name=纯净的镉矿石 -item.techreborn.purifiedcrushedore.Cinnabar.name=纯净的朱砂矿石 -item.techreborn.purifiedcrushedore.Cobalt.name=纯净的钴矿石 -item.techreborn.purifiedcrushedore.DarkIron.name=纯净的玄铁矿石 -item.techreborn.purifiedcrushedore.Indium.name=纯净的铟矿石 -item.techreborn.purifiedcrushedore.Iridium.name=纯净的铱矿石 -item.techreborn.purifiedcrushedore.Nickel.name=纯净的镍矿石 -item.techreborn.purifiedcrushedore.Osmium.name=纯净的锇矿石 -item.techreborn.purifiedcrushedore.Platinum.name=纯净的铂矿石 -item.techreborn.purifiedcrushedore.Pyrite.name=纯净的黄铁矿矿石 -item.techreborn.purifiedcrushedore.Sphalerite.name=纯净的闪锌矿石 -item.techreborn.purifiedcrushedore.Tetrahedrite.name=纯净的黝铜矿石 -item.techreborn.purifiedcrushedore.Tungsten.name=纯净的钨矿石 -item.techreborn.purifiedcrushedore.Galena.name=纯净的方铅矿矿石 - -#Plates -item.techreborn.plate.aluminum.name=铝板 -item.techreborn.plate.brass.name=黄铜板 -item.techreborn.plate.bronze.name=青铜板 -item.techreborn.plate.carbon.name=碳板 -item.techreborn.plate.coal.name=煤板 -item.techreborn.plate.chrome.name=铬板 -item.techreborn.plate.copper.name=铜板 -item.techreborn.plate.diamond.name=钻石板 -item.techreborn.plate.electrum.name=琥珀金板 -item.techreborn.plate.emerald.name=绿宝石板 -item.techreborn.plate.gold.name=金板 -item.techreborn.plate.invar.name=殷钢板 -item.techreborn.plate.iridium.name=铱板 -item.techreborn.plate.iron.name=铁板 -item.techreborn.plate.lapis.name=青金石板 -item.techreborn.plate.lead.name=铅板 -item.techreborn.plate.magnalium.name=镁铝合金板 -item.techreborn.plate.nickel.name=镍板 -item.techreborn.plate.obsidian.name=黑曜石板 -item.techreborn.plate.osmium.name=锇板 -item.techreborn.plate.peridot.name=橄榄石板 -item.techreborn.plate.platinum.name=铂板 -item.techreborn.plate.redGarnet.name=红色石榴石板 -item.techreborn.plate.redstone.name=红石板 -item.techreborn.plate.ruby.name=红宝石板 -item.techreborn.plate.sapphire.name=蓝宝石板 -item.techreborn.plate.silicon.name=硅板 -item.techreborn.plate.silver.name=银板 -item.techreborn.plate.steel.name=钢板 -item.techreborn.plate.teslatite.name=蓝石板 -item.techreborn.plate.tin.name=锡板 -item.techreborn.plate.titanium.name=钛板 -item.techreborn.plate.tungsten.name=钨板 -item.techreborn.plate.hotTungstensteel.name=热钨钢板 -item.techreborn.plate.tungstensteel.name=钨钢板 -item.techreborn.plate.yellowGarnet.name=黄色石榴石板 -item.techreborn.plate.zinc.name=锌板 -item.techreborn.plate.refinedIron.name=精炼铁板 -item.techreborn.plate.wood.name=木板 -item.techreborn.plate.advancedAlloy.name=高级合金 -item.techreborn.plate.lazurite.name=青金石板 - -#Parts -item.techreborn.part.advancedCircuitParts.name=高级电路零件 -item.techreborn.part.basicCircuitBoard.name=基础电路板 -item.techreborn.part.advancedCircuitBoard.name=高级电路板 -item.techreborn.part.processorCircuitBoard.name=精锐电路板 -item.techreborn.part.energyFlowCircuit.name=能量流电路 -item.techreborn.part.dataControlCircuit.name=数据控制电路 -item.techreborn.part.dataOrb.name=数据球 -item.techreborn.part.dataStorageCircuit.name=数据存储电路 -item.techreborn.part.diamondGrindingHead.name=钻石研磨头 -item.techreborn.part.diamondSawBlade.name=钻石锯片 -item.techreborn.part.tungstenGrindingHead.name=钨研磨头 -item.techreborn.part.heliumCoolantSimple.name=60k氦冷却单元 -item.techreborn.part.heliumCoolantTriple.name=180k氦冷却单元 -item.techreborn.part.heliumCoolantSix.name=360k氦冷却单元 -item.techreborn.part.NaKCoolantSimple.name=60k钠钾冷却单元 -item.techreborn.part.NaKCoolantTriple.name=180k钠钾冷却单元 -item.techreborn.part.NaKCoolantSix.name=360k钠钾冷却单元 -item.techreborn.part.cupronickelHeatingCoil.name=白铜加热线圈 -item.techreborn.part.nichromeHeatingCoil.name=镍铬合金加热线圈 -item.techreborn.part.kanthalHeatingCoil.name=坝塔尔合金加热线圈 -item.techreborn.part.steelGear.name=钢齿轮 -item.techreborn.part.tungstensteelGear.name=钨钢齿轮 -item.techreborn.part.laserFocus.name=激光透镜 -item.techreborn.part.ductTape.name=航天高级强化胶带FAL-84 -item.techreborn.part.iridiumAlloyIngot.name=铱合金锭 -item.techreborn.part.rockCutterBlade.name=岩石切割机刀片 -item.techreborn.part.superconductor.name=超导体 -item.techreborn.part.thoriumCell.name=燃料棒(钍) -item.techreborn.part.doubleThoriumCell.name=双联燃料棒(钍) -item.techreborn.part.quadThoriumCell.name=四联燃料棒(钍) -item.techreborn.part.plutoniumCell.name=燃料棒(钚) -item.techreborn.part.doublePlutoniumCell.name=双联燃料棒(钚) -item.techreborn.part.quadPlutoniumCell.name=四联燃料棒(钚) -item.techreborn.part.destructoPack.name=焚化炉 -item.techreborn.part.iridiumNeutronReflector.name=铱中子反射板 -item.techreborn.part.massHoleDevice.name=Mass Hole Device -item.techreborn.part.computerMonitor.name=电脑显示器 -item.techreborn.part.machineParts.name=机械零件 -item.techreborn.part.neutronReflector.name=中子反射板 -item.techreborn.part.thickNeutronReflector.name=加厚中子反射板 -item.techreborn.part.rubberSap.name=粘性树脂 -item.techreborn.part.rubber.name=橡胶 -item.techreborn.part.scrap.name=废料 -item.techreborn.part.electronicCircuit.name=电路板 -item.techreborn.part.advancedCircuit.name=高级电路板 -item.techreborn.part.frequencyTransmitter.name=频率转换器 -item.techreborn.part.wolframiumGrindingHead.name=钨研磨头 -item.techreborn.part.dogecoin.name=Doge币 -item.techreborn.part.coolantSimple.name=10k冷却单元 -item.techreborn.part.coolantTriple.name=30k冷却单元 -item.techreborn.part.coolantSix.name=60k冷却单元 - -item.techreborn.frequencyTransmitter.name=频率转换器 - -#Tools -item.techreborn.rockcutter.name=岩石切割机 -item.techreborn.lithiumbatpack.name=锂充电背包 -item.techreborn.lapotronpack.name=兰波顿充电背包 -item.techreborn.omniTool.name=万能工具 -item.techreborn.ironDrill.name=钢电钻 -item.techreborn.diamondDrill.name=钻石电钻 -item.techreborn.advancedDrill.name=高级电钻 -item.techreborn.ironChainsaw.name=钢电锯 -item.techreborn.diamondChainsaw.name=钻石电锯 -item.techreborn.advancedChainsaw.name=高级电锯 -item.techreborn.lapotronicorb.name=蓝波顿能量球 -item.techreborn.cloakingdevice.name=隐形装置 -item.techreborn.steelJackhammer.name=钢凿岩锤 -item.techreborn.diamondJackhammer.name=钻石凿岩锤 -item.techreborn.advancedJackhammer.name=高级凿岩锤 - -item.bronzeSword.name=青铜剑 -item.bronzePickaxe.name=青铜镐 -item.bronzeSpade.name=青铜铲 -item.bronzeAxe.name=青铜斧 -item.bronzeHoe.name=青铜锄 -item.bronzeHelmet.name=青铜头盔 -item.bronzeChestplate.name=青铜胸甲 -item.bronzeLeggings.name=青铜护腿 -item.bronzeBoots.name=青铜靴子 - -item.rubySword.name=红宝石剑 -item.rubyPickaxe.name=红宝石镐 -item.rubySpade.name=红宝石铲 -item.rubyAxe.name=红宝石斧 -item.rubyHoe.name=红宝石锄 -item.rubyHelmet.name=红宝石头盔 -item.rubyChestplate.name=红宝石胸甲 -item.rubyLeggings.name=红宝石护腿 -item.rubyBoots.name=红宝石靴子 - -item.sapphireSword.name=蓝宝石剑 -item.sapphirePickaxe.name=蓝宝石镐 -item.sapphireSpade.name=蓝宝石铲 -item.sapphireAxe.name=蓝宝石斧 -item.sapphireHoe.name=蓝宝石锄 -item.sapphireHelmet.name=蓝宝石头盔 -item.sapphireChestplate.name=蓝宝石胸甲 -item.sapphireLeggings.name=蓝宝石护腿 -item.sapphireBoots.name=蓝宝石靴子 - -item.peridotSword.name=橄榄石剑 -item.peridotPickaxe.name=橄榄石镐 -item.peridotSpade.name=橄榄石铲 -item.peridotAxe.name=橄榄石斧 -item.peridotHoe.name=橄榄石锄 -item.peridotHelmet.name=橄榄石头盔 -item.peridotChestplate.name=橄榄石胸甲 -item.peridotLeggings.name=橄榄石护腿 -item.peridotBoots.name=橄榄石靴子 - -#Fluid -fluid.fluidberylium=铍 -fluid.fluidcalcium=钙 -fluid.fluidcalciumcarbonate=碳酸钙 -fluid.fluidchlorite=绿泥石 -fluid.fluiddeuterium=氘 -fluid.fluidglyceryl=硝化甘油 -fluid.fluidhelium=氦 -fluid.fluidhelium3=氦-3 -fluid.fluidheliumplasma=等离子氦 -fluid.fluidhydrogen=氢 -fluid.fluidlithium=锂 -fluid.fluidmercury=汞 -fluid.fluidmethane=甲烷 -fluid.fluidnitrocoalfuel=硝基煤油 -fluid.fluidnitrofuel=硝基燃油 -fluid.fluidnitrogen=氮 -fluid.fluidnitrogendioxide=二氧化氮 -fluid.fluidpotassium=钾 -fluid.fluidsilicon=硅 -fluid.fluidsodium=钠 -fluid.fluidsodiumpersulfate=过硫酸钠 -fluid.fluidtritium=氚 -fluid.fluidwolframium=钨 - -#Items -item.techreborn.uuMatter.name=UU-物质 -item.techreborn.manual.name=科技手册 -item.techreborn.debug.name=Debug工具 -#Configs -config.techreborn.allow.galenaOre=Allow Galena Ore -config.techreborn.allow.galenaOre.tooltip=Decide whether Galena Ore spawns or not -config.techreborn.allow.iridiumOre=Allow Iridium Ore -config.techreborn.allow.iridiumOre.tooltip=Decide whether Iridium Ore spawns or not -config.techreborn.allow.rubyOre=Allow Ruby Ore -config.techreborn.allow.rubyOre.tooltip=Decide whether Ruby Ore spawns or not -config.techreborn.allow.sapphireOre=Allow Sapphire Ore -config.techreborn.allow.sapphireOre.tooltip=Decide whether Sapphire Ore spawns or not -config.techreborn.allow.bauxiteOre=Allow Bauxite Ore -config.techreborn.allow.bauxiteOre.tooltip=Decide whether Bauxite Ore spawns or not -config.techreborn.allow.copperOre=Allow Copper Ore -config.techreborn.allow.copperOre.tooltip=Decide whether Copper Ore spawns or not -config.techreborn.allow.tinOre=Allow Tin Ore -config.techreborn.allow.tinOre.tooltip=Decide whether Tin Ore spawns or not -config.techreborn.allow.leadOre=Allow Lead Ore -config.techreborn.allow.leadOre.tooltip=Decide whether Lead Ore spawns or not -config.techreborn.allow.silverOre=Allow Silver Ore -config.techreborn.allow.silverOre.tooltip=Decide whether Silver Ore spawns or not -config.techreborn.allow.pyriteOre=Allow Pyrite Ore -config.techreborn.allow.pyriteOre.tooltip=Decide whether Pyrite Ore spawns or not -config.techreborn.allow.cinnabarOre=Allow Cinnabar Ore -config.techreborn.allow.cinnabarOre.tooltip=Decide whether Cinnabar Ore spawns or not -config.techreborn.allow.sphaleriteOre=Allow Sphalerite Ore -config.techreborn.allow.sphaleriteOre.tooltip=Decide whether Sphalerite Ore spawns or not -config.techreborn.allow.tungstenOre=Allow Tungsten Ore -config.techreborn.allow.tungstenOre.tooltip=Decide whether Tungsten Ore spawns or not -config.techreborn.allow.sheldoniteOre=Allow Sheldonite Ore -config.techreborn.allow.sheldoniteOre.tooltip=Decide whether Sheldonite Ore spawns or not -config.techreborn.allow.olivineOre=Allow Olivine Ore -config.techreborn.allow.olivineOre.tooltip=Decide whether Olivine Ore spawns or not -config.techreborn.allow.sodaliteOre=Allow Sodalite Ore -config.techreborn.allow.sodaliteOre.tooltip=Decide whether Sodalite Ore spawns or not - -config.techreborn.fortuneSecondaryOreMultiplierPerLevel=Fortune's Effect on Secondaries -config.techreborn.fortuneSecondaryOreMultiplierPerLevel.tooltip=How much of an increase should each level of fortune have on secondary ore drops? - -config.techreborn.allowExpensiveMacerator=Allow Expensive Macerator -config.techreborn.allowExpensiveMacerator.tooltip= -config.techreborn.allowExpensiveDrill=Allow Expensive Drill -config.techreborn.allowExpensiveDrill.tooltip= -config.techreborn.allowExpensiveDiamondDrill=Allow Expensive Diamond Drill -config.techreborn.allowExpensiveDiamondDrill.tooltip= -config.techreborn.allowExpensiveSolarPanels=Allow Expensive Solar Panels -config.techreborn.allowExpensiveSolarPanels.tooltip= - -config.techreborn.advancedDrillTier=Advanced Drill Power Tier -config.techreborn.advancedDrillTier.tooltip= -config.techreborn.lapotronPackTier=Lapotron Pack Power Tier -config.techreborn.lapotronPackTier.tooltip= -config.techreborn.lithiumBatpackTier=Lithium Batpack Power Tier -config.techreborn.lithiumBatpackTier.tooltip= -config.techreborn.omniToolTier=OmniTool Tier -config.techreborn.omniToolTier.tooltip= -config.techreborn.rockCutterTier=Rock Cutter Power Tier -config.techreborn.rockCutterTier.tooltip= -config.techreborn.gravityChestplateTier=Gravity Chestplates Power Tier -config.techreborn.gravityChestplateTier.tooltip= -config.techreborn.centrifugeTier=Centrifuge Power Tier -config.techreborn.centrifugeTier.tooltip= -config.techreborn.thermalGeneratorTier=Thermal Generator Power Tier -config.techreborn.thermalGeneratorTier.tooltip= - -config.techreborn.thermalGeneratorPower=Thermal Generator Output -config.techreborn.thermalGeneratorPower.tooltip= -config.techreborn.centrifugePowerUsage=Centrifuge Input per tick -config.techreborn.centrifugePowerUsage.tooltip= - -config.techreborn.advancedDrillMaxCharge=Maximum charge for Advanced Drill -config.techreborn.advancedDrillMaxCharge.tooltip= -config.techreborn.lapotronPackMaxCharge=Maximum charge for -config.techreborn.lapotronPackMaxCharge.tooltip= -config.techreborn.omniToolMaxCharge=Maximum charge for -config.techreborn.omniToolMaxCharge.tooltip= -config.techreborn.lithiumBatpackMaxCharge=Maximum charge for Lithium Batpack -config.techreborn.lithiumBatpackMaxCharge.tooltip= -config.techreborn.rockCutterMaxCharge=Maximum charge for Rock Cutter -config.techreborn.rockCutterMaxCharge.tooltip= -config.techreborn.gravityChestplateMaxCharge=Maximum charge for Gravity Chestplate -config.techreborn.gravityChestplateMaxCharge.tooltip= -config.techreborn.centrifugeMaxCharge=Maximum charge for Centrifuge -config.techreborn.centrifugeMaxCharge.tooltip= -config.techreborn.thermalGeneratorMaxCharge=Maximum charge for Thermal Generator -config.techreborn.thermalGeneratorMaxCharge.tooltip= -config.techreborn.aveargeEuOutTickTim=Eu out time -config.techreborn.aveargeEuOutTickTime.tooltip=How often in ticks to update the eu out -config.techreborn.euPerRF=EU Conversion -config.techreborn.euPerRF.tooltip=The amount of RF that equal 1 EU. 4 by default, so 4RF == 1EU and .25EU == 1RF -config.techreborn.farmeu=Farm EU per Tick -config.techreborn.farmeu.tooltip=Amount of eu used per tick by the farm -config.techreborn.enableRF=Enable RF support -config.techreborn.enableRF.tooltip= Enable RF support for all machines. -config.techreborn.enableEU=Enable EU support -config.techreborn.enableEU.tooltip= Enable EU support for all machines. -config.techreborn.connectTextures=Enable Connected textures -config.techreborn.connectTextures.tooltip= Enable Connected textures -config.techreborn.rainExplosions=Enable machine explosions when rain hits -config.techreborn.rainExplosions.tooltip= When this is enabled machines will explode when they come in contact with rain. -config.techreborn.allowExpensiveWatermill.tooltip= Allow Expensive Watermill -config.techreborn.allowExpensiveWindmill.tooltip= Allow Expensive Watermill -config.techreborn.allowBopRecipes.tooltip= Allow BOP Recipes -config.techreborn.allowForestryRecipes.tooltip= Allow Forestry Recipes -config.techreborn.allowNaturaRecipes.tooltip= Allow Natura Recipes -config.techreborn.aesuMaxOutput.tooltip= AESU max output -config.techreborn.aesuMaxStorage.tooltip= AESU max storage -config.techreborn.baseLesuOutput.tooltip= Base LESU output -config.techreborn.cloakingDeviceEUTick.tooltip= Cloaking Device Eu/Tick -config.techreborn.cloakingDeviceMaxCharge.tooltip= Cloaking Device Max Charge -config.techreborn.cloakingDeviceTier.tooltip= Cloaking Device Tier -config.techreborn.dragoneggsiphonerPower.tooltip=Dragon Egg Siphoner Eu/Tick -config.techreborn.extraOutputPerLesuBlock.tooltip= LESU Storage Block extra output -config.techreborn.heatGeneratorOutput.tooltip= Heat Generator output -config.techreborn.lapotronicOrbMaxCharge= Lapotronic Orb Max Charge -config.techreborn.lapotronicOrbTier.tooltip= Lapatronic Orb Tier -config.techreborn.lesuStoragePerBlock.tooltip= LESU Storage Block extra output -config.techreborn.showChargehud.tooltip=Show Charge Hud -#Config UU -config.techreborn.allow.UUrecipesAluminumDust= Allow UU recipes for AluminiumDust -config.techreborn.allow.UUrecipesCoal= Allow UU recipes for Coal -config.techreborn.allow.UUrecipesCopperDust= Allow UU recipes for Copper Dust -config.techreborn.allow.UUrecipesDiamond= Allow UU recipes for Diamond -config.techreborn.allow.UUrecipesEmerald= Allow UU recipes for Emerald -config.techreborn.allow.UUrecipesEmeraldOre= Allow UU recipes for Emerald Ore -config.techreborn.allow.UUrecipesGoldDust= Allow UU recipes for Gold Dust -config.techreborn.allow.UUrecipesGoldOre= Allow UU recipes for Gold Ore -config.techreborn.allow.UUrecipesIronDust= Allow UU recipes for Iron Dust -config.techreborn.allow.UUrecipesIronOre= Allow UU recipes for Iron Ore -config.techreborn.allow.UUrecipesLapis= Allow UU recipes for Lapis -config.techreborn.allow.UUrecipesLeadDust= Allow UU recipes for Lapis dust -config.techreborn.allow.UUrecipesPlatinumDust= Allow UU recipes for Platinum Dust -config.techreborn.allow.UUrecipesRedStone= Allow UU recipes for Redstone -config.techreborn.allow.UUrecipesResin= Allow UU recipes for Sticky Resin -config.techreborn.allow.UUrecipesTinDust= Allow UU recipes for Tin Dust -config.techreborn.allow.UUrecipesTitaniumDust= Allow UU recipes for Titanium Dust -config.techreborn.allow.UUrecipesTungstenDust= Allow UU recipes for Tungsten Dust -config.techreborn.allow.uurecipesBone= Allow UU recipes for Bone -config.techreborn.allow.uurecipesCactus= Allow UU recipes for Cactus -config.techreborn.allow.uurecipesCocoa= Allow UU recipes for Cocoa -config.techreborn.allow.uurecipesEnderPearl= Allow UU recipes for Ender Pearl -config.techreborn.allow.uurecipesFeather= Allow UU recipes for Feather -config.techreborn.allow.uurecipesGlass= Allow UU recipes for Glass -config.techreborn.allow.uurecipesGlowstoneBlock= Allow UU recipes for Glowstone Blocks -config.techreborn.allow.uurecipesGrass= Allow UU recipes for Grass -config.techreborn.allow.uurecipesInk= Allow UU recipes for Ink Sacks -config.techreborn.allow.uurecipesIridiamOre= Allow UU recipes for IridiamOre -config.techreborn.allow.uurecipesLava= Allow UU recipes for Lava -config.techreborn.allow.uurecipesLilypad= Allow UU recipes for Lilypad -config.techreborn.allow.uurecipesObsidian= Allow UU recipes for Obsidian -config.techreborn.allow.uurecipesSnowBall= Allow UU recipes for Snowball -config.techreborn.allow.uurecipesSnowBlock= Allow UU recipes for SnowBlock -config.techreborn.allow.uurecipesStone= Allow UU recipes for Stone -config.techreborn.allow.uurecipesSugarCane= Allow UU recipes for SugarCane -config.techreborn.allow.uurecipesVine= Allow UU recipes for Vine -config.techreborn.allow.uurecipesWater= Allow UU recipes for Water -config.techreborn.allow.uurecipesWood= Allow UU recipes for Wood - -#Config Tooltips UU -config.techreborn.allow.UUrecipesAluminumDust.tooltip= Allow UU recipes for AluminiumDust -config.techreborn.allow.UUrecipesCoal.tooltip= Allow UU recipes for Coal -config.techreborn.allow.UUrecipesCopperDust.tooltip= Allow UU recipes for Copper Dust -config.techreborn.allow.UUrecipesDiamond.tooltip= Allow UU recipes for Diamond -config.techreborn.allow.UUrecipesEmerald.tooltip= Allow UU recipes for Emerald -config.techreborn.allow.UUrecipesEmeraldOre.tooltip= Allow UU recipes for Emerald Ore -config.techreborn.allow.UUrecipesGoldDust.tooltip= Allow UU recipes for Gold Dust -config.techreborn.allow.UUrecipesGoldOre.tooltip= Allow UU recipes for Gold Ore -config.techreborn.allow.UUrecipesIronDust.tooltip= Allow UU recipes for Iron Dust -config.techreborn.allow.UUrecipesIronOre.tooltip= Allow UU recipes for Iron Ore -config.techreborn.allow.UUrecipesLapis.tooltip= Allow UU recipes for Lapis -config.techreborn.allow.UUrecipesLeadDust.tooltip= Allow UU recipes for Lapis dust -config.techreborn.allow.UUrecipesPlatinumDust.tooltip= Allow UU recipes for Platinum Dust -config.techreborn.allow.UUrecipesRedStone.tooltip= Allow UU recipes for Redstone -config.techreborn.allow.UUrecipesResin.tooltip= Allow UU recipes for Sticky Resin -config.techreborn.allow.UUrecipesTinDust.tooltip= Allow UU recipes for Tin Dust -config.techreborn.allow.UUrecipesTitaniumDust.tooltip= Allow UU recipes for Titanium Dust -config.techreborn.allow.UUrecipesTungstenDust.tooltip= Allow UU recipes for Tungsten Dust -config.techreborn.allow.hiderecipes.tooltip= Hide UU recipes from NEI -config.techreborn.allow.uurecipesBone.tooltip= Allow UU recipes for Bone -config.techreborn.allow.uurecipesCactus.tooltip= Allow UU recipes for Cactus -config.techreborn.allow.uurecipesCocoa.tooltip= Allow UU recipes for Cocoa -config.techreborn.allow.uurecipesEnderPearl.tooltip= Allow UU recipes for Ender Pearl -config.techreborn.allow.uurecipesFeather.tooltip= Allow UU recipes for Feather -config.techreborn.allow.uurecipesGlass.tooltip= Allow UU recipes for Glass -config.techreborn.allow.uurecipesGlowstoneBlock.tooltip= Allow UU recipes for Glowstone Blocks -config.techreborn.allow.uurecipesGrass.tooltip= Allow UU recipes for Grass -config.techreborn.allow.uurecipesInk.tooltip= Allow UU recipes for Ink Sacks -config.techreborn.allow.uurecipesIridiamOre.tooltip= Allow UU recipes for IridiamOre -config.techreborn.allow.uurecipesLava.tooltip= Allow UU recipes for Lava -config.techreborn.allow.uurecipesLilypad.tooltip= Allow UU recipes for Lilypad -config.techreborn.allow.uurecipesObsidian.tooltip= Allow UU recipes for Obsidian -config.techreborn.allow.uurecipesSnowBall.tooltip= Allow UU recipes for Snowball -config.techreborn.allow.uurecipesSnowBlock.tooltip= Allow UU recipes for SnowBlock -config.techreborn.allow.uurecipesStone.tooltip= Allow UU recipes for Stone -config.techreborn.allow.uurecipesSugarCane.tooltip= Allow UU recipes for SugarCane -config.techreborn.allow.uurecipesVine.tooltip= Allow UU recipes for Vine -config.techreborn.allow.uurecipesWater.tooltip= Allow UU recipes for Water -config.techreborn.allow.uurecipesWood.tooltip= Allow UU recipes for Wood - - -config.techreborn.allow.tungstonOre.tooltip= Allow UU recipes for Tungston Ore -config.techreborn.bauxiteOre.rare.tooltip=rarity of Bauxite Ore -config.techreborn.cinnabarOre.rare.tooltip=rarity of Cinnabar Ore -config.techreborn.copperOre.rare.tooltip=rarity of Copper Ore -config.techreborn.galenaOre.rare.tooltip=rarity of Galena Ore -config.techreborn.iridiumOre.rare.tooltip=rarity of Iridium Ore -config.techreborn.leadOre.rare.tooltip=rarity of Lead Ore -config.techreborn.olivineOre.rare.tooltip=rarity of Olivine Ore -config.techreborn.pyriteOre.rare.tooltip=rarity of Pyrite Ore -config.techreborn.rubyOre.rare.tooltip=rarity of Ruby Ore -config.techreborn.sapphireOre.rare.tooltip=rarity of Sapphire Ore -config.techreborn.sheldoniteOre.rare.tooltip=rarity of Sheldonite Ore -config.techreborn.silverOre.rare.tooltip=rarity of Silver Ore -config.techreborn.sodaliteOre.rare.tooltip=rarity of Sodalite Ore -config.techreborn.sphaleriteOre.rare.tooltip=rarity of Sphalerite Ore -config.techreborn.tinOre.rare.tooltip=rarity of Tin Ore -config.techreborn.tungstenOre.rare.tooltip=rarity of Tungsten Ore - -config.techreborn.oreUnifer=Ore Unification -config.techreborn.oreUnifer.tooltip=Enable/Disable the auto ore unification - -config.techreborn.aesuMaxOutput=AESU max output -config.techreborn.aesuMaxStorage=AESU max storage -config.techreborn.aveargeEuOutTickTime=Time to calculate average output -config.techreborn.baseLesuOutput=Base lesu output -config.techreborn.cloakingDeviceEUTick=Clocking Device EU usage per tick -config.techreborn.cloakingDeviceMaxCharge=Cloaking Device Max Charge -config.techreborn.cloakingDeviceTier=Cloaking Device Tier -config.techreborn.dragoneggsiphonerPower=Dragon Egg Siphoner EU output -config.techreborn.extraOutputPerLesuBlock=LESU block power -config.techreborn.heatGeneratorOutput=Heat Generator Output -config.techreborn.lapotronicOrbTier=Lapotronic Orb Tier -config.techreborn.lesuStoragePerBlock=Lesu Storage Per Block -config.techreborn.showChargehud=Show charge HUD -config.techreborn.allowExpensiveWatermill=Allow Expensive Watermill -config.techreborn.allowExpensiveWindmill=Allow Expensive Windmill - - -#ConfigGui -config.techreborn.category.general=全局设置 -config.techreborn.category.world=世界设置 -config.techreborn.category.power=能源设置 -config.techreborn.category.crafting=合成设置 -config.techreborn.category.uu=UU设置 -config.techreborn.category.emc=EMC设置 -config.techreborn.category.integration=Integration - -tr.configgui.category.trGeneral.tooltip=全局 -tr.configgui.category.trWorld.tooltip=世界 -tr.configgui.category.trPower.tooltip=能源 -tr.configgui.category.trCrafting.tooltip=合成 -tr.configgui.category.truu.tooltip=UU -tr.configgui.category.tremc.tooltip=EMC -tr.configgui.category.treinter.tooltip=Mod Integration - -#Recipe Handlers -techreborn.recipe.alloysmelter=合金冶炼炉 -techreborn.recipe.ironalloysmelter=铁制合金冶炼炉 -techreborn.recipe.assemblingmachine=装配机 -techreborn.recipe.blastfurnace=高炉 -techreborn.recipe.centrifuge=离心机 -techreborn.recipe.grinder=工业磨粉机 -techreborn.recipe.industrialelectrolyzer=工业电解器 -techreborn.recipe.industrialsawmill=工业锯木机 -techreborn.recipe.lathe=车床 -techreborn.recipe.platecuttingmachine=板材切割机 -techreborn.recipe.chemicalReactor=化学反应器 -techreborn.recipe.implosioncompressor=聚爆压缩机 - -#Message -techreborn.message.missingmultiblock=多方块结构缺失 -techreborn.message.setTo=设置为 -techreborn.message.in=在 -techreborn.message.noCoordsSet=没有设置坐标 -techreborn.message.coordsHaveBeen=坐标已设置为 -techreborn.message.cleared=清楚 -techreborn.message.detects=检测 -techreborn.message.allPlayers=所有玩家 -techreborn.message.onlyOtherPlayers=仅其他玩家 -techreborn.message.onlyYou=仅你自己 -techreborn.message.nanosaberActive=激活 -techreborn.message.nanosaberInactive=未激活 - -#Cables -Cable.copperCable.name=铜质导线 -Cable.insulatedCopperCable.name=Insulated Copper Cable -Cable.goldCable.name=Gold Cable -Cable.insulatedGoldCable.name=Insulated Copper Cable -Cable.doubleInsulatedGoldCable.name=Double Insulated Copper Cable -Cable.ironCable.name=Iron Cable -Cable.copperCable.name=Copper Cable -Cable.insulatedIronCable.name=Insulated Iron Cable -Cable.doubleInsulatedIronCable.name=Double Insulated Copper Cable -Cable.trippleInsulatedIronCable.name=Triple Insulated Copper Cable -Cable.glassFiberCable.name=Glass Fiber Cable -Cable.tinCable.name=Tin Cable - -desc.uninsulatedCable=Damages Entities! -desc.euTransfer=EU Transfer: -desc.tier=Tier: - - -#Manual -techreborn.manual.contents=目录 -techreborn.manual.gettingstarted=新手入门 -techreborn.manual.generatingpower=产生能源 -techreborn.manual.basicmachines=基础机器 -techreborn.manual.advancedmachines=高级机器 -techreborn.manual.tools=工具 - -techreborn.manual.gettingrubber=采集橡胶 -techreborn.manual.backbutton=返回 -techreborn.manual.gettingplates=制作出板 - -item.techreborn.advancedDrill.description=这个工具是一个高级版本的采矿钻头,当它被激活时将以3x3的范围挖掘。 -tile.techreborn.alloyfurnace.description=这是你初次步入TechReborn时第一次能融合金属们变成另外一种金属的机器。这样加工出来的金属可以用来加工更高级别的机器。 -tile.techreborn.alloysmelter.description=这台机器是一个升级版本的合金炉,它需要使用EU或RF。 -tile.techreborn.assemblingmachine.description=这台机器用于加工许多不能用普通工作台加工的复杂设备。 -tile.techreborn.blastfurnace.description=这台机器需要在后面放置一个3x4x3的机器外壳来增加其内部热量,更高热量的高炉可以给你带来更多配方。这台机器也需要使用EU或RF。 - -keys.techreborn.category=TechReborn Category -keys.techreborn.config=Config - -achievement.TechReborn:ore_PickUp=新矿石! -achievement.TechReborn:ore_PickUp.desc=挖到一个TechReborn的矿石 -achievement.TechReborn:centrifuge_Craft=是时候转起来了 -achievement.TechReborn:thermalgen_Craft=是时候热起来了 - -# JEI Integration -techreborn.jei.recipe.start.cost=Start: %sEU -techreborn.jei.recipe.running.cost=EU/t: %s -techreborn.jei.recipe.processing.time.1=Time: %s ticks -techreborn.jei.recipe.processing.time.2=(%s seconds) -jei.techreborn.scrapbox.name=开启废料盒 -techreborn.desc.rubberSap=为了获得粘性树脂,你需要找一颗橡胶树或者找到1棵橡胶树苗并且进行种植。当你找到了一个橡胶树后,看看树干有没有黄点.如果没有,过一会就会出现了. 为了收获粘性树脂,你需要用一个木龙头对着黄点右击. -techreborn.desc.scrapBox=废料盒可以简单的用手打开,也可以用拆包器打开。这是很直接的, 只要把你的废料盒扔进拆包器并且提供一个红石信号, 然后boom的一声,随机的物品就出现了! -techreborn.desc.scrapBoxNoDispenser=废料盒可以很简单的用手打开。 - -techreborn.jei.category.alloy.furnace=合金炉 - -#Death Messages -death.attack.shock=%s 被处以电刑 - - -#Entitys -entity.techreborn.nuke.name=核弹 - -tooltip.wip=未完品,即将到来 -tooltip.upBroken=升级插件还没做完! -tooltip.ingredient=目前只完成了一部分 diff --git a/src/main/resources/assets/techreborn/models/block/rubberLeaves.json b/src/main/resources/assets/techreborn/models/block/rubberLeaves.json deleted file mode 100644 index fc62e27d1..000000000 --- a/src/main/resources/assets/techreborn/models/block/rubberLeaves.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/leaves", - "textures": { - "all": "techreborn:blocks/rubber_leaves" - } -} diff --git a/src/main/resources/assets/techreborn/models/block/rubberSapling.json b/src/main/resources/assets/techreborn/models/block/rubberSapling.json deleted file mode 100644 index 3e0841650..000000000 --- a/src/main/resources/assets/techreborn/models/block/rubberSapling.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "block/cross", - "textures": { - "cross": "techreborn:blocks/rubber_sapling" - } -} diff --git a/src/main/resources/assets/techreborn/models/item/energyCrystal.json b/src/main/resources/assets/techreborn/models/item/energyCrystal.json deleted file mode 100644 index 87a1dc719..000000000 --- a/src/main/resources/assets/techreborn/models/item/energyCrystal.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "parent": "techreborn:item/techrebornItem", - "textures": { - "layer0": "techreborn:items/tool/energyCrystal" - }, - "overrides": [ - { - "predicate": { - "techreborn:empty": 1 - }, - "model": "techreborn:item/energyCrystalEmpty" - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/energyCrystalEmpty.json b/src/main/resources/assets/techreborn/models/item/energyCrystalEmpty.json deleted file mode 100644 index 019e9583c..000000000 --- a/src/main/resources/assets/techreborn/models/item/energyCrystalEmpty.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "techreborn:item/techrebornItem", - "textures": { - "layer0": "techreborn:items/tool/energyCrystal" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/ironFence.json b/src/main/resources/assets/techreborn/models/item/ironFence.json deleted file mode 100644 index d6092b3b3..000000000 --- a/src/main/resources/assets/techreborn/models/item/ironFence.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "techreborn:block/iron_fence_inventory" -} diff --git a/src/main/resources/assets/techreborn/models/item/lapotronCrystal.json b/src/main/resources/assets/techreborn/models/item/lapotronCrystal.json deleted file mode 100644 index 2e3ed8952..000000000 --- a/src/main/resources/assets/techreborn/models/item/lapotronCrystal.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "parent": "techreborn:item/techrebornItem", - "textures": { - "layer0": "techreborn:items/tool/lapotronCrystal" - }, - "overrides": [ - { - "predicate": { - "techreborn:empty": 1 - }, - "model": "techreborn:item/lapotronCrystalEmpty" - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/lapotronCrystalEmpty.json b/src/main/resources/assets/techreborn/models/item/lapotronCrystalEmpty.json deleted file mode 100644 index fbfdede98..000000000 --- a/src/main/resources/assets/techreborn/models/item/lapotronCrystalEmpty.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "techreborn:item/techrebornItem", - "textures": { - "layer0": "techreborn:items/tool/lapotronCrystal" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/lithiumBattery.json b/src/main/resources/assets/techreborn/models/item/lithiumBattery.json deleted file mode 100644 index b446171d8..000000000 --- a/src/main/resources/assets/techreborn/models/item/lithiumBattery.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "parent": "techreborn:item/techrebornItem", - "textures": { - "layer0": "techreborn:items/tool/lithiumBattery" - }, - "overrides": [ - { - "predicate": { - "techreborn:empty": 1 - }, - "model": "techreborn:item/lithiumBatteryEmpty" - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/lithiumBatteryEmpty.json b/src/main/resources/assets/techreborn/models/item/lithiumBatteryEmpty.json deleted file mode 100644 index 5573739c3..000000000 --- a/src/main/resources/assets/techreborn/models/item/lithiumBatteryEmpty.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "techreborn:item/techrebornItem", - "textures": { - "layer0": "techreborn:items/tool/lithiumBatteryEmpty" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/nanosaberActive.json b/src/main/resources/assets/techreborn/models/item/nanosaberActive.json deleted file mode 100644 index d2edeb968..000000000 --- a/src/main/resources/assets/techreborn/models/item/nanosaberActive.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "techreborn:item/techrebornItem", - "textures": { - "layer0": "techreborn:items/tool/nanosaber_on" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/reBattery.json b/src/main/resources/assets/techreborn/models/item/reBattery.json deleted file mode 100644 index 008987e13..000000000 --- a/src/main/resources/assets/techreborn/models/item/reBattery.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "parent": "techreborn:item/techrebornItem", - "textures": { - "layer0": "techreborn:items/tool/reBattery" - }, - "overrides": [ - { - "predicate": { - "techreborn:empty": 1 - }, - "model": "techreborn:item/reBatteryEmpty" - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/reBatteryEmpty.json b/src/main/resources/assets/techreborn/models/item/reBatteryEmpty.json deleted file mode 100644 index a3fe39da4..000000000 --- a/src/main/resources/assets/techreborn/models/item/reBatteryEmpty.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "parent": "techreborn:item/techrebornItem", - "textures": { - "layer0": "techreborn:items/tool/reBatteryEmpty" - } -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/models/item/techrebornItem.json b/src/main/resources/assets/techreborn/models/item/techrebornItem.json deleted file mode 100644 index 9a5d7fc5e..000000000 --- a/src/main/resources/assets/techreborn/models/item/techrebornItem.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "parent": "item/generated" -} \ No newline at end of file diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/chargeBench_side.png b/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/chargeBench_side.png deleted file mode 100644 index 3bb33ea5f..000000000 Binary files a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/chargeBench_side.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/advancedMachine_machine_block.png b/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/advancedMachine_machine_block.png deleted file mode 100644 index 8b8e29436..000000000 Binary files a/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/advancedMachine_machine_block.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/highlyAdvancedMachine_machine_block.png b/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/highlyAdvancedMachine_machine_block.png deleted file mode 100644 index ccbbbf29f..000000000 Binary files a/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/highlyAdvancedMachine_machine_block.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/redGarnet_block.png b/src/main/resources/assets/techreborn/textures/blocks/storage/redGarnet_block.png deleted file mode 100644 index dc60deaaa..000000000 Binary files a/src/main/resources/assets/techreborn/textures/blocks/storage/redGarnet_block.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/refinedIron_block.png b/src/main/resources/assets/techreborn/textures/blocks/storage/refinedIron_block.png deleted file mode 100644 index bde07e8e6..000000000 Binary files a/src/main/resources/assets/techreborn/textures/blocks/storage/refinedIron_block.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/yellowGarnet_block.png b/src/main/resources/assets/techreborn/textures/blocks/storage/yellowGarnet_block.png deleted file mode 100644 index dc3183871..000000000 Binary files a/src/main/resources/assets/techreborn/textures/blocks/storage/yellowGarnet_block.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/gui/compressorTest.png b/src/main/resources/assets/techreborn/textures/gui/compressorTest.png deleted file mode 100644 index 9ca139faf..000000000 Binary files a/src/main/resources/assets/techreborn/textures/gui/compressorTest.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/Berylium Cell.png b/src/main/resources/assets/techreborn/textures/items/cells/Berylium Cell.png deleted file mode 100644 index 82c0da859..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/Berylium Cell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/BeryliumCell.png b/src/main/resources/assets/techreborn/textures/items/cells/BeryliumCell.png deleted file mode 100644 index 82c0da859..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/BeryliumCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/biomassCell.png b/src/main/resources/assets/techreborn/textures/items/cells/biomassCell.png deleted file mode 100644 index 52ab09cb5..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/biomassCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/calciumCarbonateCell.png b/src/main/resources/assets/techreborn/textures/items/cells/calciumCarbonateCell.png deleted file mode 100644 index 926ad944a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/calciumCarbonateCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/calciumCell.png b/src/main/resources/assets/techreborn/textures/items/cells/calciumCell.png deleted file mode 100644 index dc6977c56..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/calciumCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/carbonCell.png b/src/main/resources/assets/techreborn/textures/items/cells/carbonCell.png deleted file mode 100644 index d1fcbca73..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/carbonCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/chlorineCell.png b/src/main/resources/assets/techreborn/textures/items/cells/chlorineCell.png deleted file mode 100644 index 7d98c4982..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/chlorineCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/deuteriumCell.png b/src/main/resources/assets/techreborn/textures/items/cells/deuteriumCell.png deleted file mode 100644 index 9fc3de4e9..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/deuteriumCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/dieselCell.png b/src/main/resources/assets/techreborn/textures/items/cells/dieselCell.png deleted file mode 100644 index 2f02c8751..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/dieselCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/emptyCell.png b/src/main/resources/assets/techreborn/textures/items/cells/emptyCell.png deleted file mode 100644 index 538b65c51..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/emptyCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/ethanolCell.png b/src/main/resources/assets/techreborn/textures/items/cells/ethanolCell.png deleted file mode 100644 index a54b322b7..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/ethanolCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/glycerylCell.png b/src/main/resources/assets/techreborn/textures/items/cells/glycerylCell.png deleted file mode 100644 index 8a9f4d8df..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/glycerylCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/helium3Cell.png b/src/main/resources/assets/techreborn/textures/items/cells/helium3Cell.png deleted file mode 100644 index 81a606300..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/helium3Cell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/heliumCell.png b/src/main/resources/assets/techreborn/textures/items/cells/heliumCell.png deleted file mode 100644 index dcfc7edb6..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/heliumCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/heliumPlasmaCell.png b/src/main/resources/assets/techreborn/textures/items/cells/heliumPlasmaCell.png deleted file mode 100644 index aaf7e1ae4..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/heliumPlasmaCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/hydrogenCell.png b/src/main/resources/assets/techreborn/textures/items/cells/hydrogenCell.png deleted file mode 100644 index c6fa0a616..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/hydrogenCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/iceCell.png b/src/main/resources/assets/techreborn/textures/items/cells/iceCell.png deleted file mode 100644 index 64b8b5672..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/iceCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/lavaCell.png b/src/main/resources/assets/techreborn/textures/items/cells/lavaCell.png deleted file mode 100644 index b7221d3ca..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/lavaCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/lithiumCell.png b/src/main/resources/assets/techreborn/textures/items/cells/lithiumCell.png deleted file mode 100644 index e786aabb4..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/lithiumCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/mercuryCell.png b/src/main/resources/assets/techreborn/textures/items/cells/mercuryCell.png deleted file mode 100644 index 20c47c6dd..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/mercuryCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/methaneCell.png b/src/main/resources/assets/techreborn/textures/items/cells/methaneCell.png deleted file mode 100644 index 765d63957..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/methaneCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/nitroCoalfuel Cell.png b/src/main/resources/assets/techreborn/textures/items/cells/nitroCoalfuel Cell.png deleted file mode 100644 index 8b4b14703..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/nitroCoalfuel Cell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/nitroCoalfuelCell.png b/src/main/resources/assets/techreborn/textures/items/cells/nitroCoalfuelCell.png deleted file mode 100644 index 8b4b14703..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/nitroCoalfuelCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/nitroDieselCell.png b/src/main/resources/assets/techreborn/textures/items/cells/nitroDieselCell.png deleted file mode 100644 index 8b6500b50..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/nitroDieselCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/nitrocarbonCell.png b/src/main/resources/assets/techreborn/textures/items/cells/nitrocarbonCell.png deleted file mode 100644 index e961a8550..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/nitrocarbonCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/nitrogenCell.png b/src/main/resources/assets/techreborn/textures/items/cells/nitrogenCell.png deleted file mode 100644 index 10ca6ce3a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/nitrogenCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/nitrogenDioxideCell.png b/src/main/resources/assets/techreborn/textures/items/cells/nitrogenDioxideCell.png deleted file mode 100644 index 42ce5ee21..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/nitrogenDioxideCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/oilCell.png b/src/main/resources/assets/techreborn/textures/items/cells/oilCell.png deleted file mode 100644 index d411e349d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/oilCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/potassiumCel.png b/src/main/resources/assets/techreborn/textures/items/cells/potassiumCel.png deleted file mode 100644 index ce8fb1431..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/potassiumCel.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/potassiumCell.png b/src/main/resources/assets/techreborn/textures/items/cells/potassiumCell.png deleted file mode 100644 index ce8fb1431..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/potassiumCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/seedOilCell.png b/src/main/resources/assets/techreborn/textures/items/cells/seedOilCell.png deleted file mode 100644 index 54edb663b..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/seedOilCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/siliconCell.png b/src/main/resources/assets/techreborn/textures/items/cells/siliconCell.png deleted file mode 100644 index 0c15c824a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/siliconCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/sodiumCell.png b/src/main/resources/assets/techreborn/textures/items/cells/sodiumCell.png deleted file mode 100644 index cabc9640f..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/sodiumCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/sodiumPersulfateCell.png b/src/main/resources/assets/techreborn/textures/items/cells/sodiumPersulfateCell.png deleted file mode 100644 index b4ed5d35b..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/sodiumPersulfateCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/sodiumSulfideCell.png b/src/main/resources/assets/techreborn/textures/items/cells/sodiumSulfideCell.png deleted file mode 100644 index d8f490944..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/sodiumSulfideCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/sulfurCell.png b/src/main/resources/assets/techreborn/textures/items/cells/sulfurCell.png deleted file mode 100644 index 082b3667b..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/sulfurCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/sulfuricAcidCell.png b/src/main/resources/assets/techreborn/textures/items/cells/sulfuricAcidCell.png deleted file mode 100644 index 42e78aa7d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/sulfuricAcidCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/tritiumCell.png b/src/main/resources/assets/techreborn/textures/items/cells/tritiumCell.png deleted file mode 100644 index cc00ca96b..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/tritiumCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/waterCell.png b/src/main/resources/assets/techreborn/textures/items/cells/waterCell.png deleted file mode 100644 index dd24527c4..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/waterCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/wolframiumCell.png b/src/main/resources/assets/techreborn/textures/items/cells/wolframiumCell.png deleted file mode 100644 index df5afeee9..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/cells/wolframiumCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/alBrassDust.png b/src/main/resources/assets/techreborn/textures/items/dust/alBrassDust.png deleted file mode 100644 index c72f232c2..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/alBrassDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/almandineDust.png b/src/main/resources/assets/techreborn/textures/items/dust/almandineDust.png deleted file mode 100644 index 28a699d18..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/almandineDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/aluminiumDust.png b/src/main/resources/assets/techreborn/textures/items/dust/aluminiumDust.png deleted file mode 100644 index 14617a663..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/aluminiumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/aluminumBrassDust.png b/src/main/resources/assets/techreborn/textures/items/dust/aluminumBrassDust.png deleted file mode 100644 index 27a8a53f7..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/aluminumBrassDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/aluminumDust.png b/src/main/resources/assets/techreborn/textures/items/dust/aluminumDust.png deleted file mode 100644 index 14617a663..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/aluminumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/alumiteDust.png b/src/main/resources/assets/techreborn/textures/items/dust/alumiteDust.png deleted file mode 100644 index 336b11d56..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/alumiteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/andesiteDust.png b/src/main/resources/assets/techreborn/textures/items/dust/andesiteDust.png deleted file mode 100644 index d125c7925..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/andesiteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/andraditeDust.png b/src/main/resources/assets/techreborn/textures/items/dust/andraditeDust.png deleted file mode 100644 index bfbbb7a0b..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/andraditeDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/antimonyDust.png b/src/main/resources/assets/techreborn/textures/items/dust/antimonyDust.png deleted file mode 100644 index 5b1771bb3..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/antimonyDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/arditeDust.png b/src/main/resources/assets/techreborn/textures/items/dust/arditeDust.png deleted file mode 100644 index 3879f7d4c..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/arditeDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/ashesDust.png b/src/main/resources/assets/techreborn/textures/items/dust/ashesDust.png deleted file mode 100644 index 9ccc07915..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/ashesDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/basaltDust.png b/src/main/resources/assets/techreborn/textures/items/dust/basaltDust.png deleted file mode 100644 index 55b9a5140..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/basaltDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/bauxiteDust.png b/src/main/resources/assets/techreborn/textures/items/dust/bauxiteDust.png deleted file mode 100644 index a06f4b8f0..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/bauxiteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/biotiteDust.png b/src/main/resources/assets/techreborn/textures/items/dust/biotiteDust.png deleted file mode 100644 index 55b9a5140..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/biotiteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/brassDust.png b/src/main/resources/assets/techreborn/textures/items/dust/brassDust.png deleted file mode 100644 index 83c378fbc..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/brassDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/bronzeDust.png b/src/main/resources/assets/techreborn/textures/items/dust/bronzeDust.png deleted file mode 100644 index 448484fee..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/bronzeDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/cadmiumDust.png b/src/main/resources/assets/techreborn/textures/items/dust/cadmiumDust.png deleted file mode 100644 index 3ef2bbaa6..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/cadmiumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/calciteDust.png b/src/main/resources/assets/techreborn/textures/items/dust/calciteDust.png deleted file mode 100644 index 005642efa..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/calciteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/charcoalDust.png b/src/main/resources/assets/techreborn/textures/items/dust/charcoalDust.png deleted file mode 100644 index 6611e4e87..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/charcoalDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/chromeDust.png b/src/main/resources/assets/techreborn/textures/items/dust/chromeDust.png deleted file mode 100644 index 76976fd5a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/chromeDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/cinnabarDust.png b/src/main/resources/assets/techreborn/textures/items/dust/cinnabarDust.png deleted file mode 100644 index d0ff53645..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/cinnabarDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/clayDust.png b/src/main/resources/assets/techreborn/textures/items/dust/clayDust.png deleted file mode 100644 index 1587d3990..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/clayDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/coalDust.png b/src/main/resources/assets/techreborn/textures/items/dust/coalDust.png deleted file mode 100644 index 77d026715..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/coalDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/cobaltDust.png b/src/main/resources/assets/techreborn/textures/items/dust/cobaltDust.png deleted file mode 100644 index 8c59bff19..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/cobaltDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/copperDust.png b/src/main/resources/assets/techreborn/textures/items/dust/copperDust.png deleted file mode 100644 index d4726fbd7..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/copperDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/cupronickelDust.png b/src/main/resources/assets/techreborn/textures/items/dust/cupronickelDust.png deleted file mode 100644 index 7786d2cea..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/cupronickelDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/darkAshes.png b/src/main/resources/assets/techreborn/textures/items/dust/darkAshes.png deleted file mode 100644 index 2181ae850..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/darkAshes.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/darkAshesDust.png b/src/main/resources/assets/techreborn/textures/items/dust/darkAshesDust.png deleted file mode 100644 index 55b9a5140..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/darkAshesDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/darkIronDust.png b/src/main/resources/assets/techreborn/textures/items/dust/darkIronDust.png deleted file mode 100644 index 307e5d58c..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/darkIronDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/diamondDust.png b/src/main/resources/assets/techreborn/textures/items/dust/diamondDust.png deleted file mode 100644 index 93fa55e4f..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/diamondDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/dioriteDust.png b/src/main/resources/assets/techreborn/textures/items/dust/dioriteDust.png deleted file mode 100644 index 4f7a6ac60..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/dioriteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/electrumDust.png b/src/main/resources/assets/techreborn/textures/items/dust/electrumDust.png deleted file mode 100644 index 42d9a6aa3..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/electrumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/emeraldDust.png b/src/main/resources/assets/techreborn/textures/items/dust/emeraldDust.png deleted file mode 100644 index 521ac0775..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/emeraldDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/enderEyeDust.png b/src/main/resources/assets/techreborn/textures/items/dust/enderEyeDust.png deleted file mode 100644 index 862248de8..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/enderEyeDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/enderPearlDust.png b/src/main/resources/assets/techreborn/textures/items/dust/enderPearlDust.png deleted file mode 100644 index 1351288bf..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/enderPearlDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/endstoneDust.png b/src/main/resources/assets/techreborn/textures/items/dust/endstoneDust.png deleted file mode 100644 index 63901adde..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/endstoneDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/flintDust.png b/src/main/resources/assets/techreborn/textures/items/dust/flintDust.png deleted file mode 100644 index ced0d0db9..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/flintDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/galenaDust.png b/src/main/resources/assets/techreborn/textures/items/dust/galenaDust.png deleted file mode 100644 index 7c293a696..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/galenaDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/goldDust.png b/src/main/resources/assets/techreborn/textures/items/dust/goldDust.png deleted file mode 100644 index fbfe30bf9..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/goldDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/graniteDust.png b/src/main/resources/assets/techreborn/textures/items/dust/graniteDust.png deleted file mode 100644 index ef00f87d7..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/graniteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/graphiteDust.png b/src/main/resources/assets/techreborn/textures/items/dust/graphiteDust.png deleted file mode 100644 index 9b147d88f..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/graphiteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/grossularDust.png b/src/main/resources/assets/techreborn/textures/items/dust/grossularDust.png deleted file mode 100644 index 3bb9be5b8..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/grossularDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/indiumDust.png b/src/main/resources/assets/techreborn/textures/items/dust/indiumDust.png deleted file mode 100644 index 35bcec625..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/indiumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/invarDust.png b/src/main/resources/assets/techreborn/textures/items/dust/invarDust.png deleted file mode 100644 index 38f6d069f..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/invarDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/iridiumDust.png b/src/main/resources/assets/techreborn/textures/items/dust/iridiumDust.png deleted file mode 100644 index e3bf20da4..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/iridiumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/ironDust.png b/src/main/resources/assets/techreborn/textures/items/dust/ironDust.png deleted file mode 100644 index 20ff8f763..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/ironDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/kanthalDust.png b/src/main/resources/assets/techreborn/textures/items/dust/kanthalDust.png deleted file mode 100644 index 70c07eb87..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/kanthalDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/lapisDust.png b/src/main/resources/assets/techreborn/textures/items/dust/lapisDust.png deleted file mode 100644 index de527760f..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/lapisDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/lazuriteDust.png b/src/main/resources/assets/techreborn/textures/items/dust/lazuriteDust.png deleted file mode 100644 index 25a650940..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/lazuriteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/leadDust.png b/src/main/resources/assets/techreborn/textures/items/dust/leadDust.png deleted file mode 100644 index 67bb44ac2..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/leadDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/limestoneDust.png b/src/main/resources/assets/techreborn/textures/items/dust/limestoneDust.png deleted file mode 100644 index 1b976275a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/limestoneDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/lodestoneDust.png b/src/main/resources/assets/techreborn/textures/items/dust/lodestoneDust.png deleted file mode 100644 index 0db136f3f..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/lodestoneDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/magnesiumDust.png b/src/main/resources/assets/techreborn/textures/items/dust/magnesiumDust.png deleted file mode 100644 index 0ea056053..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/magnesiumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/magnetiteDust.png b/src/main/resources/assets/techreborn/textures/items/dust/magnetiteDust.png deleted file mode 100644 index b2dfb8061..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/magnetiteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/manganeseDust.png b/src/main/resources/assets/techreborn/textures/items/dust/manganeseDust.png deleted file mode 100644 index e3bf20da4..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/manganeseDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/manyullynDust.png b/src/main/resources/assets/techreborn/textures/items/dust/manyullynDust.png deleted file mode 100644 index 491b0e288..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/manyullynDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/marbleDust.png b/src/main/resources/assets/techreborn/textures/items/dust/marbleDust.png deleted file mode 100644 index 16e1783c3..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/marbleDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/mithrilDust.png b/src/main/resources/assets/techreborn/textures/items/dust/mithrilDust.png deleted file mode 100644 index 4d6a87a88..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/mithrilDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/netherrackDust.png b/src/main/resources/assets/techreborn/textures/items/dust/netherrackDust.png deleted file mode 100644 index 4edc36c94..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/netherrackDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/nichromeDust.png b/src/main/resources/assets/techreborn/textures/items/dust/nichromeDust.png deleted file mode 100644 index 74dd88b30..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/nichromeDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/nickelDust.png b/src/main/resources/assets/techreborn/textures/items/dust/nickelDust.png deleted file mode 100644 index 2bdaf3b93..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/nickelDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/nikoliteDust.png b/src/main/resources/assets/techreborn/textures/items/dust/nikoliteDust.png deleted file mode 100644 index 454ffd7da..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/nikoliteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/obsidianDust.png b/src/main/resources/assets/techreborn/textures/items/dust/obsidianDust.png deleted file mode 100644 index 97ce84ec2..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/obsidianDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/olivineDust.png b/src/main/resources/assets/techreborn/textures/items/dust/olivineDust.png deleted file mode 100644 index 521ac0775..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/olivineDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/osmiumDust.png b/src/main/resources/assets/techreborn/textures/items/dust/osmiumDust.png deleted file mode 100644 index 5875edd1a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/osmiumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/peridotDust.png b/src/main/resources/assets/techreborn/textures/items/dust/peridotDust.png deleted file mode 100644 index fd9137964..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/peridotDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/phosphorDust.png b/src/main/resources/assets/techreborn/textures/items/dust/phosphorDust.png deleted file mode 100644 index ad186c1b2..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/phosphorDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/phosphorousDust.png b/src/main/resources/assets/techreborn/textures/items/dust/phosphorousDust.png deleted file mode 100644 index ad186c1b2..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/phosphorousDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/platinumDust.png b/src/main/resources/assets/techreborn/textures/items/dust/platinumDust.png deleted file mode 100644 index 4bb3fe35f..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/platinumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/potassiumFeldsparDust.png b/src/main/resources/assets/techreborn/textures/items/dust/potassiumFeldsparDust.png deleted file mode 100644 index abdfe2a68..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/potassiumFeldsparDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/pyriteDust.png b/src/main/resources/assets/techreborn/textures/items/dust/pyriteDust.png deleted file mode 100644 index 0289eba58..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/pyriteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/pyropeDust.png b/src/main/resources/assets/techreborn/textures/items/dust/pyropeDust.png deleted file mode 100644 index 28f45d943..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/pyropeDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/redGarnetDust.png b/src/main/resources/assets/techreborn/textures/items/dust/redGarnetDust.png deleted file mode 100644 index 1277bbcec..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/redGarnetDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/redrockDust.png b/src/main/resources/assets/techreborn/textures/items/dust/redrockDust.png deleted file mode 100644 index 30d3cb75a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/redrockDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/rubyDust.png b/src/main/resources/assets/techreborn/textures/items/dust/rubyDust.png deleted file mode 100644 index ebd97f32f..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/rubyDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/saltpeterDust.png b/src/main/resources/assets/techreborn/textures/items/dust/saltpeterDust.png deleted file mode 100644 index ed5939d05..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/saltpeterDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/sapphireDust.png b/src/main/resources/assets/techreborn/textures/items/dust/sapphireDust.png deleted file mode 100644 index 7ec03d40a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/sapphireDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/sawDustDust.png b/src/main/resources/assets/techreborn/textures/items/dust/sawDustDust.png deleted file mode 100644 index c8f974f7e..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/sawDustDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/siliconDust.png b/src/main/resources/assets/techreborn/textures/items/dust/siliconDust.png deleted file mode 100644 index 2181ae850..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/siliconDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/silverDust.png b/src/main/resources/assets/techreborn/textures/items/dust/silverDust.png deleted file mode 100644 index e739d8041..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/silverDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/sodaliteDust.png b/src/main/resources/assets/techreborn/textures/items/dust/sodaliteDust.png deleted file mode 100644 index 47b9d235a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/sodaliteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/spessartineDust.png b/src/main/resources/assets/techreborn/textures/items/dust/spessartineDust.png deleted file mode 100644 index d1ff8d313..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/spessartineDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/sphaleriteDust.png b/src/main/resources/assets/techreborn/textures/items/dust/sphaleriteDust.png deleted file mode 100644 index 33e30d7db..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/sphaleriteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/steelDust.png b/src/main/resources/assets/techreborn/textures/items/dust/steelDust.png deleted file mode 100644 index 5a3af6ce3..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/steelDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/sulfurDust.png b/src/main/resources/assets/techreborn/textures/items/dust/sulfurDust.png deleted file mode 100644 index ad186c1b2..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/sulfurDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/telluriumDust.png b/src/main/resources/assets/techreborn/textures/items/dust/telluriumDust.png deleted file mode 100644 index 477d8b53a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/telluriumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/teslatiteDust.png b/src/main/resources/assets/techreborn/textures/items/dust/teslatiteDust.png deleted file mode 100644 index 454ffd7da..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/teslatiteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/tetrahedriteDust.png b/src/main/resources/assets/techreborn/textures/items/dust/tetrahedriteDust.png deleted file mode 100644 index f419eaba0..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/tetrahedriteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/tinDust.png b/src/main/resources/assets/techreborn/textures/items/dust/tinDust.png deleted file mode 100644 index c05802c65..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/tinDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/titaniumDust.png b/src/main/resources/assets/techreborn/textures/items/dust/titaniumDust.png deleted file mode 100644 index 253b3154d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/titaniumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/tungstenDust.png b/src/main/resources/assets/techreborn/textures/items/dust/tungstenDust.png deleted file mode 100644 index 98dce399e..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/tungstenDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/uraniumDust.png b/src/main/resources/assets/techreborn/textures/items/dust/uraniumDust.png deleted file mode 100644 index 2bdaf3b93..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/uraniumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/uvaroviteDust.png b/src/main/resources/assets/techreborn/textures/items/dust/uvaroviteDust.png deleted file mode 100644 index 029892f2d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/uvaroviteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/vinteumDust.png b/src/main/resources/assets/techreborn/textures/items/dust/vinteumDust.png deleted file mode 100644 index 952812171..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/vinteumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/voidstoneDust.png b/src/main/resources/assets/techreborn/textures/items/dust/voidstoneDust.png deleted file mode 100644 index 367ae7a6d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/voidstoneDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/yellowGarnetDust.png b/src/main/resources/assets/techreborn/textures/items/dust/yellowGarnetDust.png deleted file mode 100644 index c72f232c2..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/yellowGarnetDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/zincDust.png b/src/main/resources/assets/techreborn/textures/items/dust/zincDust.png deleted file mode 100644 index 63f41f4bf..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/dust/zincDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/gem/redGarnet.png b/src/main/resources/assets/techreborn/textures/items/gem/redGarnet.png deleted file mode 100644 index d4d26767c..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/gem/redGarnet.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/gem/yellowGarnet.png b/src/main/resources/assets/techreborn/textures/items/gem/yellowGarnet.png deleted file mode 100644 index ef341d4d8..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/gem/yellowGarnet.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/advancedAlloyIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/advancedAlloyIngot.png deleted file mode 100644 index 0f289d7b1..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/advancedAlloyIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/aluminumIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/aluminumIngot.png deleted file mode 100644 index 091bad092..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/aluminumIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/brassIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/brassIngot.png deleted file mode 100644 index b5ea8adc6..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/brassIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/bronzeIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/bronzeIngot.png deleted file mode 100644 index 4b44d747e..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/bronzeIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/chromeIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/chromeIngot.png deleted file mode 100644 index cb4ebbe67..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/chromeIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/copperIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/copperIngot.png deleted file mode 100644 index 36c782881..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/copperIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/electrumIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/electrumIngot.png deleted file mode 100644 index 32f594132..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/electrumIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/hotTungstensteelIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/hotTungstensteelIngot.png deleted file mode 100644 index 3306a46b6..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/hotTungstensteelIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/invarIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/invarIngot.png deleted file mode 100644 index e802af221..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/invarIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/iridiumAlloyIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/iridiumAlloyIngot.png deleted file mode 100644 index 79368916d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/iridiumAlloyIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/iridiumIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/iridiumIngot.png deleted file mode 100644 index e0d96e35d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/iridiumIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/leadIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/leadIngot.png deleted file mode 100644 index 562ef6519..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/leadIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/mixedMetalIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/mixedMetalIngot.png deleted file mode 100644 index ffaa187c4..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/mixedMetalIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/nickelIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/nickelIngot.png deleted file mode 100644 index 273f3cb8d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/nickelIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/platinumIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/platinumIngot.png deleted file mode 100644 index d14c3bdd5..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/platinumIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/refinedIronIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/refinedIronIngot.png deleted file mode 100644 index e5d59a732..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/refinedIronIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/siliconIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/siliconIngot.png deleted file mode 100644 index f84f4f283..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/siliconIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/silverIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/silverIngot.png deleted file mode 100644 index baf9795ce..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/silverIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/steelIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/steelIngot.png deleted file mode 100644 index b4fdd1c5a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/steelIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/tinIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/tinIngot.png deleted file mode 100644 index 13fea84a9..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/tinIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/titaniumIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/titaniumIngot.png deleted file mode 100644 index 2c2c85a9e..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/titaniumIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/tungstenIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/tungstenIngot.png deleted file mode 100644 index 076c00571..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/tungstenIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/tungstensteelIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/tungstensteelIngot.png deleted file mode 100644 index 3c13b0482..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/tungstensteelIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/zincIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/zincIngot.png deleted file mode 100644 index 38fbdcfe3..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/ingot/zincIngot.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/misc/itemMatter.png b/src/main/resources/assets/techreborn/textures/items/misc/itemMatter.png deleted file mode 100644 index 084b18568..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/misc/itemMatter.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/misc/scrapBox.png b/src/main/resources/assets/techreborn/textures/items/misc/scrapBox.png deleted file mode 100644 index dadc6dc60..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/misc/scrapBox.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/aluminumNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/aluminumNugget.png deleted file mode 100644 index 34199c775..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/aluminumNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/antimonyNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/antimonyNugget.png deleted file mode 100644 index 279466d66..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/antimonyNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/brassNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/brassNugget.png deleted file mode 100644 index 582802edf..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/brassNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/bronzeNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/bronzeNugget.png deleted file mode 100644 index c012d5123..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/bronzeNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/chromeNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/chromeNugget.png deleted file mode 100644 index 2d87c195e..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/chromeNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/copperNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/copperNugget.png deleted file mode 100644 index 203f73479..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/copperNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/diamondNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/diamondNugget.png deleted file mode 100644 index e54514355..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/diamondNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/electrumNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/electrumNugget.png deleted file mode 100644 index 4c749cd80..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/electrumNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/hotTungstensteelNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/hotTungstensteelNugget.png deleted file mode 100644 index 087587f7b..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/hotTungstensteelNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/invarNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/invarNugget.png deleted file mode 100644 index 8bbe45109..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/invarNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/iridiumNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/iridiumNugget.png deleted file mode 100644 index bfba9a120..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/iridiumNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/ironNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/ironNugget.png deleted file mode 100644 index e42bc857b..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/ironNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/leadNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/leadNugget.png deleted file mode 100644 index 5ad800ca7..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/leadNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/nickelNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/nickelNugget.png deleted file mode 100644 index fe2a456ae..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/nickelNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/osmiumNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/osmiumNugget.png deleted file mode 100644 index 318bb6074..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/osmiumNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/platinumNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/platinumNugget.png deleted file mode 100644 index 3e557e858..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/platinumNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/refinedIronNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/refinedIronNugget.png deleted file mode 100644 index 6fa664b47..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/refinedIronNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/silverNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/silverNugget.png deleted file mode 100644 index 4d8c83092..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/silverNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/steelNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/steelNugget.png deleted file mode 100644 index da9cb093e..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/steelNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/tinNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/tinNugget.png deleted file mode 100644 index aa2ba16f4..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/tinNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/titaniumNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/titaniumNugget.png deleted file mode 100644 index 5354b2c03..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/titaniumNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/tungstenNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/tungstenNugget.png deleted file mode 100644 index 41f9825a9..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/tungstenNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/tungstensteelNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/tungstensteelNugget.png deleted file mode 100644 index 599aa079d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/tungstensteelNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/zincNugget.png b/src/main/resources/assets/techreborn/textures/items/nuggets/zincNugget.png deleted file mode 100644 index 20fbf1cc4..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/nuggets/zincNugget.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/NaKCoolantSimple.png b/src/main/resources/assets/techreborn/textures/items/part/NaKCoolantSimple.png deleted file mode 100644 index 428787b54..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/NaKCoolantSimple.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/NaKCoolantSix.png b/src/main/resources/assets/techreborn/textures/items/part/NaKCoolantSix.png deleted file mode 100644 index dcfb880c3..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/NaKCoolantSix.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/NaKCoolantTriple.png b/src/main/resources/assets/techreborn/textures/items/part/NaKCoolantTriple.png deleted file mode 100644 index cce4ebb35..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/NaKCoolantTriple.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/advancedCircuit.png b/src/main/resources/assets/techreborn/textures/items/part/advancedCircuit.png deleted file mode 100644 index 1721d7d26..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/advancedCircuit.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/computerMonitor.png b/src/main/resources/assets/techreborn/textures/items/part/computerMonitor.png deleted file mode 100644 index cbce1da68..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/computerMonitor.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/coolantSimple.png b/src/main/resources/assets/techreborn/textures/items/part/coolantSimple.png deleted file mode 100644 index 1ffc1f664..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/coolantSimple.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/coolantSix.png b/src/main/resources/assets/techreborn/textures/items/part/coolantSix.png deleted file mode 100644 index 2d4e498e0..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/coolantSix.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/coolantTriple.png b/src/main/resources/assets/techreborn/textures/items/part/coolantTriple.png deleted file mode 100644 index 393a3ab65..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/coolantTriple.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/cupronickelHeatingCoil.png b/src/main/resources/assets/techreborn/textures/items/part/cupronickelHeatingCoil.png deleted file mode 100644 index 535d9eca8..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/cupronickelHeatingCoil.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/dataControlCircuit.png b/src/main/resources/assets/techreborn/textures/items/part/dataControlCircuit.png deleted file mode 100644 index 8d1b601e1..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/dataControlCircuit.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/dataOrb.png b/src/main/resources/assets/techreborn/textures/items/part/dataOrb.png deleted file mode 100644 index f806aae81..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/dataOrb.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/dataStorageCircuit.png b/src/main/resources/assets/techreborn/textures/items/part/dataStorageCircuit.png deleted file mode 100644 index e5309d918..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/dataStorageCircuit.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/diamondGrindingHead.png b/src/main/resources/assets/techreborn/textures/items/part/diamondGrindingHead.png deleted file mode 100644 index 6a0af7edc..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/diamondGrindingHead.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/diamondSawBlade.png b/src/main/resources/assets/techreborn/textures/items/part/diamondSawBlade.png deleted file mode 100644 index e59e75362..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/diamondSawBlade.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/doublePlutoniumCell.png b/src/main/resources/assets/techreborn/textures/items/part/doublePlutoniumCell.png deleted file mode 100644 index 48a4b6ff9..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/doublePlutoniumCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/doubleThoriumCell.png b/src/main/resources/assets/techreborn/textures/items/part/doubleThoriumCell.png deleted file mode 100644 index 8022c3ddb..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/doubleThoriumCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/electronicCircuit.png b/src/main/resources/assets/techreborn/textures/items/part/electronicCircuit.png deleted file mode 100644 index b8d663e86..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/electronicCircuit.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/energeyFlowCircuit.png b/src/main/resources/assets/techreborn/textures/items/part/energeyFlowCircuit.png deleted file mode 100644 index 067ea6423..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/energeyFlowCircuit.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/energyFlowCircuit.png b/src/main/resources/assets/techreborn/textures/items/part/energyFlowCircuit.png deleted file mode 100644 index 067ea6423..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/energyFlowCircuit.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/heliumCoolantSimple.png b/src/main/resources/assets/techreborn/textures/items/part/heliumCoolantSimple.png deleted file mode 100644 index 0f3d25038..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/heliumCoolantSimple.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/heliumCoolantSix.png b/src/main/resources/assets/techreborn/textures/items/part/heliumCoolantSix.png deleted file mode 100644 index 4ef602ee1..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/heliumCoolantSix.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/heliumCoolantTriple.png b/src/main/resources/assets/techreborn/textures/items/part/heliumCoolantTriple.png deleted file mode 100644 index af8d24452..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/heliumCoolantTriple.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/iridiumNeutronReflector.png b/src/main/resources/assets/techreborn/textures/items/part/iridiumNeutronReflector.png deleted file mode 100644 index 8c2da9a98..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/iridiumNeutronReflector.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/kanthalHeatingCoil.png b/src/main/resources/assets/techreborn/textures/items/part/kanthalHeatingCoil.png deleted file mode 100644 index 3c2d93c84..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/kanthalHeatingCoil.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/lazuriteChunk.png b/src/main/resources/assets/techreborn/textures/items/part/lazuriteChunk.png deleted file mode 100644 index 43d1ed1a7..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/lazuriteChunk.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/machineParts.png b/src/main/resources/assets/techreborn/textures/items/part/machineParts.png deleted file mode 100644 index e4a7b113a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/machineParts.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/neutronReflector.png b/src/main/resources/assets/techreborn/textures/items/part/neutronReflector.png deleted file mode 100644 index c3e5778a6..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/neutronReflector.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/nichromeHeatingCoil.png b/src/main/resources/assets/techreborn/textures/items/part/nichromeHeatingCoil.png deleted file mode 100644 index 8dcab1829..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/nichromeHeatingCoil.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/plutoniumCell.png b/src/main/resources/assets/techreborn/textures/items/part/plutoniumCell.png deleted file mode 100644 index 54a5b60bd..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/plutoniumCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/quadPlutoniumCell.png b/src/main/resources/assets/techreborn/textures/items/part/quadPlutoniumCell.png deleted file mode 100644 index e89ff6437..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/quadPlutoniumCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/quadThoriumCell.png b/src/main/resources/assets/techreborn/textures/items/part/quadThoriumCell.png deleted file mode 100644 index 03d4eed3f..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/quadThoriumCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/rubberSap.png b/src/main/resources/assets/techreborn/textures/items/part/rubberSap.png deleted file mode 100644 index 17f4dc1eb..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/rubberSap.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/superConductor.png b/src/main/resources/assets/techreborn/textures/items/part/superConductor.png deleted file mode 100644 index e1cb27560..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/superConductor.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/thickNeutronReflector.png b/src/main/resources/assets/techreborn/textures/items/part/thickNeutronReflector.png deleted file mode 100644 index 8330cd10d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/thickNeutronReflector.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/thoriumCell.png b/src/main/resources/assets/techreborn/textures/items/part/thoriumCell.png deleted file mode 100644 index 244434860..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/thoriumCell.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/tungstenGrindingHead.png b/src/main/resources/assets/techreborn/textures/items/part/tungstenGrindingHead.png deleted file mode 100644 index 5052077a7..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/part/tungstenGrindingHead.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/pdn (Layered Files!)/advancedCircuit.pdn b/src/main/resources/assets/techreborn/textures/items/pdn (Layered Files!)/advancedCircuit.pdn deleted file mode 100644 index 630ebdce7..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/pdn (Layered Files!)/advancedCircuit.pdn and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/pdn (Layered Files!)/electronicCircuit.pdn b/src/main/resources/assets/techreborn/textures/items/pdn (Layered Files!)/electronicCircuit.pdn deleted file mode 100644 index aa0c43c4d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/pdn (Layered Files!)/electronicCircuit.pdn and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/advancedAlloyPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/advancedAlloyPlate.png deleted file mode 100644 index 506855468..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/advancedAlloyPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/aluminumPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/aluminumPlate.png deleted file mode 100644 index 949d8bc2f..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/aluminumPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/batteryAlloyPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/batteryAlloyPlate.png deleted file mode 100644 index 2e913ca1e..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/batteryAlloyPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/brassPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/brassPlate.png deleted file mode 100644 index 1a073c123..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/brassPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/bronzePlate.png b/src/main/resources/assets/techreborn/textures/items/plate/bronzePlate.png deleted file mode 100644 index 2373504dc..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/bronzePlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/carbonPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/carbonPlate.png deleted file mode 100644 index 8ee2d22de..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/carbonPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/chromePlate.png b/src/main/resources/assets/techreborn/textures/items/plate/chromePlate.png deleted file mode 100644 index e3d049c1d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/chromePlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/coalPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/coalPlate.png deleted file mode 100644 index 6570e0448..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/coalPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/copperPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/copperPlate.png deleted file mode 100644 index 01b2d324a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/copperPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/diamondPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/diamondPlate.png deleted file mode 100644 index b54739206..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/diamondPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/electrumPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/electrumPlate.png deleted file mode 100644 index 1be87bd53..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/electrumPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/emeraldPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/emeraldPlate.png deleted file mode 100644 index 508c3cacd..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/emeraldPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/goldPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/goldPlate.png deleted file mode 100644 index 16b9ef979..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/goldPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/invarPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/invarPlate.png deleted file mode 100644 index 0555d4c9f..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/invarPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/iridiumPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/iridiumPlate.png deleted file mode 100644 index f737b87fa..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/iridiumPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/ironPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/ironPlate.png deleted file mode 100644 index 5b430de7a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/ironPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/lapisPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/lapisPlate.png deleted file mode 100644 index 64571bb2d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/lapisPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/lazuritePlate.png b/src/main/resources/assets/techreborn/textures/items/plate/lazuritePlate.png deleted file mode 100644 index 4ec229577..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/lazuritePlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/leadPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/leadPlate.png deleted file mode 100644 index e0edef434..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/leadPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/magnaliumPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/magnaliumPlate.png deleted file mode 100644 index 900a6c090..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/magnaliumPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/nickelPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/nickelPlate.png deleted file mode 100644 index 000d16ec8..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/nickelPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/nikolitePlate.png b/src/main/resources/assets/techreborn/textures/items/plate/nikolitePlate.png deleted file mode 100644 index 2b6cb49a9..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/nikolitePlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/obsidianPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/obsidianPlate.png deleted file mode 100644 index 01ba7b6a9..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/obsidianPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/osmiumPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/osmiumPlate.png deleted file mode 100644 index 2b18cf0d1..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/osmiumPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/peridotPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/peridotPlate.png deleted file mode 100644 index 928986abe..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/peridotPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/platinumPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/platinumPlate.png deleted file mode 100644 index e44dc0477..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/platinumPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/redGarnetPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/redGarnetPlate.png deleted file mode 100644 index 841a7f509..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/redGarnetPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/redstonePlate.png b/src/main/resources/assets/techreborn/textures/items/plate/redstonePlate.png deleted file mode 100644 index 517d38f42..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/redstonePlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/refinedIronPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/refinedIronPlate.png deleted file mode 100644 index 3823d1fc5..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/refinedIronPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/roseGoldPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/roseGoldPlate.png deleted file mode 100644 index cd5e5fd1f..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/roseGoldPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/rubyPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/rubyPlate.png deleted file mode 100644 index 9571f2e3e..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/rubyPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/sapphirePlate.png b/src/main/resources/assets/techreborn/textures/items/plate/sapphirePlate.png deleted file mode 100644 index 01158872e..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/sapphirePlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/siliconPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/siliconPlate.png deleted file mode 100644 index f677e565c..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/siliconPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/silverPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/silverPlate.png deleted file mode 100644 index 1f54dcf78..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/silverPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/stainlessSteelPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/stainlessSteelPlate.png deleted file mode 100644 index 80b392e47..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/stainlessSteelPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/steelPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/steelPlate.png deleted file mode 100644 index 404278e71..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/steelPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/teslatitePlate.png b/src/main/resources/assets/techreborn/textures/items/plate/teslatitePlate.png deleted file mode 100644 index d94789f4e..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/teslatitePlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/tinPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/tinPlate.png deleted file mode 100644 index ed1f069e6..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/tinPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/titaniumPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/titaniumPlate.png deleted file mode 100644 index 7ca9a4fd1..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/titaniumPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/tungstenPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/tungstenPlate.png deleted file mode 100644 index a6acf8e02..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/tungstenPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/tungstensteelPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/tungstensteelPlate.png deleted file mode 100644 index be8c1baa3..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/tungstensteelPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/woodPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/woodPlate.png deleted file mode 100644 index 7796f498a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/woodPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/yellowGarnetPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/yellowGarnetPlate.png deleted file mode 100644 index bf5df7315..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/yellowGarnetPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/zincPlate.png b/src/main/resources/assets/techreborn/textures/items/plate/zincPlate.png deleted file mode 100644 index 4757746f3..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/plate/zincPlate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallAlmandineDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallAlmandineDust.png deleted file mode 100644 index 9402e4a3d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallAlmandineDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallAluminiumDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallAluminiumDust.png deleted file mode 100644 index bafe605f6..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallAluminiumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallAluminumBrassDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallAluminumBrassDust.png deleted file mode 100644 index ddc2f4583..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallAluminumBrassDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallAluminumDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallAluminumDust.png deleted file mode 100644 index bafe605f6..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallAluminumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallAlumiteDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallAlumiteDust.png deleted file mode 100644 index 00cd3f09c..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallAlumiteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallAndesiteDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallAndesiteDust.png deleted file mode 100644 index 137a7fd7b..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallAndesiteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallAndraditeDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallAndraditeDust.png deleted file mode 100644 index 04a06c02a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallAndraditeDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallAntimonyDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallAntimonyDust.png deleted file mode 100644 index 3b221e05c..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallAntimonyDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallArditeDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallArditeDust.png deleted file mode 100644 index 8e4105c89..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallArditeDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallAshes.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallAshes.png deleted file mode 100644 index aa18c20c1..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallAshes.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallAshesDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallAshesDust.png deleted file mode 100644 index aa18c20c1..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallAshesDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallBasaltDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallBasaltDust.png deleted file mode 100644 index a04d30fbf..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallBasaltDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallBauxiteDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallBauxiteDust.png deleted file mode 100644 index bf0b66df0..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallBauxiteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallBiotiteDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallBiotiteDust.png deleted file mode 100644 index a04d30fbf..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallBiotiteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallBrassDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallBrassDust.png deleted file mode 100644 index 54df8d16e..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallBrassDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallBronzeDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallBronzeDust.png deleted file mode 100644 index 0239c3374..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallBronzeDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallCadmiumDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallCadmiumDust.png deleted file mode 100644 index f61e67dce..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallCadmiumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallCalciteDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallCalciteDust.png deleted file mode 100644 index f32c0811d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallCalciteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallCharcoalDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallCharcoalDust.png deleted file mode 100644 index 4c37aff0f..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallCharcoalDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallChromeDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallChromeDust.png deleted file mode 100644 index 5e89467cd..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallChromeDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallCinnabarDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallCinnabarDust.png deleted file mode 100644 index d386364e7..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallCinnabarDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallClayDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallClayDust.png deleted file mode 100644 index f0b3ec1ba..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallClayDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallCoalDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallCoalDust.png deleted file mode 100644 index 9b1d2ef64..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallCoalDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallCobaltDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallCobaltDust.png deleted file mode 100644 index 4374c8379..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallCobaltDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallCopperDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallCopperDust.png deleted file mode 100644 index 656e7f465..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallCopperDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallCupronickelDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallCupronickelDust.png deleted file mode 100644 index 8ad866ce7..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallCupronickelDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallDarkAshes.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallDarkAshes.png deleted file mode 100644 index 47295b07a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallDarkAshes.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallDarkAshesDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallDarkAshesDust.png deleted file mode 100644 index 47295b07a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallDarkAshesDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallDarkIronDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallDarkIronDust.png deleted file mode 100644 index e9aa5d597..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallDarkIronDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallDiamondDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallDiamondDust.png deleted file mode 100644 index deedcc95e..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallDiamondDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallDioriteDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallDioriteDust.png deleted file mode 100644 index 4f29ad561..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallDioriteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallElectrumDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallElectrumDust.png deleted file mode 100644 index f068c01dc..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallElectrumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallEmeraldDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallEmeraldDust.png deleted file mode 100644 index 45a70946a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallEmeraldDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallEnderEyeDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallEnderEyeDust.png deleted file mode 100644 index 0c8f7c7ab..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallEnderEyeDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallEnderPearlDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallEnderPearlDust.png deleted file mode 100644 index dc43e927f..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallEnderPearlDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallEndstoneDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallEndstoneDust.png deleted file mode 100644 index fc14e6d88..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallEndstoneDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallFlintDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallFlintDust.png deleted file mode 100644 index 823c8752a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallFlintDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallGalenaDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallGalenaDust.png deleted file mode 100644 index 83701614b..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallGalenaDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallGlowstoneDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallGlowstoneDust.png deleted file mode 100644 index d83b69d8c..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallGlowstoneDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallGoldDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallGoldDust.png deleted file mode 100644 index a8203b5ac..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallGoldDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallGraniteDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallGraniteDust.png deleted file mode 100644 index 9eb0fdf05..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallGraniteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallGraphiteDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallGraphiteDust.png deleted file mode 100644 index 59d598e14..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallGraphiteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallGrossularDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallGrossularDust.png deleted file mode 100644 index a980ef300..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallGrossularDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallGunpowder.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallGunpowder.png deleted file mode 100644 index 9e84277d0..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallGunpowder.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallGunpowderDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallGunpowderDust.png deleted file mode 100644 index 9e84277d0..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallGunpowderDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallIndiumDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallIndiumDust.png deleted file mode 100644 index 5ee471243..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallIndiumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallInvarDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallInvarDust.png deleted file mode 100644 index c22ea35a1..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallInvarDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallIridiumDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallIridiumDust.png deleted file mode 100644 index 9f49d4048..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallIridiumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallIronDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallIronDust.png deleted file mode 100644 index cdf008e3c..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallIronDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallKanthalDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallKanthalDust.png deleted file mode 100644 index 254ae2921..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallKanthalDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallLapisDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallLapisDust.png deleted file mode 100644 index 19ff3063b..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallLapisDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallLazuriteDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallLazuriteDust.png deleted file mode 100644 index b9016d876..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallLazuriteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallLeadDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallLeadDust.png deleted file mode 100644 index 734e0ee93..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallLeadDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallLimestoneDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallLimestoneDust.png deleted file mode 100644 index e327cf0d9..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallLimestoneDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallLodestoneDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallLodestoneDust.png deleted file mode 100644 index cdf008e3c..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallLodestoneDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallMagnesiumDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallMagnesiumDust.png deleted file mode 100644 index 886b9a487..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallMagnesiumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallMagnetiteDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallMagnetiteDust.png deleted file mode 100644 index 3593e60ee..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallMagnetiteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallManganese.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallManganese.png deleted file mode 100644 index 9f49d4048..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallManganese.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallManganeseDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallManganeseDust.png deleted file mode 100644 index 9f49d4048..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallManganeseDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallManyullynDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallManyullynDust.png deleted file mode 100644 index 2faf8ab89..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallManyullynDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallMarbleDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallMarbleDust.png deleted file mode 100644 index c182e501e..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallMarbleDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallMithrilDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallMithrilDust.png deleted file mode 100644 index 762a033ef..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallMithrilDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallNetherrackDust - Copy.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallNetherrackDust - Copy.png deleted file mode 100644 index 0b16e4e19..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallNetherrackDust - Copy.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallNetherrackDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallNetherrackDust.png deleted file mode 100644 index 0b16e4e19..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallNetherrackDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallNichromeDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallNichromeDust.png deleted file mode 100644 index 28a19b70d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallNichromeDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallNickelDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallNickelDust.png deleted file mode 100644 index ed62f58f7..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallNickelDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallNikoliteDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallNikoliteDust.png deleted file mode 100644 index bce861aaa..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallNikoliteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallObsidianDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallObsidianDust.png deleted file mode 100644 index e2edf2cf5..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallObsidianDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallOlivineDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallOlivineDust.png deleted file mode 100644 index 45a70946a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallOlivineDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallPeridotDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallPeridotDust.png deleted file mode 100644 index b20af952b..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallPeridotDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallPhosphorousDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallPhosphorousDust.png deleted file mode 100644 index b61dbae1c..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallPhosphorousDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallPlatinumDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallPlatinumDust.png deleted file mode 100644 index 6ebc9b1af..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallPlatinumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallPotassiumFeldsparDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallPotassiumFeldsparDust.png deleted file mode 100644 index bae83dc76..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallPotassiumFeldsparDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallPyriteDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallPyriteDust.png deleted file mode 100644 index 9a1088003..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallPyriteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallPyropeDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallPyropeDust.png deleted file mode 100644 index c25a70d9d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallPyropeDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallRedGarnetDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallRedGarnetDust.png deleted file mode 100644 index 1805b8767..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallRedGarnetDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallRedrockDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallRedrockDust.png deleted file mode 100644 index 901735c3f..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallRedrockDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallRedstoneDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallRedstoneDust.png deleted file mode 100644 index 5ee407429..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallRedstoneDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallRubyDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallRubyDust.png deleted file mode 100644 index cc8ff614d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallRubyDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSaltpeterDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallSaltpeterDust.png deleted file mode 100644 index 3c72ee942..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSaltpeterDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSapphireDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallSapphireDust.png deleted file mode 100644 index 8cf52d518..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSapphireDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSawDustDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallSawDustDust.png deleted file mode 100644 index e24f0527d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSawDustDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSiliconDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallSiliconDust.png deleted file mode 100644 index 47295b07a..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSiliconDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSilverDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallSilverDust.png deleted file mode 100644 index a39d8c3c0..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSilverDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSodaliteDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallSodaliteDust.png deleted file mode 100644 index 42a1250e5..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSodaliteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSpessartine.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallSpessartine.png deleted file mode 100644 index 0ceadfd18..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSpessartine.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSpessartineDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallSpessartineDust.png deleted file mode 100644 index 0ceadfd18..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSpessartineDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSphaleriteDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallSphaleriteDust.png deleted file mode 100644 index 891646723..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSphaleriteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSteelDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallSteelDust.png deleted file mode 100644 index fef13d4dc..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSteelDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSulfurDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallSulfurDust.png deleted file mode 100644 index 45770e5f4..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallSulfurDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallTelluriumDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallTelluriumDust.png deleted file mode 100644 index ec451f5f1..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallTelluriumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallTeslatiteDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallTeslatiteDust.png deleted file mode 100644 index bce861aaa..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallTeslatiteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallTetrahedriteDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallTetrahedriteDust.png deleted file mode 100644 index d189a2412..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallTetrahedriteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallTinDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallTinDust.png deleted file mode 100644 index daada6ad2..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallTinDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallTitaniumDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallTitaniumDust.png deleted file mode 100644 index b8b1268f4..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallTitaniumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallTungstenDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallTungstenDust.png deleted file mode 100644 index 7206106dd..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallTungstenDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallUvarovite.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallUvarovite.png deleted file mode 100644 index a620d0a68..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallUvarovite.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallUvaroviteDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallUvaroviteDust.png deleted file mode 100644 index a620d0a68..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallUvaroviteDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallVinteumDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallVinteumDust.png deleted file mode 100644 index a70fa3fdd..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallVinteumDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallVoidstoneDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallVoidstoneDust.png deleted file mode 100644 index e490788c2..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallVoidstoneDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallYellowGarnetDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallYellowGarnetDust.png deleted file mode 100644 index 4ef9c306d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallYellowGarnetDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallZincDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallZincDust.png deleted file mode 100644 index 29d4bce77..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/smallDust/smallZincDust.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/advancedChainsaw.png b/src/main/resources/assets/techreborn/textures/items/tool/advancedChainsaw.png deleted file mode 100644 index 6e4336d71..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/advancedChainsaw.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/advancedDrill.png b/src/main/resources/assets/techreborn/textures/items/tool/advancedDrill.png deleted file mode 100644 index 484af21b5..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/advancedDrill.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/advancedJackhammer.png b/src/main/resources/assets/techreborn/textures/items/tool/advancedJackhammer.png deleted file mode 100644 index 436502b7e..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/advancedJackhammer.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/cloakingDevice.png b/src/main/resources/assets/techreborn/textures/items/tool/cloakingDevice.png deleted file mode 100644 index d36fed2d7..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/cloakingDevice.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/diamondChainsaw.png b/src/main/resources/assets/techreborn/textures/items/tool/diamondChainsaw.png deleted file mode 100644 index 3e9cb0050..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/diamondChainsaw.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/diamondDrill.png b/src/main/resources/assets/techreborn/textures/items/tool/diamondDrill.png deleted file mode 100644 index 9a18e2b67..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/diamondDrill.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/diamondJackhammer.png b/src/main/resources/assets/techreborn/textures/items/tool/diamondJackhammer.png deleted file mode 100644 index 80bfd8b71..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/diamondJackhammer.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/electricTreetap.png b/src/main/resources/assets/techreborn/textures/items/tool/electricTreetap.png deleted file mode 100644 index 79e5926d9..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/electricTreetap.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/electricWrench.png b/src/main/resources/assets/techreborn/textures/items/tool/electricWrench.png deleted file mode 100644 index 66f44dffa..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/electricWrench.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/energyCrystal.png b/src/main/resources/assets/techreborn/textures/items/tool/energyCrystal.png deleted file mode 100644 index 2db51c5c2..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/energyCrystal.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/lapotronCrystal.png b/src/main/resources/assets/techreborn/textures/items/tool/lapotronCrystal.png deleted file mode 100644 index 1a16f8e13..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/lapotronCrystal.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/lapotronicEnergyOrb.png b/src/main/resources/assets/techreborn/textures/items/tool/lapotronicEnergyOrb.png deleted file mode 100644 index c9e134fdf..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/lapotronicEnergyOrb.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/lapotronicPack.png b/src/main/resources/assets/techreborn/textures/items/tool/lapotronicPack.png deleted file mode 100644 index 702e3ec57..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/lapotronicPack.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/lithiumBatpack.png b/src/main/resources/assets/techreborn/textures/items/tool/lithiumBatpack.png deleted file mode 100644 index b99a2ade4..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/lithiumBatpack.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/lithiumBattery.png b/src/main/resources/assets/techreborn/textures/items/tool/lithiumBattery.png deleted file mode 100644 index 32cf638fa..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/lithiumBattery.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/lithiumBatteryEmpty.png b/src/main/resources/assets/techreborn/textures/items/tool/lithiumBatteryEmpty.png deleted file mode 100644 index 0ea016291..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/lithiumBatteryEmpty.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/rebatteryEmpty.png b/src/main/resources/assets/techreborn/textures/items/tool/rebatteryEmpty.png deleted file mode 100644 index ab1a04e29..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/rebatteryEmpty.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/rockcutterBlade.png b/src/main/resources/assets/techreborn/textures/items/tool/rockcutterBlade.png deleted file mode 100644 index de34d5011..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/rockcutterBlade.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/steelChainsaw.png b/src/main/resources/assets/techreborn/textures/items/tool/steelChainsaw.png deleted file mode 100644 index 6a91268b4..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/steelChainsaw.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/steelDrill.png b/src/main/resources/assets/techreborn/textures/items/tool/steelDrill.png deleted file mode 100644 index 0d3810fd3..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/steelDrill.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/steelJackhammer.png b/src/main/resources/assets/techreborn/textures/items/tool/steelJackhammer.png deleted file mode 100644 index 7344e2fcc..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/tool/steelJackhammer.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/upgrade/UpgradeBackingTemplate.png b/src/main/resources/assets/techreborn/textures/items/upgrade/UpgradeBackingTemplate.png deleted file mode 100644 index fd676a77d..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/upgrade/UpgradeBackingTemplate.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/upgrade/upgradeEnergyStorage.png b/src/main/resources/assets/techreborn/textures/items/upgrade/upgradeEnergyStorage.png deleted file mode 100644 index 17107818f..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/upgrade/upgradeEnergyStorage.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/upgrade/upgradeOverclock.png b/src/main/resources/assets/techreborn/textures/items/upgrade/upgradeOverclock.png deleted file mode 100644 index ee1cfd447..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/upgrade/upgradeOverclock.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/textures/items/upgrade/upgradeTransformer.png b/src/main/resources/assets/techreborn/textures/items/upgrade/upgradeTransformer.png deleted file mode 100644 index 92510ac1e..000000000 Binary files a/src/main/resources/assets/techreborn/textures/items/upgrade/upgradeTransformer.png and /dev/null differ diff --git a/src/main/resources/assets/techreborn/blockstates/alloyfurnace.json b/src/main/resources2/assets/techreborn/blockstates/alloyfurnace.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/alloyfurnace.json rename to src/main/resources2/assets/techreborn/blockstates/alloyfurnace.json diff --git a/src/main/resources/assets/techreborn/blockstates/alloysmelter.json b/src/main/resources2/assets/techreborn/blockstates/alloysmelter.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/alloysmelter.json rename to src/main/resources2/assets/techreborn/blockstates/alloysmelter.json diff --git a/src/main/resources/assets/techreborn/blockstates/assemblymachine.json b/src/main/resources2/assets/techreborn/blockstates/assemblymachine.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/assemblymachine.json rename to src/main/resources2/assets/techreborn/blockstates/assemblymachine.json diff --git a/src/main/resources/assets/techreborn/blockstates/blastfurnace.json b/src/main/resources2/assets/techreborn/blockstates/blastfurnace.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/blastfurnace.json rename to src/main/resources2/assets/techreborn/blockstates/blastfurnace.json diff --git a/src/main/resources/assets/techreborn/blockstates/chargebench.json b/src/main/resources2/assets/techreborn/blockstates/chargebench.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/chargebench.json rename to src/main/resources2/assets/techreborn/blockstates/chargebench.json diff --git a/src/main/resources/assets/techreborn/blockstates/chemicalreactor.json b/src/main/resources2/assets/techreborn/blockstates/chemicalreactor.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/chemicalreactor.json rename to src/main/resources2/assets/techreborn/blockstates/chemicalreactor.json diff --git a/src/main/resources/assets/techreborn/blockstates/chunkloader.json b/src/main/resources2/assets/techreborn/blockstates/chunkloader.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/chunkloader.json rename to src/main/resources2/assets/techreborn/blockstates/chunkloader.json diff --git a/src/main/resources/assets/techreborn/blockstates/computercube.json b/src/main/resources2/assets/techreborn/blockstates/computercube.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/computercube.json rename to src/main/resources2/assets/techreborn/blockstates/computercube.json diff --git a/src/main/resources/assets/techreborn/blockstates/dieselgenerator.json b/src/main/resources2/assets/techreborn/blockstates/dieselgenerator.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/dieselgenerator.json rename to src/main/resources2/assets/techreborn/blockstates/dieselgenerator.json diff --git a/src/main/resources/assets/techreborn/blockstates/distillationtower.json b/src/main/resources2/assets/techreborn/blockstates/distillationtower.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/distillationtower.json rename to src/main/resources2/assets/techreborn/blockstates/distillationtower.json diff --git a/src/main/resources/assets/techreborn/blockstates/dragoneggenergsiphon.json b/src/main/resources2/assets/techreborn/blockstates/dragoneggenergsiphon.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/dragoneggenergsiphon.json rename to src/main/resources2/assets/techreborn/blockstates/dragoneggenergsiphon.json diff --git a/src/main/resources/assets/techreborn/blockstates/dyncell.json b/src/main/resources2/assets/techreborn/blockstates/dyncell.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/dyncell.json rename to src/main/resources2/assets/techreborn/blockstates/dyncell.json diff --git a/src/main/resources/assets/techreborn/blockstates/electriccraftingtable.json b/src/main/resources2/assets/techreborn/blockstates/electriccraftingtable.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/electriccraftingtable.json rename to src/main/resources2/assets/techreborn/blockstates/electriccraftingtable.json diff --git a/src/main/resources/assets/techreborn/blockstates/fluids.json b/src/main/resources2/assets/techreborn/blockstates/fluids.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/fluids.json rename to src/main/resources2/assets/techreborn/blockstates/fluids.json diff --git a/src/main/resources/assets/techreborn/blockstates/fusioncoil.json b/src/main/resources2/assets/techreborn/blockstates/fusioncoil.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/fusioncoil.json rename to src/main/resources2/assets/techreborn/blockstates/fusioncoil.json diff --git a/src/main/resources/assets/techreborn/blockstates/fusioncontrolcomputer.json b/src/main/resources2/assets/techreborn/blockstates/fusioncontrolcomputer.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/fusioncontrolcomputer.json rename to src/main/resources2/assets/techreborn/blockstates/fusioncontrolcomputer.json diff --git a/src/main/resources/assets/techreborn/blockstates/gasturbine.json b/src/main/resources2/assets/techreborn/blockstates/gasturbine.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/gasturbine.json rename to src/main/resources2/assets/techreborn/blockstates/gasturbine.json diff --git a/src/main/resources/assets/techreborn/blockstates/grinder.json b/src/main/resources2/assets/techreborn/blockstates/grinder.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/grinder.json rename to src/main/resources2/assets/techreborn/blockstates/grinder.json diff --git a/src/main/resources/assets/techreborn/blockstates/heatgenerator.json b/src/main/resources2/assets/techreborn/blockstates/heatgenerator.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/heatgenerator.json rename to src/main/resources2/assets/techreborn/blockstates/heatgenerator.json diff --git a/src/main/resources/assets/techreborn/blockstates/implosioncompressor.json b/src/main/resources2/assets/techreborn/blockstates/implosioncompressor.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/implosioncompressor.json rename to src/main/resources2/assets/techreborn/blockstates/implosioncompressor.json diff --git a/src/main/resources/assets/techreborn/blockstates/industrialelectrolyzer.json b/src/main/resources2/assets/techreborn/blockstates/industrialelectrolyzer.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/industrialelectrolyzer.json rename to src/main/resources2/assets/techreborn/blockstates/industrialelectrolyzer.json diff --git a/src/main/resources/assets/techreborn/blockstates/industrialsawmill.json b/src/main/resources2/assets/techreborn/blockstates/industrialsawmill.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/industrialsawmill.json rename to src/main/resources2/assets/techreborn/blockstates/industrialsawmill.json diff --git a/src/main/resources/assets/techreborn/blockstates/ironfence.json b/src/main/resources2/assets/techreborn/blockstates/ironfence.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/ironfence.json rename to src/main/resources2/assets/techreborn/blockstates/ironfence.json diff --git a/src/main/resources/assets/techreborn/blockstates/ironfurnace.json b/src/main/resources2/assets/techreborn/blockstates/ironfurnace.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/ironfurnace.json rename to src/main/resources2/assets/techreborn/blockstates/ironfurnace.json diff --git a/src/main/resources/assets/techreborn/blockstates/lesustorage.json b/src/main/resources2/assets/techreborn/blockstates/lesustorage.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/lesustorage.json rename to src/main/resources2/assets/techreborn/blockstates/lesustorage.json diff --git a/src/main/resources/assets/techreborn/blockstates/lightningrod.json b/src/main/resources2/assets/techreborn/blockstates/lightningrod.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/lightningrod.json rename to src/main/resources2/assets/techreborn/blockstates/lightningrod.json diff --git a/src/main/resources/assets/techreborn/blockstates/machines/centrifuge.json b/src/main/resources2/assets/techreborn/blockstates/machines/centrifuge.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/machines/centrifuge.json rename to src/main/resources2/assets/techreborn/blockstates/machines/centrifuge.json diff --git a/src/main/resources/assets/techreborn/blockstates/magicenergyconverter.json b/src/main/resources2/assets/techreborn/blockstates/magicenergyconverter.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/magicenergyconverter.json rename to src/main/resources2/assets/techreborn/blockstates/magicenergyconverter.json diff --git a/src/main/resources/assets/techreborn/blockstates/magicrnergyabsorber.json b/src/main/resources2/assets/techreborn/blockstates/magicrnergyabsorber.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/magicrnergyabsorber.json rename to src/main/resources2/assets/techreborn/blockstates/magicrnergyabsorber.json diff --git a/src/main/resources/assets/techreborn/blockstates/matterfabricator.json b/src/main/resources2/assets/techreborn/blockstates/matterfabricator.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/matterfabricator.json rename to src/main/resources2/assets/techreborn/blockstates/matterfabricator.json diff --git a/src/main/resources/assets/techreborn/blockstates/plasmagenerator.json b/src/main/resources2/assets/techreborn/blockstates/plasmagenerator.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/plasmagenerator.json rename to src/main/resources2/assets/techreborn/blockstates/plasmagenerator.json diff --git a/src/main/resources/assets/techreborn/blockstates/playerdetector.json b/src/main/resources2/assets/techreborn/blockstates/playerdetector.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/playerdetector.json rename to src/main/resources2/assets/techreborn/blockstates/playerdetector.json diff --git a/src/main/resources/assets/techreborn/blockstates/recycler.json b/src/main/resources2/assets/techreborn/blockstates/recycler.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/recycler.json rename to src/main/resources2/assets/techreborn/blockstates/recycler.json diff --git a/src/main/resources/assets/techreborn/blockstates/rollingmachine.json b/src/main/resources2/assets/techreborn/blockstates/rollingmachine.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/rollingmachine.json rename to src/main/resources2/assets/techreborn/blockstates/rollingmachine.json diff --git a/src/main/resources/assets/techreborn/blockstates/rubberleaves.json b/src/main/resources2/assets/techreborn/blockstates/rubberleaves.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/rubberleaves.json rename to src/main/resources2/assets/techreborn/blockstates/rubberleaves.json diff --git a/src/main/resources/assets/techreborn/blockstates/rubbersapling.json b/src/main/resources2/assets/techreborn/blockstates/rubbersapling.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/rubbersapling.json rename to src/main/resources2/assets/techreborn/blockstates/rubbersapling.json diff --git a/src/main/resources/assets/techreborn/blockstates/scrapboxinator.json b/src/main/resources2/assets/techreborn/blockstates/scrapboxinator.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/scrapboxinator.json rename to src/main/resources2/assets/techreborn/blockstates/scrapboxinator.json diff --git a/src/main/resources/assets/techreborn/blockstates/semifluidgenerator.json b/src/main/resources2/assets/techreborn/blockstates/semifluidgenerator.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/semifluidgenerator.json rename to src/main/resources2/assets/techreborn/blockstates/semifluidgenerator.json diff --git a/src/main/resources/assets/techreborn/blockstates/supercondensator.json b/src/main/resources2/assets/techreborn/blockstates/supercondensator.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/supercondensator.json rename to src/main/resources2/assets/techreborn/blockstates/supercondensator.json diff --git a/src/main/resources/assets/techreborn/blockstates/techreborn.compressor.json b/src/main/resources2/assets/techreborn/blockstates/techreborn.compressor.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/techreborn.compressor.json rename to src/main/resources2/assets/techreborn/blockstates/techreborn.compressor.json diff --git a/src/main/resources/assets/techreborn/blockstates/techreborn.digitalchest.json b/src/main/resources2/assets/techreborn/blockstates/techreborn.digitalchest.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/techreborn.digitalchest.json rename to src/main/resources2/assets/techreborn/blockstates/techreborn.digitalchest.json diff --git a/src/main/resources/assets/techreborn/blockstates/techreborn.distributor.json b/src/main/resources2/assets/techreborn/blockstates/techreborn.distributor.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/techreborn.distributor.json rename to src/main/resources2/assets/techreborn/blockstates/techreborn.distributor.json diff --git a/src/main/resources/assets/techreborn/blockstates/techreborn.electricfurnace.json b/src/main/resources2/assets/techreborn/blockstates/techreborn.electricfurnace.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/techreborn.electricfurnace.json rename to src/main/resources2/assets/techreborn/blockstates/techreborn.electricfurnace.json diff --git a/src/main/resources/assets/techreborn/blockstates/techreborn.extractor.json b/src/main/resources2/assets/techreborn/blockstates/techreborn.extractor.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/techreborn.extractor.json rename to src/main/resources2/assets/techreborn/blockstates/techreborn.extractor.json diff --git a/src/main/resources/assets/techreborn/blockstates/techreborn.generator.json b/src/main/resources2/assets/techreborn/blockstates/techreborn.generator.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/techreborn.generator.json rename to src/main/resources2/assets/techreborn/blockstates/techreborn.generator.json diff --git a/src/main/resources/assets/techreborn/blockstates/techreborn.grinder.json b/src/main/resources2/assets/techreborn/blockstates/techreborn.grinder.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/techreborn.grinder.json rename to src/main/resources2/assets/techreborn/blockstates/techreborn.grinder.json diff --git a/src/main/resources/assets/techreborn/blockstates/techreborn.quantumchest.json b/src/main/resources2/assets/techreborn/blockstates/techreborn.quantumchest.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/techreborn.quantumchest.json rename to src/main/resources2/assets/techreborn/blockstates/techreborn.quantumchest.json diff --git a/src/main/resources/assets/techreborn/blockstates/techreborn.quantumtank.json b/src/main/resources2/assets/techreborn/blockstates/techreborn.quantumtank.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/techreborn.quantumtank.json rename to src/main/resources2/assets/techreborn/blockstates/techreborn.quantumtank.json diff --git a/src/main/resources/assets/techreborn/blockstates/techreborn.thermalgenerator.json b/src/main/resources2/assets/techreborn/blockstates/techreborn.thermalgenerator.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/techreborn.thermalgenerator.json rename to src/main/resources2/assets/techreborn/blockstates/techreborn.thermalgenerator.json diff --git a/src/main/resources/assets/techreborn/blockstates/vacuumfreezer.json b/src/main/resources2/assets/techreborn/blockstates/vacuumfreezer.json similarity index 100% rename from src/main/resources/assets/techreborn/blockstates/vacuumfreezer.json rename to src/main/resources2/assets/techreborn/blockstates/vacuumfreezer.json diff --git a/src/main/resources/assets/techreborn/designer/Roadmap.txt b/src/main/resources2/assets/techreborn/designer/Roadmap.txt similarity index 100% rename from src/main/resources/assets/techreborn/designer/Roadmap.txt rename to src/main/resources2/assets/techreborn/designer/Roadmap.txt diff --git a/src/main/resources/assets/techreborn/designer/mainWindow.fxml b/src/main/resources2/assets/techreborn/designer/mainWindow.fxml similarity index 100% rename from src/main/resources/assets/techreborn/designer/mainWindow.fxml rename to src/main/resources2/assets/techreborn/designer/mainWindow.fxml diff --git a/src/main/resources/assets/techreborn/models/block/iron_fence_inventory.json b/src/main/resources2/assets/techreborn/models/block/iron_fence_inventory.json similarity index 100% rename from src/main/resources/assets/techreborn/models/block/iron_fence_inventory.json rename to src/main/resources2/assets/techreborn/models/block/iron_fence_inventory.json diff --git a/src/main/resources/assets/techreborn/models/block/iron_fence_post.json b/src/main/resources2/assets/techreborn/models/block/iron_fence_post.json similarity index 100% rename from src/main/resources/assets/techreborn/models/block/iron_fence_post.json rename to src/main/resources2/assets/techreborn/models/block/iron_fence_post.json diff --git a/src/main/resources/assets/techreborn/models/block/iron_fence_side.json b/src/main/resources2/assets/techreborn/models/block/iron_fence_side.json similarity index 100% rename from src/main/resources/assets/techreborn/models/block/iron_fence_side.json rename to src/main/resources2/assets/techreborn/models/block/iron_fence_side.json diff --git a/src/main/resources/assets/techreborn/models/block/techreborn.distributor.json b/src/main/resources2/assets/techreborn/models/block/techreborn.distributor.json similarity index 100% rename from src/main/resources/assets/techreborn/models/block/techreborn.distributor.json rename to src/main/resources2/assets/techreborn/models/block/techreborn.distributor.json diff --git a/src/main/resources/assets/techreborn/models/item/cell.json b/src/main/resources2/assets/techreborn/models/item/cell.json similarity index 100% rename from src/main/resources/assets/techreborn/models/item/cell.json rename to src/main/resources2/assets/techreborn/models/item/cell.json diff --git a/src/main/resources/assets/techreborn/models/item/nanosaber.json b/src/main/resources2/assets/techreborn/models/item/nanosaber.json similarity index 100% rename from src/main/resources/assets/techreborn/models/item/nanosaber.json rename to src/main/resources2/assets/techreborn/models/item/nanosaber.json diff --git a/src/main/resources/assets/techreborn/sounds.json b/src/main/resources2/assets/techreborn/sounds.json similarity index 100% rename from src/main/resources/assets/techreborn/sounds.json rename to src/main/resources2/assets/techreborn/sounds.json diff --git a/src/main/resources/assets/techreborn/sounds/block_dismantle.ogg b/src/main/resources2/assets/techreborn/sounds/block_dismantle.ogg similarity index 100% rename from src/main/resources/assets/techreborn/sounds/block_dismantle.ogg rename to src/main/resources2/assets/techreborn/sounds/block_dismantle.ogg diff --git a/src/main/resources/assets/techreborn/sounds/cable_shock.ogg b/src/main/resources2/assets/techreborn/sounds/cable_shock.ogg similarity index 100% rename from src/main/resources/assets/techreborn/sounds/cable_shock.ogg rename to src/main/resources2/assets/techreborn/sounds/cable_shock.ogg diff --git a/src/main/resources/assets/techreborn/sounds/sap_extract.ogg b/src/main/resources2/assets/techreborn/sounds/sap_extract.ogg similarity index 100% rename from src/main/resources/assets/techreborn/sounds/sap_extract.ogg rename to src/main/resources2/assets/techreborn/sounds/sap_extract.ogg diff --git a/src/main/resources/assets/techreborn/textures/blocks/cables/copper_cable.png b/src/main/resources2/assets/techreborn/textures/blocks/cables/copper_cable.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/cables/copper_cable.png rename to src/main/resources2/assets/techreborn/textures/blocks/cables/copper_cable.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/cables/copper_insulated_cable.png b/src/main/resources2/assets/techreborn/textures/blocks/cables/copper_insulated_cable.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/cables/copper_insulated_cable.png rename to src/main/resources2/assets/techreborn/textures/blocks/cables/copper_insulated_cable.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/cables/glass_fiber_cable.png b/src/main/resources2/assets/techreborn/textures/blocks/cables/glass_fiber_cable.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/cables/glass_fiber_cable.png rename to src/main/resources2/assets/techreborn/textures/blocks/cables/glass_fiber_cable.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/cables/gold_cable.png b/src/main/resources2/assets/techreborn/textures/blocks/cables/gold_cable.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/cables/gold_cable.png rename to src/main/resources2/assets/techreborn/textures/blocks/cables/gold_cable.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/cables/gold_insulated_cable.png b/src/main/resources2/assets/techreborn/textures/blocks/cables/gold_insulated_cable.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/cables/gold_insulated_cable.png rename to src/main/resources2/assets/techreborn/textures/blocks/cables/gold_insulated_cable.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/cables/hv_cable.png b/src/main/resources2/assets/techreborn/textures/blocks/cables/hv_cable.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/cables/hv_cable.png rename to src/main/resources2/assets/techreborn/textures/blocks/cables/hv_cable.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/cables/hv_insulated_cable.png b/src/main/resources2/assets/techreborn/textures/blocks/cables/hv_insulated_cable.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/cables/hv_insulated_cable.png rename to src/main/resources2/assets/techreborn/textures/blocks/cables/hv_insulated_cable.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/cables/test.png b/src/main/resources2/assets/techreborn/textures/blocks/cables/test.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/cables/test.png rename to src/main/resources2/assets/techreborn/textures/blocks/cables/test.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/cables/tin_cable.png b/src/main/resources2/assets/techreborn/textures/blocks/cables/tin_cable.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/cables/tin_cable.png rename to src/main/resources2/assets/techreborn/textures/blocks/cables/tin_cable.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/berylium_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/berylium_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/berylium_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/berylium_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/berylium_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/berylium_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/berylium_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/berylium_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/calcium_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/calcium_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/calcium_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/calcium_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/calcium_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/calcium_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/calcium_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/calcium_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/calciumcarbonate_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/calciumcarbonate_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/calciumcarbonate_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/calciumcarbonate_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/calciumcarbonate_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/calciumcarbonate_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/calciumcarbonate_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/calciumcarbonate_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/chlorite_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/chlorite_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/chlorite_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/chlorite_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/chlorite_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/chlorite_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/chlorite_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/chlorite_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/deuterium_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/deuterium_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/deuterium_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/deuterium_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/deuterium_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/deuterium_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/deuterium_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/deuterium_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/glyceryl_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/glyceryl_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/glyceryl_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/glyceryl_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/glyceryl_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/glyceryl_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/glyceryl_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/glyceryl_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/helium3_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/helium3_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/helium3_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/helium3_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/helium3_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/helium3_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/helium3_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/helium3_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/helium_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/helium_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/helium_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/helium_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/helium_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/helium_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/helium_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/helium_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/heliumplasma_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/heliumplasma_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/heliumplasma_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/heliumplasma_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/heliumplasma_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/heliumplasma_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/heliumplasma_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/heliumplasma_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/hydrogen_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/hydrogen_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/hydrogen_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/hydrogen_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/hydrogen_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/hydrogen_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/hydrogen_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/hydrogen_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/lithium_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/lithium_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/lithium_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/lithium_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/lithium_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/lithium_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/lithium_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/lithium_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/mercury_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/mercury_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/mercury_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/mercury_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/mercury_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/mercury_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/mercury_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/mercury_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/methane_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/methane_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/methane_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/methane_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/methane_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/methane_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/methane_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/methane_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/nitrocoalfuel_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/nitrocoalfuel_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/nitrocoalfuel_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/nitrocoalfuel_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/nitrocoalfuel_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/nitrocoalfuel_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/nitrocoalfuel_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/nitrocoalfuel_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/nitrofuel_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/nitrofuel_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/nitrofuel_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/nitrofuel_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/nitrofuel_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/nitrofuel_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/nitrofuel_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/nitrofuel_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/nitrogen_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/nitrogen_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/nitrogen_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/nitrogen_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/nitrogen_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/nitrogen_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/nitrogen_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/nitrogen_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/nitrogendioxide_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/nitrogendioxide_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/nitrogendioxide_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/nitrogendioxide_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/nitrogendioxide_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/nitrogendioxide_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/nitrogendioxide_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/nitrogendioxide_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/potassium_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/potassium_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/potassium_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/potassium_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/potassium_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/potassium_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/potassium_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/potassium_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/silicon_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/silicon_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/silicon_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/silicon_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/silicon_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/silicon_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/silicon_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/silicon_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/sodium_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/sodium_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/sodium_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/sodium_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/sodium_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/sodium_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/sodium_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/sodium_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/sodiumpersulfate_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/sodiumpersulfate_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/sodiumpersulfate_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/sodiumpersulfate_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/sodiumpersulfate_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/sodiumpersulfate_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/sodiumpersulfate_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/sodiumpersulfate_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/tritium_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/tritium_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/tritium_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/tritium_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/tritium_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/tritium_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/tritium_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/tritium_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/wolframium_flowing.png b/src/main/resources2/assets/techreborn/textures/blocks/fluids/wolframium_flowing.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/wolframium_flowing.png rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/wolframium_flowing.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/fluids/wolframium_flowing.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/fluids/wolframium_flowing.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/fluids/wolframium_flowing.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/fluids/wolframium_flowing.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/advanced_machine_bottom.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/advanced_machine_bottom.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/advanced_machine_bottom.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/advanced_machine_bottom.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/advanced_machine_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/advanced_machine_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/advanced_machine_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/advanced_machine_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/advanced_machine_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/advanced_machine_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/advanced_machine_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/advanced_machine_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/distillation_tower_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/distillation_tower_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/distillation_tower_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/distillation_tower_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/distillation_tower_front_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/distillation_tower_front_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/distillation_tower_front_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/distillation_tower_front_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/implosion_compressor_bottom.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/implosion_compressor_bottom.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/implosion_compressor_bottom.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/implosion_compressor_bottom.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/implosion_compressor_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/implosion_compressor_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/implosion_compressor_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/implosion_compressor_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/implosion_compressor_front_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/implosion_compressor_front_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/implosion_compressor_front_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/implosion_compressor_front_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_blast_furnace_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_blast_furnace_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_blast_furnace_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_blast_furnace_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_blast_furnace_front_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_blast_furnace_front_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_blast_furnace_front_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_blast_furnace_front_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_bottom.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_bottom.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_bottom.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_bottom.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_side_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_side_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_side_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_side_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_side_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_side_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_side_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_side_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_side_on.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_side_on.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_side_on.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_side_on.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_top_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_top_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_top_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_top_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_top_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_top_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_top_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_top_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_top_on.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_top_on.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_top_on.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_centrifuge_top_on.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_grinder_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_grinder_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_grinder_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_grinder_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_grinder_front_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_grinder_front_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_grinder_front_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_grinder_front_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_grinder_top_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_grinder_top_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_grinder_top_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_grinder_top_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_grinder_top_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_grinder_top_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_grinder_top_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_grinder_top_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_grinder_top_on.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_grinder_top_on.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_grinder_top_on.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_grinder_top_on.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_sawmill_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_sawmill_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_sawmill_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_sawmill_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_sawmill_front_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_sawmill_front_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_sawmill_front_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_sawmill_front_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_sawmill_front_on.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_sawmill_front_on.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_sawmill_front_on.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/industrial_sawmill_front_on.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/machine_bottom.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/machine_bottom.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/machine_bottom.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/machine_bottom.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/machine_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/machine_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/machine_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/machine_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/machine_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/machine_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/advanced_machines/machine_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/advanced_machines/machine_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/diesel_generator_top_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/diesel_generator_top_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/diesel_generator_top_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/diesel_generator_top_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/diesel_generator_top_on.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/diesel_generator_top_on.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/diesel_generator_top_on.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/diesel_generator_top_on.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/diesel_generator_top_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/diesel_generator_top_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/diesel_generator_top_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/diesel_generator_top_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/dragon_egg_energy_siphon_side_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/dragon_egg_energy_siphon_side_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/dragon_egg_energy_siphon_side_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/dragon_egg_energy_siphon_side_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/dragon_egg_energy_siphon_side_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/dragon_egg_energy_siphon_side_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/dragon_egg_energy_siphon_side_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/dragon_egg_energy_siphon_side_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/dragon_egg_energy_siphon_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/dragon_egg_energy_siphon_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/dragon_egg_energy_siphon_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/dragon_egg_energy_siphon_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/gas_generator_bottom.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/gas_generator_bottom.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/gas_generator_bottom.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/gas_generator_bottom.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/gas_generator_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/gas_generator_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/gas_generator_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/gas_generator_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/generator_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/generator_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/generator_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/generator_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/generator_front_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/generator_front_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/generator_front_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/generator_front_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/generator_front_on.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/generator_front_on.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/generator_front_on.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/generator_front_on.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/generator_machine_bottom.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/generator_machine_bottom.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/generator_machine_bottom.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/generator_machine_bottom.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/generator_machine_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/generator_machine_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/generator_machine_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/generator_machine_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/generator_machine_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/generator_machine_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/generator_machine_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/generator_machine_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/heat_generator_bottom.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/heat_generator_bottom.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/heat_generator_bottom.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/heat_generator_bottom.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/heat_generator_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/heat_generator_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/heat_generator_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/heat_generator_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/heat_generator_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/heat_generator_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/heat_generator_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/heat_generator_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/lightning_rod_side_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/lightning_rod_side_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/lightning_rod_side_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/lightning_rod_side_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/lightning_rod_side_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/lightning_rod_side_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/lightning_rod_side_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/lightning_rod_side_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/magic_energy_absorber_bottom.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/magic_energy_absorber_bottom.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/magic_energy_absorber_bottom.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/magic_energy_absorber_bottom.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/magic_energy_absorber_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/magic_energy_absorber_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/magic_energy_absorber_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/magic_energy_absorber_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/magic_energy_absorber_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/magic_energy_absorber_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/magic_energy_absorber_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/magic_energy_absorber_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/magic_energy_converter_bottom.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/magic_energy_converter_bottom.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/magic_energy_converter_bottom.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/magic_energy_converter_bottom.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/magic_energy_converter_front on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/magic_energy_converter_front on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/magic_energy_converter_front on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/magic_energy_converter_front on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/magic_energy_converter_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/magic_energy_converter_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/magic_energy_converter_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/magic_energy_converter_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/magic_energy_converter_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/magic_energy_converter_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/magic_energy_converter_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/magic_energy_converter_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/magic_energy_converter_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/magic_energy_converter_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/magic_energy_converter_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/magic_energy_converter_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/plasma_generator_front.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/plasma_generator_front.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/plasma_generator_front.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/plasma_generator_front.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/plasma_generator_side_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/plasma_generator_side_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/plasma_generator_side_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/plasma_generator_side_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/plasma_generator_side_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/plasma_generator_side_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/plasma_generator_side_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/plasma_generator_side_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/semifluid_generator_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/semifluid_generator_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/semifluid_generator_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/semifluid_generator_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/solar_panel_side_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/solar_panel_side_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/solar_panel_side_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/solar_panel_side_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/solar_panel_side_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/solar_panel_side_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/solar_panel_side_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/solar_panel_side_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/solar_panel_top_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/solar_panel_top_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/solar_panel_top_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/solar_panel_top_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/solar_panel_top_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/solar_panel_top_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/solar_panel_top_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/solar_panel_top_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/thermal_generator_side_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/thermal_generator_side_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/thermal_generator_side_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/thermal_generator_side_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/thermal_generator_side_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/thermal_generator_side_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/thermal_generator_side_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/thermal_generator_side_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/thermal_generator_side_on.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/thermal_generator_side_on.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/thermal_generator_side_on.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/thermal_generator_side_on.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/thermal_generator_top_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/thermal_generator_top_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/thermal_generator_top_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/thermal_generator_top_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/thermal_generator_top_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/thermal_generator_top_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/thermal_generator_top_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/thermal_generator_top_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/generators/thermal_generator_top_on.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/machine/generators/thermal_generator_top_on.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/generators/thermal_generator_top_on.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/machine/generators/thermal_generator_top_on.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/assembling_machine_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/assembling_machine_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/assembling_machine_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/assembling_machine_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/assembling_machine_front_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/assembling_machine_front_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/assembling_machine_front_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/assembling_machine_front_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/assembling_machine_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/assembling_machine_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/assembling_machine_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/assembling_machine_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/centrifuge_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/centrifuge_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/centrifuge_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/centrifuge_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/chemical_reactor_side_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/chemical_reactor_side_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/chemical_reactor_side_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/chemical_reactor_side_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/chemical_reactor_side_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/chemical_reactor_side_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/chemical_reactor_side_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/chemical_reactor_side_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/computer_cube.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/computer_cube.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/computer_cube.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/computer_cube.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/electric_crafting_table_front.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/electric_crafting_table_front.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/electric_crafting_table_front.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/electric_crafting_table_front.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/electric_crafting_table_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/electric_crafting_table_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/electric_crafting_table_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/electric_crafting_table_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/extreme_voltage_machine_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/extreme_voltage_machine_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/extreme_voltage_machine_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/extreme_voltage_machine_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/fusion_coil.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/fusion_coil.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/fusion_coil.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/fusion_coil.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/fusion_control_computer_front.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/fusion_control_computer_front.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/fusion_control_computer_front.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/fusion_control_computer_front.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/fusion_control_computer_front.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/fusion_control_computer_front.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/fusion_control_computer_front.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/fusion_control_computer_front.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/industrial_chunk_loader_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/industrial_chunk_loader_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/industrial_chunk_loader_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/industrial_chunk_loader_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/industrial_electrolyzer_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/industrial_electrolyzer_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/industrial_electrolyzer_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/industrial_electrolyzer_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/industrial_electrolyzer_front_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/industrial_electrolyzer_front_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/industrial_electrolyzer_front_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/industrial_electrolyzer_front_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/lathe_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/lathe_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/lathe_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/lathe_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/lathe_front_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/lathe_front_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/lathe_front_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/lathe_front_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/machine_bottom.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/machine_bottom.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/machine_bottom.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/machine_bottom.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/machine_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/machine_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/machine_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/machine_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/machine_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/machine_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/machine_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/machine_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/matter_fabricator_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/matter_fabricator_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/matter_fabricator_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/matter_fabricator_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/matter_fabricator_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/matter_fabricator_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/matter_fabricator_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/matter_fabricator_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/matterfab_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/matterfab_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/matterfab_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/matterfab_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/matterfab_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/matterfab_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/matterfab_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/matterfab_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/plate_cutting_machine_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/plate_cutting_machine_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/plate_cutting_machine_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/plate_cutting_machine_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/plate_cutting_machine_front_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/plate_cutting_machine_front_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/plate_cutting_machine_front_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/plate_cutting_machine_front_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/player_detector_all.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/player_detector_all.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/player_detector_all.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/player_detector_all.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/player_detector_others.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/player_detector_others.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/player_detector_others.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/player_detector_others.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/player_detector_you.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/player_detector_you.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/player_detector_you.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/player_detector_you.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/pump_side_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/pump_side_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/pump_side_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/pump_side_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/pump_side_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/pump_side_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/pump_side_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/pump_side_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/qchest_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/qchest_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/qchest_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/qchest_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/quantum_chest.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/quantum_chest.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/quantum_chest.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/quantum_chest.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/quantum_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/quantum_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/quantum_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/quantum_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/rolling_machine_side_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/rolling_machine_side_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/rolling_machine_side_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/rolling_machine_side_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/rolling_machine_side_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/rolling_machine_side_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/rolling_machine_side_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/rolling_machine_side_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/scrapboxinator_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/scrapboxinator_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/scrapboxinator_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/scrapboxinator_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/scrapboxinator_front_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/scrapboxinator_front_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/scrapboxinator_front_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/scrapboxinator_front_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/scrapboxinator_front_on.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/scrapboxinator_front_on.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/scrapboxinator_front_on.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/scrapboxinator_front_on.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/supercondensator_front.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/supercondensator_front.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/supercondensator_front.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/supercondensator_front.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/supercondensator_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/supercondensator_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/supercondensator_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/supercondensator_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/teleporter_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/teleporter_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/teleporter_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/teleporter_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/teleporter_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/teleporter_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/teleporter_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/teleporter_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/vacuum_freezer_front.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/vacuum_freezer_front.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/vacuum_freezer_front.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/vacuum_freezer_front.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/vacuum_freezer_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/vacuum_freezer_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/greg_machines/vacuum_freezer_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/greg_machines/vacuum_freezer_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/iron_machines/alloy_furnace_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/iron_machines/alloy_furnace_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/iron_machines/alloy_furnace_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/iron_machines/alloy_furnace_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/iron_machines/alloy_furnace_front_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/iron_machines/alloy_furnace_front_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/iron_machines/alloy_furnace_front_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/iron_machines/alloy_furnace_front_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/iron_machines/alloy_furnace_front_on.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/machine/iron_machines/alloy_furnace_front_on.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/iron_machines/alloy_furnace_front_on.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/machine/iron_machines/alloy_furnace_front_on.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/iron_machines/iron_furnace_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/iron_machines/iron_furnace_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/iron_machines/iron_furnace_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/iron_machines/iron_furnace_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/iron_machines/iron_furnace_front_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/iron_machines/iron_furnace_front_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/iron_machines/iron_furnace_front_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/iron_machines/iron_furnace_front_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/iron_machines/iron_furnace_front_on.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/machine/iron_machines/iron_furnace_front_on.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/iron_machines/iron_furnace_front_on.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/machine/iron_machines/iron_furnace_front_on.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/iron_machines/iron_machine_bottom.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/iron_machines/iron_machine_bottom.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/iron_machines/iron_machine_bottom.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/iron_machines/iron_machine_bottom.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/iron_machines/iron_machine_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/iron_machines/iron_machine_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/iron_machines/iron_machine_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/iron_machines/iron_machine_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/iron_machines/iron_machine_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/iron_machines/iron_machine_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/iron_machines/iron_machine_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/iron_machines/iron_machine_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/aluminum_machine_block.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/aluminum_machine_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/aluminum_machine_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/aluminum_machine_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/brass_machine_block.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/brass_machine_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/brass_machine_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/brass_machine_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/bronze_machine_block.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/bronze_machine_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/bronze_machine_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/bronze_machine_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/casingadvanced.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/casingadvanced.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/casingadvanced.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/casingadvanced.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/casingadvanced_edge.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/casingadvanced_edge.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/casingadvanced_edge.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/casingadvanced_edge.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/casingadvanced_full.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/casingadvanced_full.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/casingadvanced_full.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/casingadvanced_full.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/casingreinforced.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/casingreinforced.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/casingreinforced.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/casingreinforced.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/casingreinforced_edge.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/casingreinforced_edge.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/casingreinforced_edge.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/casingreinforced_edge.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/casingreinforced_full.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/casingreinforced_full.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/casingreinforced_full.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/casingreinforced_full.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/casingstandard.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/casingstandard.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/casingstandard.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/casingstandard.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/casingstandard_edge.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/casingstandard_edge.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/casingstandard_edge.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/casingstandard_edge.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/casingstandard_full.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/casingstandard_full.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/casingstandard_full.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/casingstandard_full.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/iron_machine_block.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/iron_machine_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/iron_machine_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/iron_machine_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/machine_machine_block.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/machine_machine_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/machine_machine_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/machine_machine_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/steel_machine_block.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/steel_machine_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/steel_machine_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/steel_machine_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/titanium_machine_block.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/titanium_machine_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/machine_blocks/titanium_machine_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/machine_blocks/titanium_machine_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/aesu_bottom.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/aesu_bottom.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/aesu_bottom.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/aesu_bottom.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/aesu_front.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/aesu_front.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/aesu_front.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/aesu_front.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/aesu_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/aesu_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/aesu_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/aesu_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/aesu_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/aesu_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/aesu_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/aesu_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/batbox_bottom.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/batbox_bottom.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/batbox_bottom.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/batbox_bottom.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/batbox_front.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/batbox_front.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/batbox_front.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/batbox_front.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/batbox_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/batbox_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/batbox_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/batbox_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/batbox_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/batbox_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/batbox_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/batbox_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/evtransformer_front.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/evtransformer_front.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/evtransformer_front.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/evtransformer_front.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/evtransformer_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/evtransformer_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/evtransformer_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/evtransformer_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/hvtransformer_front.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/hvtransformer_front.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/hvtransformer_front.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/hvtransformer_front.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/hvtransformer_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/hvtransformer_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/hvtransformer_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/hvtransformer_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/idsu_bottom.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/idsu_bottom.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/idsu_bottom.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/idsu_bottom.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/idsu_front.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/idsu_front.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/idsu_front.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/idsu_front.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/idsu_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/idsu_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/idsu_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/idsu_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/idsu_side.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/idsu_side.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/idsu_side.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/idsu_side.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/idsu_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/idsu_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/idsu_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/idsu_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/lesu_block.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/lesu_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/lesu_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/lesu_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/lesu_bottom.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/lesu_bottom.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/lesu_bottom.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/lesu_bottom.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/lesu_front.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/lesu_front.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/lesu_front.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/lesu_front.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/lesu_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/lesu_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/lesu_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/lesu_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/lesu_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/lesu_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/lesu_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/lesu_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/lvtransformer_front.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/lvtransformer_front.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/lvtransformer_front.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/lvtransformer_front.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/lvtransformer_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/lvtransformer_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/lvtransformer_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/lvtransformer_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/mfe_bottom.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/mfe_bottom.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/mfe_bottom.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/mfe_bottom.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/mfe_front.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/mfe_front.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/mfe_front.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/mfe_front.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/mfe_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/mfe_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/mfe_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/mfe_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/mfe_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/mfe_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/mfe_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/mfe_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/mfsu_bottom.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/mfsu_bottom.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/mfsu_bottom.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/mfsu_bottom.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/mfsu_front.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/mfsu_front.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/mfsu_front.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/mfsu_front.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/mfsu_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/mfsu_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/mfsu_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/mfsu_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/mfsu_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/mfsu_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/mfsu_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/mfsu_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/mvtransformer_front.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/mvtransformer_front.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/mvtransformer_front.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/mvtransformer_front.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/storage/mvtransformer_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/storage/mvtransformer_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/storage/mvtransformer_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/storage/mvtransformer_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/compressor_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/compressor_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/compressor_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/compressor_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/compressor_front_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/compressor_front_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/compressor_front_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/compressor_front_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/compressor_front_on.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/compressor_front_on.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/compressor_front_on.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/compressor_front_on.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/electric_alloy_furnace_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/electric_alloy_furnace_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/electric_alloy_furnace_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/electric_alloy_furnace_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/electric_alloy_furnace_front_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/electric_alloy_furnace_front_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/electric_alloy_furnace_front_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/electric_alloy_furnace_front_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/electric_furnace_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/electric_furnace_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/electric_furnace_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/electric_furnace_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/electric_furnace_front_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/electric_furnace_front_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/electric_furnace_front_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/electric_furnace_front_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/extractor_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/extractor_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/extractor_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/extractor_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/extractor_front_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/extractor_front_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/extractor_front_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/extractor_front_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/extractor_front_on.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/extractor_front_on.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/extractor_front_on.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/extractor_front_on.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_front_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_front_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_front_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_front_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_front_on.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_front_on.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_front_on.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_front_on.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_top_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_top_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_top_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_top_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_top_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_top_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_top_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_top_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_top_on.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_top_on.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_top_on.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/grinder_top_on.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/recycler_front_off.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/recycler_front_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/recycler_front_off.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/recycler_front_off.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/recycler_front_on.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/recycler_front_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/recycler_front_on.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/recycler_front_on.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/recycler_front_on.png.mcmeta b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/recycler_front_on.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/recycler_front_on.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/recycler_front_on.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/tier1_machine_bottom.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/tier1_machine_bottom.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/tier1_machine_bottom.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/tier1_machine_bottom.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/tier1_machine_side.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/tier1_machine_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/tier1_machine_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/tier1_machine_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/tier1_machine_top.png b/src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/tier1_machine_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/machine/tier1_machines/tier1_machine_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/machine/tier1_machines/tier1_machine_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/metal_shelf_books.png b/src/main/resources2/assets/techreborn/textures/blocks/metal_shelf_books.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/metal_shelf_books.png rename to src/main/resources2/assets/techreborn/textures/blocks/metal_shelf_books.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/metal_shelf_cans.png b/src/main/resources2/assets/techreborn/textures/blocks/metal_shelf_cans.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/metal_shelf_cans.png rename to src/main/resources2/assets/techreborn/textures/blocks/metal_shelf_cans.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/metal_shelf_empty.png b/src/main/resources2/assets/techreborn/textures/blocks/metal_shelf_empty.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/metal_shelf_empty.png rename to src/main/resources2/assets/techreborn/textures/blocks/metal_shelf_empty.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/metal_shelf_paper.png b/src/main/resources2/assets/techreborn/textures/blocks/metal_shelf_paper.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/metal_shelf_paper.png rename to src/main/resources2/assets/techreborn/textures/blocks/metal_shelf_paper.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/nuke.png b/src/main/resources2/assets/techreborn/textures/blocks/nuke.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/nuke.png rename to src/main/resources2/assets/techreborn/textures/blocks/nuke.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/nuke_overlay.png b/src/main/resources2/assets/techreborn/textures/blocks/nuke_overlay.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/nuke_overlay.png rename to src/main/resources2/assets/techreborn/textures/blocks/nuke_overlay.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/orebauxite.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/orebauxite.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/orebauxite.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/orebauxite.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/orecassiterite.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/orecassiterite.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/orecassiterite.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/orecassiterite.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/orecinnabar.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/orecinnabar.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/orecinnabar.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/orecinnabar.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/orecopper.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/orecopper.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/orecopper.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/orecopper.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/oregalena.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/oregalena.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/oregalena.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/oregalena.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/oreiridium.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/oreiridium.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/oreiridium.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/oreiridium.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/orelead.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/orelead.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/orelead.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/orelead.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/orenickel.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/orenickel.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/orenickel.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/orenickel.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/oreolivine.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/oreolivine.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/oreolivine.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/oreolivine.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/oreperidot.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/oreperidot.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/oreperidot.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/oreperidot.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/oreplatinum.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/oreplatinum.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/oreplatinum.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/oreplatinum.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/orepyrite.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/orepyrite.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/orepyrite.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/orepyrite.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/orepyrite1.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/orepyrite1.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/orepyrite1.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/orepyrite1.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/orepyrite2.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/orepyrite2.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/orepyrite2.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/orepyrite2.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/orepyrite3.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/orepyrite3.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/orepyrite3.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/orepyrite3.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/orepyrite4.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/orepyrite4.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/orepyrite4.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/orepyrite4.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/orepyrite5.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/orepyrite5.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/orepyrite5.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/orepyrite5.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/orepyrite6.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/orepyrite6.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/orepyrite6.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/orepyrite6.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/oreruby.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/oreruby.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/oreruby.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/oreruby.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/oresapphire.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/oresapphire.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/oresapphire.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/oresapphire.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/oresheldonite.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/oresheldonite.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/oresheldonite.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/oresheldonite.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/oresilver.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/oresilver.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/oresilver.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/oresilver.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/oresodalite.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/oresodalite.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/oresodalite.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/oresodalite.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/oresphalerite.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/oresphalerite.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/oresphalerite.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/oresphalerite.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/oretetrahedrite.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/oretetrahedrite.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/oretetrahedrite.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/oretetrahedrite.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/oretin.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/oretin.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/oretin.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/oretin.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/oretungsten.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/oretungsten.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/oretungsten.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/oretungsten.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ore/oretungston.png b/src/main/resources2/assets/techreborn/textures/blocks/ore/oretungston.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ore/oretungston.png rename to src/main/resources2/assets/techreborn/textures/blocks/ore/oretungston.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/reinforcedglass.png b/src/main/resources2/assets/techreborn/textures/blocks/reinforcedglass.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/reinforcedglass.png rename to src/main/resources2/assets/techreborn/textures/blocks/reinforcedglass.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/rubber_leaves.png b/src/main/resources2/assets/techreborn/textures/blocks/rubber_leaves.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/rubber_leaves.png rename to src/main/resources2/assets/techreborn/textures/blocks/rubber_leaves.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/rubber_log_sap.png b/src/main/resources2/assets/techreborn/textures/blocks/rubber_log_sap.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/rubber_log_sap.png rename to src/main/resources2/assets/techreborn/textures/blocks/rubber_log_sap.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/rubber_log_side.png b/src/main/resources2/assets/techreborn/textures/blocks/rubber_log_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/rubber_log_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/rubber_log_side.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/rubber_log_top.png b/src/main/resources2/assets/techreborn/textures/blocks/rubber_log_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/rubber_log_top.png rename to src/main/resources2/assets/techreborn/textures/blocks/rubber_log_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/rubber_planks.png b/src/main/resources2/assets/techreborn/textures/blocks/rubber_planks.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/rubber_planks.png rename to src/main/resources2/assets/techreborn/textures/blocks/rubber_planks.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/rubber_sapling.png b/src/main/resources2/assets/techreborn/textures/blocks/rubber_sapling.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/rubber_sapling.png rename to src/main/resources2/assets/techreborn/textures/blocks/rubber_sapling.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/aluminum_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/aluminum_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/aluminum_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/aluminum_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/brass_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/brass_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/brass_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/brass_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/bronze_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/bronze_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/bronze_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/bronze_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/chrome_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/chrome_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/chrome_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/chrome_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/copper_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/copper_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/copper_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/copper_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/electrum_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/electrum_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/electrum_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/electrum_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/invar_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/invar_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/invar_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/invar_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/iridium_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/iridium_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/iridium_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/iridium_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/iridium_reinforced_stone_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/iridium_reinforced_stone_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/iridium_reinforced_stone_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/iridium_reinforced_stone_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/iridium_reinforced_tungstensteel_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/iridium_reinforced_tungstensteel_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/iridium_reinforced_tungstensteel_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/iridium_reinforced_tungstensteel_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/lead_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/lead_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/lead_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/lead_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/lodestone_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/lodestone_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/lodestone_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/lodestone_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/nickel_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/nickel_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/nickel_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/nickel_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/osmium_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/osmium_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/osmium_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/osmium_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/peridot_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/peridot_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/peridot_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/peridot_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/platinum_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/platinum_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/platinum_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/platinum_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/ruby_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/ruby_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/ruby_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/ruby_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/sapphire_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/sapphire_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/sapphire_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/sapphire_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/silver_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/silver_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/silver_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/silver_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/steel_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/steel_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/steel_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/steel_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/tellurium_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/tellurium_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/tellurium_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/tellurium_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/tin_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/tin_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/tin_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/tin_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/titanium_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/titanium_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/titanium_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/titanium_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/tungsten_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/tungsten_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/tungsten_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/tungsten_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/tungstensteel_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/tungstensteel_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/tungstensteel_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/tungstensteel_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storage/zinc_block.png b/src/main/resources2/assets/techreborn/textures/blocks/storage/zinc_block.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storage/zinc_block.png rename to src/main/resources2/assets/techreborn/textures/blocks/storage/zinc_block.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/wood_shelf_books.png b/src/main/resources2/assets/techreborn/textures/blocks/wood_shelf_books.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/wood_shelf_books.png rename to src/main/resources2/assets/techreborn/textures/blocks/wood_shelf_books.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/wood_shelf_cans.png b/src/main/resources2/assets/techreborn/textures/blocks/wood_shelf_cans.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/wood_shelf_cans.png rename to src/main/resources2/assets/techreborn/textures/blocks/wood_shelf_cans.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/wood_shelf_empty.png b/src/main/resources2/assets/techreborn/textures/blocks/wood_shelf_empty.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/wood_shelf_empty.png rename to src/main/resources2/assets/techreborn/textures/blocks/wood_shelf_empty.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/wood_shelf_paper.png b/src/main/resources2/assets/techreborn/textures/blocks/wood_shelf_paper.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/wood_shelf_paper.png rename to src/main/resources2/assets/techreborn/textures/blocks/wood_shelf_paper.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/wood_shelf_side.png b/src/main/resources2/assets/techreborn/textures/blocks/wood_shelf_side.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/wood_shelf_side.png rename to src/main/resources2/assets/techreborn/textures/blocks/wood_shelf_side.png diff --git a/src/main/resources/assets/techreborn/textures/gui/aesu.png b/src/main/resources2/assets/techreborn/textures/gui/aesu.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/aesu.png rename to src/main/resources2/assets/techreborn/textures/gui/aesu.png diff --git a/src/main/resources/assets/techreborn/textures/gui/alloy_furnace.png b/src/main/resources2/assets/techreborn/textures/gui/alloy_furnace.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/alloy_furnace.png rename to src/main/resources2/assets/techreborn/textures/gui/alloy_furnace.png diff --git a/src/main/resources/assets/techreborn/textures/gui/assembling_machine.png b/src/main/resources2/assets/techreborn/textures/gui/assembling_machine.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/assembling_machine.png rename to src/main/resources2/assets/techreborn/textures/gui/assembling_machine.png diff --git a/src/main/resources/assets/techreborn/textures/gui/autocraftingtable.png b/src/main/resources2/assets/techreborn/textures/gui/autocraftingtable.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/autocraftingtable.png rename to src/main/resources2/assets/techreborn/textures/gui/autocraftingtable.png diff --git a/src/main/resources/assets/techreborn/textures/gui/batbox.png b/src/main/resources2/assets/techreborn/textures/gui/batbox.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/batbox.png rename to src/main/resources2/assets/techreborn/textures/gui/batbox.png diff --git a/src/main/resources/assets/techreborn/textures/gui/centrifuge.png b/src/main/resources2/assets/techreborn/textures/gui/centrifuge.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/centrifuge.png rename to src/main/resources2/assets/techreborn/textures/gui/centrifuge.png diff --git a/src/main/resources/assets/techreborn/textures/gui/chargebench.png b/src/main/resources2/assets/techreborn/textures/gui/chargebench.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/chargebench.png rename to src/main/resources2/assets/techreborn/textures/gui/chargebench.png diff --git a/src/main/resources/assets/techreborn/textures/gui/chemical_reactor.png b/src/main/resources2/assets/techreborn/textures/gui/chemical_reactor.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/chemical_reactor.png rename to src/main/resources2/assets/techreborn/textures/gui/chemical_reactor.png diff --git a/src/main/resources/assets/techreborn/textures/gui/compressor.png b/src/main/resources2/assets/techreborn/textures/gui/compressor.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/compressor.png rename to src/main/resources2/assets/techreborn/textures/gui/compressor.png diff --git a/src/main/resources/assets/techreborn/textures/gui/destructopack.png b/src/main/resources2/assets/techreborn/textures/gui/destructopack.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/destructopack.png rename to src/main/resources2/assets/techreborn/textures/gui/destructopack.png diff --git a/src/main/resources/assets/techreborn/textures/gui/diesel_generator.png b/src/main/resources2/assets/techreborn/textures/gui/diesel_generator.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/diesel_generator.png rename to src/main/resources2/assets/techreborn/textures/gui/diesel_generator.png diff --git a/src/main/resources/assets/techreborn/textures/gui/distillation_tower.png b/src/main/resources2/assets/techreborn/textures/gui/distillation_tower.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/distillation_tower.png rename to src/main/resources2/assets/techreborn/textures/gui/distillation_tower.png diff --git a/src/main/resources/assets/techreborn/textures/gui/electric_alloy_furnace.png b/src/main/resources2/assets/techreborn/textures/gui/electric_alloy_furnace.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/electric_alloy_furnace.png rename to src/main/resources2/assets/techreborn/textures/gui/electric_alloy_furnace.png diff --git a/src/main/resources/assets/techreborn/textures/gui/electric_crafting_table.png b/src/main/resources2/assets/techreborn/textures/gui/electric_crafting_table.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/electric_crafting_table.png rename to src/main/resources2/assets/techreborn/textures/gui/electric_crafting_table.png diff --git a/src/main/resources/assets/techreborn/textures/gui/farm.png b/src/main/resources2/assets/techreborn/textures/gui/farm.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/farm.png rename to src/main/resources2/assets/techreborn/textures/gui/farm.png diff --git a/src/main/resources/assets/techreborn/textures/gui/farm.psd b/src/main/resources2/assets/techreborn/textures/gui/farm.psd similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/farm.psd rename to src/main/resources2/assets/techreborn/textures/gui/farm.psd diff --git a/src/main/resources/assets/techreborn/textures/gui/fusion_reactor.png b/src/main/resources2/assets/techreborn/textures/gui/fusion_reactor.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/fusion_reactor.png rename to src/main/resources2/assets/techreborn/textures/gui/fusion_reactor.png diff --git a/src/main/resources/assets/techreborn/textures/gui/gas_generator.png b/src/main/resources2/assets/techreborn/textures/gui/gas_generator.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/gas_generator.png rename to src/main/resources2/assets/techreborn/textures/gui/gas_generator.png diff --git a/src/main/resources/assets/techreborn/textures/gui/generator.png b/src/main/resources2/assets/techreborn/textures/gui/generator.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/generator.png rename to src/main/resources2/assets/techreborn/textures/gui/generator.png diff --git a/src/main/resources/assets/techreborn/textures/gui/grinder.png b/src/main/resources2/assets/techreborn/textures/gui/grinder.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/grinder.png rename to src/main/resources2/assets/techreborn/textures/gui/grinder.png diff --git a/src/main/resources/assets/techreborn/textures/gui/idsu.png b/src/main/resources2/assets/techreborn/textures/gui/idsu.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/idsu.png rename to src/main/resources2/assets/techreborn/textures/gui/idsu.png diff --git a/src/main/resources/assets/techreborn/textures/gui/implosion_compressor.png b/src/main/resources2/assets/techreborn/textures/gui/implosion_compressor.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/implosion_compressor.png rename to src/main/resources2/assets/techreborn/textures/gui/implosion_compressor.png diff --git a/src/main/resources/assets/techreborn/textures/gui/industrial_blast_furnace.png b/src/main/resources2/assets/techreborn/textures/gui/industrial_blast_furnace.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/industrial_blast_furnace.png rename to src/main/resources2/assets/techreborn/textures/gui/industrial_blast_furnace.png diff --git a/src/main/resources/assets/techreborn/textures/gui/industrial_centrifuge.png b/src/main/resources2/assets/techreborn/textures/gui/industrial_centrifuge.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/industrial_centrifuge.png rename to src/main/resources2/assets/techreborn/textures/gui/industrial_centrifuge.png diff --git a/src/main/resources/assets/techreborn/textures/gui/industrial_chunkloader.png b/src/main/resources2/assets/techreborn/textures/gui/industrial_chunkloader.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/industrial_chunkloader.png rename to src/main/resources2/assets/techreborn/textures/gui/industrial_chunkloader.png diff --git a/src/main/resources/assets/techreborn/textures/gui/industrial_electrolyzer.png b/src/main/resources2/assets/techreborn/textures/gui/industrial_electrolyzer.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/industrial_electrolyzer.png rename to src/main/resources2/assets/techreborn/textures/gui/industrial_electrolyzer.png diff --git a/src/main/resources/assets/techreborn/textures/gui/industrial_grinder.png b/src/main/resources2/assets/techreborn/textures/gui/industrial_grinder.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/industrial_grinder.png rename to src/main/resources2/assets/techreborn/textures/gui/industrial_grinder.png diff --git a/src/main/resources/assets/techreborn/textures/gui/industrial_sawmill.png b/src/main/resources2/assets/techreborn/textures/gui/industrial_sawmill.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/industrial_sawmill.png rename to src/main/resources2/assets/techreborn/textures/gui/industrial_sawmill.png diff --git a/src/main/resources/assets/techreborn/textures/gui/lathe.png b/src/main/resources2/assets/techreborn/textures/gui/lathe.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/lathe.png rename to src/main/resources2/assets/techreborn/textures/gui/lathe.png diff --git a/src/main/resources/assets/techreborn/textures/gui/lesu.png b/src/main/resources2/assets/techreborn/textures/gui/lesu.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/lesu.png rename to src/main/resources2/assets/techreborn/textures/gui/lesu.png diff --git a/src/main/resources/assets/techreborn/textures/gui/matterfabricator.png b/src/main/resources2/assets/techreborn/textures/gui/matterfabricator.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/matterfabricator.png rename to src/main/resources2/assets/techreborn/textures/gui/matterfabricator.png diff --git a/src/main/resources/assets/techreborn/textures/gui/mfe.png b/src/main/resources2/assets/techreborn/textures/gui/mfe.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/mfe.png rename to src/main/resources2/assets/techreborn/textures/gui/mfe.png diff --git a/src/main/resources/assets/techreborn/textures/gui/mfsu.png b/src/main/resources2/assets/techreborn/textures/gui/mfsu.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/mfsu.png rename to src/main/resources2/assets/techreborn/textures/gui/mfsu.png diff --git a/src/main/resources/assets/techreborn/textures/gui/plate_cutting_machine.png b/src/main/resources2/assets/techreborn/textures/gui/plate_cutting_machine.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/plate_cutting_machine.png rename to src/main/resources2/assets/techreborn/textures/gui/plate_cutting_machine.png diff --git a/src/main/resources/assets/techreborn/textures/gui/rolling_machine.png b/src/main/resources2/assets/techreborn/textures/gui/rolling_machine.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/rolling_machine.png rename to src/main/resources2/assets/techreborn/textures/gui/rolling_machine.png diff --git a/src/main/resources/assets/techreborn/textures/gui/rollingmachine.png b/src/main/resources2/assets/techreborn/textures/gui/rollingmachine.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/rollingmachine.png rename to src/main/resources2/assets/techreborn/textures/gui/rollingmachine.png diff --git a/src/main/resources/assets/techreborn/textures/gui/scrapboxinator.png b/src/main/resources2/assets/techreborn/textures/gui/scrapboxinator.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/scrapboxinator.png rename to src/main/resources2/assets/techreborn/textures/gui/scrapboxinator.png diff --git a/src/main/resources/assets/techreborn/textures/gui/semifluid_generator.png b/src/main/resources2/assets/techreborn/textures/gui/semifluid_generator.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/semifluid_generator.png rename to src/main/resources2/assets/techreborn/textures/gui/semifluid_generator.png diff --git a/src/main/resources/assets/techreborn/textures/gui/thermal_generator.png b/src/main/resources2/assets/techreborn/textures/gui/thermal_generator.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/thermal_generator.png rename to src/main/resources2/assets/techreborn/textures/gui/thermal_generator.png diff --git a/src/main/resources/assets/techreborn/textures/gui/vacuum_freezer.png b/src/main/resources2/assets/techreborn/textures/gui/vacuum_freezer.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/gui/vacuum_freezer.png rename to src/main/resources2/assets/techreborn/textures/gui/vacuum_freezer.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketberylium.png b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketberylium.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketberylium.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketberylium.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketberylium.png.mcmeta b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketberylium.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketberylium.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketberylium.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketcalcium.png b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketcalcium.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketcalcium.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketcalcium.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketcalcium.png.mcmeta b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketcalcium.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketcalcium.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketcalcium.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketcalciumcarbonate.png b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketcalciumcarbonate.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketcalciumcarbonate.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketcalciumcarbonate.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketcalciumcarbonate.png.mcmeta b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketcalciumcarbonate.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketcalciumcarbonate.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketcalciumcarbonate.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketchlorite.png b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketchlorite.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketchlorite.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketchlorite.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketchlorite.png.mcmeta b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketchlorite.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketchlorite.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketchlorite.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketdeuterium.png b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketdeuterium.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketdeuterium.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketdeuterium.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketglyceryl.png b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketglyceryl.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketglyceryl.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketglyceryl.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketglyceryl.png.mcmeta b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketglyceryl.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketglyceryl.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketglyceryl.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/buckethelium.png b/src/main/resources2/assets/techreborn/textures/items/bucket/buckethelium.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/buckethelium.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/buckethelium.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/buckethelium3.png b/src/main/resources2/assets/techreborn/textures/items/bucket/buckethelium3.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/buckethelium3.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/buckethelium3.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketheliumplasma.png b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketheliumplasma.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketheliumplasma.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketheliumplasma.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketheliumplasma.png.mcmeta b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketheliumplasma.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketheliumplasma.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketheliumplasma.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/buckethydrogen.png b/src/main/resources2/assets/techreborn/textures/items/bucket/buckethydrogen.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/buckethydrogen.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/buckethydrogen.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketlithium.png b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketlithium.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketlithium.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketlithium.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketlithium.png.mcmeta b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketlithium.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketlithium.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketlithium.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketmercury.png b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketmercury.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketmercury.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketmercury.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketmercury.png.mcmeta b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketmercury.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketmercury.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketmercury.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketmethane.png b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketmethane.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketmethane.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketmethane.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketnitrocoalfuel.png b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketnitrocoalfuel.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketnitrocoalfuel.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketnitrocoalfuel.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketnitrocoalfuel.png.mcmeta b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketnitrocoalfuel.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketnitrocoalfuel.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketnitrocoalfuel.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketnitrofuel.png b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketnitrofuel.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketnitrofuel.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketnitrofuel.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketnitrofuel.png.mcmeta b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketnitrofuel.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketnitrofuel.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketnitrofuel.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketnitrogen.png b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketnitrogen.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketnitrogen.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketnitrogen.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketnitrogendioxide.png b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketnitrogendioxide.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketnitrogendioxide.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketnitrogendioxide.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketpotassium.png b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketpotassium.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketpotassium.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketpotassium.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketpotassium.png.mcmeta b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketpotassium.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketpotassium.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketpotassium.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketsilicon.png b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketsilicon.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketsilicon.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketsilicon.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketsilicon.png.mcmeta b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketsilicon.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketsilicon.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketsilicon.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketsodium.png b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketsodium.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketsodium.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketsodium.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketsodium.png.mcmeta b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketsodium.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketsodium.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketsodium.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketsodiumpersulfate.png b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketsodiumpersulfate.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketsodiumpersulfate.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketsodiumpersulfate.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketsodiumpersulfate.png.mcmeta b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketsodiumpersulfate.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketsodiumpersulfate.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketsodiumpersulfate.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/buckettritium.png b/src/main/resources2/assets/techreborn/textures/items/bucket/buckettritium.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/buckettritium.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/buckettritium.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketwolframium.png b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketwolframium.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketwolframium.png rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketwolframium.png diff --git a/src/main/resources/assets/techreborn/textures/items/bucket/bucketwolframium.png.mcmeta b/src/main/resources2/assets/techreborn/textures/items/bucket/bucketwolframium.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/bucket/bucketwolframium.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/items/bucket/bucketwolframium.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/items/cables/copper.png b/src/main/resources2/assets/techreborn/textures/items/cables/copper.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/cables/copper.png rename to src/main/resources2/assets/techreborn/textures/items/cables/copper.png diff --git a/src/main/resources/assets/techreborn/textures/items/cables/glassfiber.png b/src/main/resources2/assets/techreborn/textures/items/cables/glassfiber.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/cables/glassfiber.png rename to src/main/resources2/assets/techreborn/textures/items/cables/glassfiber.png diff --git a/src/main/resources/assets/techreborn/textures/items/cables/gold.png b/src/main/resources2/assets/techreborn/textures/items/cables/gold.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/cables/gold.png rename to src/main/resources2/assets/techreborn/textures/items/cables/gold.png diff --git a/src/main/resources/assets/techreborn/textures/items/cables/hv.png b/src/main/resources2/assets/techreborn/textures/items/cables/hv.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/cables/hv.png rename to src/main/resources2/assets/techreborn/textures/items/cables/hv.png diff --git a/src/main/resources/assets/techreborn/textures/items/cables/insulatedcopper.png b/src/main/resources2/assets/techreborn/textures/items/cables/insulatedcopper.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/cables/insulatedcopper.png rename to src/main/resources2/assets/techreborn/textures/items/cables/insulatedcopper.png diff --git a/src/main/resources/assets/techreborn/textures/items/cables/insulatedgold.png b/src/main/resources2/assets/techreborn/textures/items/cables/insulatedgold.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/cables/insulatedgold.png rename to src/main/resources2/assets/techreborn/textures/items/cables/insulatedgold.png diff --git a/src/main/resources/assets/techreborn/textures/items/cables/insulatedhv.png b/src/main/resources2/assets/techreborn/textures/items/cables/insulatedhv.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/cables/insulatedhv.png rename to src/main/resources2/assets/techreborn/textures/items/cables/insulatedhv.png diff --git a/src/main/resources/assets/techreborn/textures/items/cables/tin.png b/src/main/resources2/assets/techreborn/textures/items/cables/tin.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/cables/tin.png rename to src/main/resources2/assets/techreborn/textures/items/cables/tin.png diff --git a/src/main/resources/assets/techreborn/textures/items/cell_base.png b/src/main/resources2/assets/techreborn/textures/items/cell_base.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/cell_base.png rename to src/main/resources2/assets/techreborn/textures/items/cell_base.png diff --git a/src/main/resources/assets/techreborn/textures/items/cell_cover.png b/src/main/resources2/assets/techreborn/textures/items/cell_cover.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/cell_cover.png rename to src/main/resources2/assets/techreborn/textures/items/cell_cover.png diff --git a/src/main/resources/assets/techreborn/textures/items/gem/peridot.png b/src/main/resources2/assets/techreborn/textures/items/gem/peridot.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/gem/peridot.png rename to src/main/resources2/assets/techreborn/textures/items/gem/peridot.png diff --git a/src/main/resources/assets/techreborn/textures/items/gem/ruby.png b/src/main/resources2/assets/techreborn/textures/items/gem/ruby.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/gem/ruby.png rename to src/main/resources2/assets/techreborn/textures/items/gem/ruby.png diff --git a/src/main/resources/assets/techreborn/textures/items/gem/sapphire.png b/src/main/resources2/assets/techreborn/textures/items/gem/sapphire.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/gem/sapphire.png rename to src/main/resources2/assets/techreborn/textures/items/gem/sapphire.png diff --git a/src/main/resources/assets/techreborn/textures/items/misc/debug.png b/src/main/resources2/assets/techreborn/textures/items/misc/debug.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/misc/debug.png rename to src/main/resources2/assets/techreborn/textures/items/misc/debug.png diff --git a/src/main/resources/assets/techreborn/textures/items/misc/debug.png.mcmeta b/src/main/resources2/assets/techreborn/textures/items/misc/debug.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/misc/debug.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/items/misc/debug.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/items/misc/missing_recipe.png b/src/main/resources2/assets/techreborn/textures/items/misc/missing_recipe.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/misc/missing_recipe.png rename to src/main/resources2/assets/techreborn/textures/items/misc/missing_recipe.png diff --git a/src/main/resources/assets/techreborn/textures/items/misc/rubber_sapling.png b/src/main/resources2/assets/techreborn/textures/items/misc/rubber_sapling.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/misc/rubber_sapling.png rename to src/main/resources2/assets/techreborn/textures/items/misc/rubber_sapling.png diff --git a/src/main/resources/assets/techreborn/textures/items/part/carbonfiber.png b/src/main/resources2/assets/techreborn/textures/items/part/carbonfiber.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/part/carbonfiber.png rename to src/main/resources2/assets/techreborn/textures/items/part/carbonfiber.png diff --git a/src/main/resources/assets/techreborn/textures/items/part/carbonmesh.png b/src/main/resources2/assets/techreborn/textures/items/part/carbonmesh.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/part/carbonmesh.png rename to src/main/resources2/assets/techreborn/textures/items/part/carbonmesh.png diff --git a/src/main/resources/assets/techreborn/textures/items/part/rubber.png b/src/main/resources2/assets/techreborn/textures/items/part/rubber.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/part/rubber.png rename to src/main/resources2/assets/techreborn/textures/items/part/rubber.png diff --git a/src/main/resources/assets/techreborn/textures/items/part/scrap.png b/src/main/resources2/assets/techreborn/textures/items/part/scrap.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/part/scrap.png rename to src/main/resources2/assets/techreborn/textures/items/part/scrap.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/bronze_axe.png b/src/main/resources2/assets/techreborn/textures/items/tool/bronze_axe.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/bronze_axe.png rename to src/main/resources2/assets/techreborn/textures/items/tool/bronze_axe.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/bronze_boots.png b/src/main/resources2/assets/techreborn/textures/items/tool/bronze_boots.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/bronze_boots.png rename to src/main/resources2/assets/techreborn/textures/items/tool/bronze_boots.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/bronze_chestplate.png b/src/main/resources2/assets/techreborn/textures/items/tool/bronze_chestplate.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/bronze_chestplate.png rename to src/main/resources2/assets/techreborn/textures/items/tool/bronze_chestplate.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/bronze_helmet.png b/src/main/resources2/assets/techreborn/textures/items/tool/bronze_helmet.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/bronze_helmet.png rename to src/main/resources2/assets/techreborn/textures/items/tool/bronze_helmet.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/bronze_hoe.png b/src/main/resources2/assets/techreborn/textures/items/tool/bronze_hoe.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/bronze_hoe.png rename to src/main/resources2/assets/techreborn/textures/items/tool/bronze_hoe.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/bronze_leggings.png b/src/main/resources2/assets/techreborn/textures/items/tool/bronze_leggings.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/bronze_leggings.png rename to src/main/resources2/assets/techreborn/textures/items/tool/bronze_leggings.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/bronze_pickaxe.png b/src/main/resources2/assets/techreborn/textures/items/tool/bronze_pickaxe.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/bronze_pickaxe.png rename to src/main/resources2/assets/techreborn/textures/items/tool/bronze_pickaxe.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/bronze_shovel.png b/src/main/resources2/assets/techreborn/textures/items/tool/bronze_shovel.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/bronze_shovel.png rename to src/main/resources2/assets/techreborn/textures/items/tool/bronze_shovel.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/bronze_sword.png b/src/main/resources2/assets/techreborn/textures/items/tool/bronze_sword.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/bronze_sword.png rename to src/main/resources2/assets/techreborn/textures/items/tool/bronze_sword.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/frequency_transmitter.png b/src/main/resources2/assets/techreborn/textures/items/tool/frequency_transmitter.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/frequency_transmitter.png rename to src/main/resources2/assets/techreborn/textures/items/tool/frequency_transmitter.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/hammer.png b/src/main/resources2/assets/techreborn/textures/items/tool/hammer.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/hammer.png rename to src/main/resources2/assets/techreborn/textures/items/tool/hammer.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/manual.png b/src/main/resources2/assets/techreborn/textures/items/tool/manual.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/manual.png rename to src/main/resources2/assets/techreborn/textures/items/tool/manual.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/nanosaber_off.png b/src/main/resources2/assets/techreborn/textures/items/tool/nanosaber_off.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/nanosaber_off.png rename to src/main/resources2/assets/techreborn/textures/items/tool/nanosaber_off.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/nanosaber_on.png b/src/main/resources2/assets/techreborn/textures/items/tool/nanosaber_on.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/nanosaber_on.png rename to src/main/resources2/assets/techreborn/textures/items/tool/nanosaber_on.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/nanosaber_on.png.mcmeta b/src/main/resources2/assets/techreborn/textures/items/tool/nanosaber_on.png.mcmeta similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/nanosaber_on.png.mcmeta rename to src/main/resources2/assets/techreborn/textures/items/tool/nanosaber_on.png.mcmeta diff --git a/src/main/resources/assets/techreborn/textures/items/tool/omnitool.png b/src/main/resources2/assets/techreborn/textures/items/tool/omnitool.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/omnitool.png rename to src/main/resources2/assets/techreborn/textures/items/tool/omnitool.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/pda.png b/src/main/resources2/assets/techreborn/textures/items/tool/pda.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/pda.png rename to src/main/resources2/assets/techreborn/textures/items/tool/pda.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/peridot_axe.png b/src/main/resources2/assets/techreborn/textures/items/tool/peridot_axe.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/peridot_axe.png rename to src/main/resources2/assets/techreborn/textures/items/tool/peridot_axe.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/peridot_boots.png b/src/main/resources2/assets/techreborn/textures/items/tool/peridot_boots.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/peridot_boots.png rename to src/main/resources2/assets/techreborn/textures/items/tool/peridot_boots.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/peridot_chestplate.png b/src/main/resources2/assets/techreborn/textures/items/tool/peridot_chestplate.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/peridot_chestplate.png rename to src/main/resources2/assets/techreborn/textures/items/tool/peridot_chestplate.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/peridot_helmet.png b/src/main/resources2/assets/techreborn/textures/items/tool/peridot_helmet.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/peridot_helmet.png rename to src/main/resources2/assets/techreborn/textures/items/tool/peridot_helmet.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/peridot_hoe.png b/src/main/resources2/assets/techreborn/textures/items/tool/peridot_hoe.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/peridot_hoe.png rename to src/main/resources2/assets/techreborn/textures/items/tool/peridot_hoe.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/peridot_leggings.png b/src/main/resources2/assets/techreborn/textures/items/tool/peridot_leggings.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/peridot_leggings.png rename to src/main/resources2/assets/techreborn/textures/items/tool/peridot_leggings.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/peridot_pickaxe.png b/src/main/resources2/assets/techreborn/textures/items/tool/peridot_pickaxe.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/peridot_pickaxe.png rename to src/main/resources2/assets/techreborn/textures/items/tool/peridot_pickaxe.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/peridot_shovel.png b/src/main/resources2/assets/techreborn/textures/items/tool/peridot_shovel.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/peridot_shovel.png rename to src/main/resources2/assets/techreborn/textures/items/tool/peridot_shovel.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/peridot_sword.png b/src/main/resources2/assets/techreborn/textures/items/tool/peridot_sword.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/peridot_sword.png rename to src/main/resources2/assets/techreborn/textures/items/tool/peridot_sword.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/rebattery.png b/src/main/resources2/assets/techreborn/textures/items/tool/rebattery.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/rebattery.png rename to src/main/resources2/assets/techreborn/textures/items/tool/rebattery.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/rockcutter.png b/src/main/resources2/assets/techreborn/textures/items/tool/rockcutter.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/rockcutter.png rename to src/main/resources2/assets/techreborn/textures/items/tool/rockcutter.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/ruby_axe.png b/src/main/resources2/assets/techreborn/textures/items/tool/ruby_axe.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/ruby_axe.png rename to src/main/resources2/assets/techreborn/textures/items/tool/ruby_axe.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/ruby_boots.png b/src/main/resources2/assets/techreborn/textures/items/tool/ruby_boots.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/ruby_boots.png rename to src/main/resources2/assets/techreborn/textures/items/tool/ruby_boots.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/ruby_chestplate.png b/src/main/resources2/assets/techreborn/textures/items/tool/ruby_chestplate.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/ruby_chestplate.png rename to src/main/resources2/assets/techreborn/textures/items/tool/ruby_chestplate.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/ruby_helmet.png b/src/main/resources2/assets/techreborn/textures/items/tool/ruby_helmet.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/ruby_helmet.png rename to src/main/resources2/assets/techreborn/textures/items/tool/ruby_helmet.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/ruby_hoe.png b/src/main/resources2/assets/techreborn/textures/items/tool/ruby_hoe.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/ruby_hoe.png rename to src/main/resources2/assets/techreborn/textures/items/tool/ruby_hoe.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/ruby_leggings.png b/src/main/resources2/assets/techreborn/textures/items/tool/ruby_leggings.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/ruby_leggings.png rename to src/main/resources2/assets/techreborn/textures/items/tool/ruby_leggings.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/ruby_pickaxe.png b/src/main/resources2/assets/techreborn/textures/items/tool/ruby_pickaxe.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/ruby_pickaxe.png rename to src/main/resources2/assets/techreborn/textures/items/tool/ruby_pickaxe.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/ruby_shovel.png b/src/main/resources2/assets/techreborn/textures/items/tool/ruby_shovel.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/ruby_shovel.png rename to src/main/resources2/assets/techreborn/textures/items/tool/ruby_shovel.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/ruby_sword.png b/src/main/resources2/assets/techreborn/textures/items/tool/ruby_sword.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/ruby_sword.png rename to src/main/resources2/assets/techreborn/textures/items/tool/ruby_sword.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/sapphire_axe.png b/src/main/resources2/assets/techreborn/textures/items/tool/sapphire_axe.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/sapphire_axe.png rename to src/main/resources2/assets/techreborn/textures/items/tool/sapphire_axe.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/sapphire_boots.png b/src/main/resources2/assets/techreborn/textures/items/tool/sapphire_boots.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/sapphire_boots.png rename to src/main/resources2/assets/techreborn/textures/items/tool/sapphire_boots.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/sapphire_chestplate.png b/src/main/resources2/assets/techreborn/textures/items/tool/sapphire_chestplate.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/sapphire_chestplate.png rename to src/main/resources2/assets/techreborn/textures/items/tool/sapphire_chestplate.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/sapphire_helmet.png b/src/main/resources2/assets/techreborn/textures/items/tool/sapphire_helmet.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/sapphire_helmet.png rename to src/main/resources2/assets/techreborn/textures/items/tool/sapphire_helmet.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/sapphire_hoe.png b/src/main/resources2/assets/techreborn/textures/items/tool/sapphire_hoe.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/sapphire_hoe.png rename to src/main/resources2/assets/techreborn/textures/items/tool/sapphire_hoe.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/sapphire_leggings.png b/src/main/resources2/assets/techreborn/textures/items/tool/sapphire_leggings.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/sapphire_leggings.png rename to src/main/resources2/assets/techreborn/textures/items/tool/sapphire_leggings.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/sapphire_pickaxe.png b/src/main/resources2/assets/techreborn/textures/items/tool/sapphire_pickaxe.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/sapphire_pickaxe.png rename to src/main/resources2/assets/techreborn/textures/items/tool/sapphire_pickaxe.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/sapphire_shovel.png b/src/main/resources2/assets/techreborn/textures/items/tool/sapphire_shovel.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/sapphire_shovel.png rename to src/main/resources2/assets/techreborn/textures/items/tool/sapphire_shovel.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/sapphire_sword.png b/src/main/resources2/assets/techreborn/textures/items/tool/sapphire_sword.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/sapphire_sword.png rename to src/main/resources2/assets/techreborn/textures/items/tool/sapphire_sword.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/treetap.png b/src/main/resources2/assets/techreborn/textures/items/tool/treetap.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/treetap.png rename to src/main/resources2/assets/techreborn/textures/items/tool/treetap.png diff --git a/src/main/resources/assets/techreborn/textures/items/tool/wrench.png b/src/main/resources2/assets/techreborn/textures/items/tool/wrench.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tool/wrench.png rename to src/main/resources2/assets/techreborn/textures/items/tool/wrench.png diff --git a/src/main/resources/assets/techreborn/textures/manual/elements/button.png b/src/main/resources2/assets/techreborn/textures/manual/elements/button.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/manual/elements/button.png rename to src/main/resources2/assets/techreborn/textures/manual/elements/button.png diff --git a/src/main/resources/assets/techreborn/textures/manual/elements/craftingtable.png b/src/main/resources2/assets/techreborn/textures/manual/elements/craftingtable.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/manual/elements/craftingtable.png rename to src/main/resources2/assets/techreborn/textures/manual/elements/craftingtable.png diff --git a/src/main/resources/assets/techreborn/textures/manual/elements/furnacerecipe.png b/src/main/resources2/assets/techreborn/textures/manual/elements/furnacerecipe.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/manual/elements/furnacerecipe.png rename to src/main/resources2/assets/techreborn/textures/manual/elements/furnacerecipe.png diff --git a/src/main/resources/assets/techreborn/textures/manual/gui/manual.png b/src/main/resources2/assets/techreborn/textures/manual/gui/manual.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/manual/gui/manual.png rename to src/main/resources2/assets/techreborn/textures/manual/gui/manual.png diff --git a/src/main/resources/assets/techreborn/textures/manual/screenshots/gettingrubber.png b/src/main/resources2/assets/techreborn/textures/manual/screenshots/gettingrubber.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/manual/screenshots/gettingrubber.png rename to src/main/resources2/assets/techreborn/textures/manual/screenshots/gettingrubber.png diff --git a/src/main/resources/assets/techreborn/textures/models/armor/bronze_layer_1.png b/src/main/resources2/assets/techreborn/textures/models/armor/bronze_layer_1.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/models/armor/bronze_layer_1.png rename to src/main/resources2/assets/techreborn/textures/models/armor/bronze_layer_1.png diff --git a/src/main/resources/assets/techreborn/textures/models/armor/bronze_layer_2.png b/src/main/resources2/assets/techreborn/textures/models/armor/bronze_layer_2.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/models/armor/bronze_layer_2.png rename to src/main/resources2/assets/techreborn/textures/models/armor/bronze_layer_2.png diff --git a/src/main/resources/assets/techreborn/textures/models/armor/peridot_layer_1.png b/src/main/resources2/assets/techreborn/textures/models/armor/peridot_layer_1.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/models/armor/peridot_layer_1.png rename to src/main/resources2/assets/techreborn/textures/models/armor/peridot_layer_1.png diff --git a/src/main/resources/assets/techreborn/textures/models/armor/peridot_layer_2.png b/src/main/resources2/assets/techreborn/textures/models/armor/peridot_layer_2.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/models/armor/peridot_layer_2.png rename to src/main/resources2/assets/techreborn/textures/models/armor/peridot_layer_2.png diff --git a/src/main/resources/assets/techreborn/textures/models/armor/ruby_layer_1.png b/src/main/resources2/assets/techreborn/textures/models/armor/ruby_layer_1.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/models/armor/ruby_layer_1.png rename to src/main/resources2/assets/techreborn/textures/models/armor/ruby_layer_1.png diff --git a/src/main/resources/assets/techreborn/textures/models/armor/ruby_layer_2.png b/src/main/resources2/assets/techreborn/textures/models/armor/ruby_layer_2.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/models/armor/ruby_layer_2.png rename to src/main/resources2/assets/techreborn/textures/models/armor/ruby_layer_2.png diff --git a/src/main/resources/assets/techreborn/textures/models/armor/sapphire_layer_1.png b/src/main/resources2/assets/techreborn/textures/models/armor/sapphire_layer_1.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/models/armor/sapphire_layer_1.png rename to src/main/resources2/assets/techreborn/textures/models/armor/sapphire_layer_1.png diff --git a/src/main/resources/assets/techreborn/textures/models/armor/sapphire_layer_2.png b/src/main/resources2/assets/techreborn/textures/models/armor/sapphire_layer_2.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/models/armor/sapphire_layer_2.png rename to src/main/resources2/assets/techreborn/textures/models/armor/sapphire_layer_2.png diff --git a/src/main/resources/assets/techreborn/textures/models/lapotronpack.png b/src/main/resources2/assets/techreborn/textures/models/lapotronpack.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/models/lapotronpack.png rename to src/main/resources2/assets/techreborn/textures/models/lapotronpack.png diff --git a/src/main/resources/assets/techreborn/textures/models/lithiumbatpack.png b/src/main/resources2/assets/techreborn/textures/models/lithiumbatpack.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/models/lithiumbatpack.png rename to src/main/resources2/assets/techreborn/textures/models/lithiumbatpack.png diff --git a/src/main/resources/mcmod.info b/src/main/resources2/mcmod.info similarity index 100% rename from src/main/resources/mcmod.info rename to src/main/resources2/mcmod.info