diff --git a/src/main/java/techreborn/blocks/BlockOre.java b/src/main/java/techreborn/blocks/BlockOre.java index a75cd7ee4..d69c30f1f 100644 --- a/src/main/java/techreborn/blocks/BlockOre.java +++ b/src/main/java/techreborn/blocks/BlockOre.java @@ -66,7 +66,7 @@ public class BlockOre extends Block{ for (int i = 0; i < types.length; i++) { - textures[i] = iconRegister.registerIcon("techreborn:" + "ore"+types[i]); + textures[i] = iconRegister.registerIcon("techreborn:" + "ore/ore"+types[i]); } } diff --git a/src/main/java/techreborn/blocks/BlockQuantumChest.java b/src/main/java/techreborn/blocks/BlockQuantumChest.java index 7c4a4f039..d073baf7b 100644 --- a/src/main/java/techreborn/blocks/BlockQuantumChest.java +++ b/src/main/java/techreborn/blocks/BlockQuantumChest.java @@ -41,8 +41,8 @@ public class BlockQuantumChest extends BlockContainer { @Override @SideOnly(Side.CLIENT) public void registerBlockIcons(IIconRegister icon) { - top = icon.registerIcon("techreborn:quantum_top"); - other = icon.registerIcon("techreborn:quantum_chest"); + top = icon.registerIcon("techreborn:machine/quantum_top"); + other = icon.registerIcon("techreborn:machine/quantum_chest"); } @Override diff --git a/src/main/java/techreborn/blocks/BlockQuantumTank.java b/src/main/java/techreborn/blocks/BlockQuantumTank.java index 80ad40f83..a9303e402 100644 --- a/src/main/java/techreborn/blocks/BlockQuantumTank.java +++ b/src/main/java/techreborn/blocks/BlockQuantumTank.java @@ -40,8 +40,8 @@ public class BlockQuantumTank extends BlockContainer { @Override @SideOnly(Side.CLIENT) public void registerBlockIcons(IIconRegister icon) { - top = icon.registerIcon("techreborn:quantum_top"); - other = icon.registerIcon("techreborn:ThermalGenerator_other"); + top = icon.registerIcon("techreborn:machine/quantum_top"); + other = icon.registerIcon("techreborn:machine/ThermalGenerator_other"); } @Override diff --git a/src/main/java/techreborn/blocks/BlockRollingMachine.java b/src/main/java/techreborn/blocks/BlockRollingMachine.java index 77560db74..5e0f91dcb 100644 --- a/src/main/java/techreborn/blocks/BlockRollingMachine.java +++ b/src/main/java/techreborn/blocks/BlockRollingMachine.java @@ -47,8 +47,8 @@ public class BlockRollingMachine extends BlockContainer{ @SideOnly(Side.CLIENT) public void registerBlockIcons(IIconRegister icon) { - top = icon.registerIcon("techreborn:rollingmachine_top"); - other = icon.registerIcon("techreborn:rollingmachine_side"); + top = icon.registerIcon("techreborn:machine/rollingmachine_top"); + other = icon.registerIcon("techreborn:machine/rollingmachine_side"); } @Override diff --git a/src/main/java/techreborn/blocks/BlockStorage.java b/src/main/java/techreborn/blocks/BlockStorage.java index 2fa1e1148..fb4b01263 100644 --- a/src/main/java/techreborn/blocks/BlockStorage.java +++ b/src/main/java/techreborn/blocks/BlockStorage.java @@ -64,7 +64,7 @@ public class BlockStorage extends Block{ for (int i = 0; i < types.length; i++) { - textures[i] = iconRegister.registerIcon("techreborn:" + "storage"+types[i]); + textures[i] = iconRegister.registerIcon("techreborn:" + "storage/storage"+types[i]); } } diff --git a/src/main/java/techreborn/blocks/BlockThermalGenerator.java b/src/main/java/techreborn/blocks/BlockThermalGenerator.java index f04b9b4af..67326aa2a 100644 --- a/src/main/java/techreborn/blocks/BlockThermalGenerator.java +++ b/src/main/java/techreborn/blocks/BlockThermalGenerator.java @@ -33,8 +33,8 @@ public class BlockThermalGenerator extends BlockContainer { @Override @SideOnly(Side.CLIENT) public void registerBlockIcons(IIconRegister icon) { - top = icon.registerIcon("techreborn:ThermalGenerator_top"); - other = icon.registerIcon("techreborn:ThermalGenerator_other"); + top = icon.registerIcon("techreborn:machine/ThermalGenerator_top"); + other = icon.registerIcon("techreborn:machine/ThermalGenerator_other"); } @Override diff --git a/src/main/java/techreborn/items/ItemDusts.java b/src/main/java/techreborn/items/ItemDusts.java index 6e3ba3154..285e268d2 100644 --- a/src/main/java/techreborn/items/ItemDusts.java +++ b/src/main/java/techreborn/items/ItemDusts.java @@ -40,7 +40,7 @@ public class ItemDusts extends ItemTR for (int i = 0; i < types.length; ++i) { - textures[i] = iconRegister.registerIcon("techreborn:" + "dust"+types[i]); + textures[i] = iconRegister.registerIcon("techreborn:" + "dust/" +types[i]+ "Dust"); } } diff --git a/src/main/java/techreborn/items/ItemGems.java b/src/main/java/techreborn/items/ItemGems.java index f4841ce4f..d03a747db 100644 --- a/src/main/java/techreborn/items/ItemGems.java +++ b/src/main/java/techreborn/items/ItemGems.java @@ -33,7 +33,7 @@ public class ItemGems extends Item{ for (int i = 0; i < types.length; ++i) { - textures[i] = iconRegister.registerIcon("techreborn:" + "gem"+types[i]); + textures[i] = iconRegister.registerIcon("techreborn:" + "gem/" +types[i]); } } diff --git a/src/main/java/techreborn/items/ItemIngots.java b/src/main/java/techreborn/items/ItemIngots.java index 96098e257..03cb0bdc3 100644 --- a/src/main/java/techreborn/items/ItemIngots.java +++ b/src/main/java/techreborn/items/ItemIngots.java @@ -35,7 +35,7 @@ public class ItemIngots extends Item{ for (int i = 0; i < types.length; ++i) { - textures[i] = iconRegister.registerIcon("techreborn:" + "ingot"+types[i]); + textures[i] = iconRegister.registerIcon("techreborn:" + "ingot/" +types[i]+ "Ingot"); } } diff --git a/src/main/java/techreborn/items/ItemParts.java b/src/main/java/techreborn/items/ItemParts.java index d04c63a9a..0fbc389bf 100644 --- a/src/main/java/techreborn/items/ItemParts.java +++ b/src/main/java/techreborn/items/ItemParts.java @@ -35,7 +35,7 @@ public class ItemParts extends Item{ for (int i = 0; i < types.length; ++i) { - textures[i] = iconRegister.registerIcon("techreborn:" + "part"+types[i]); + textures[i] = iconRegister.registerIcon("techreborn:" + "part/" +types[i]); } } diff --git a/src/main/java/techreborn/items/armor/ItemLapotronPack.java b/src/main/java/techreborn/items/armor/ItemLapotronPack.java index 2aefb13d8..b66869e5d 100644 --- a/src/main/java/techreborn/items/armor/ItemLapotronPack.java +++ b/src/main/java/techreborn/items/armor/ItemLapotronPack.java @@ -33,7 +33,7 @@ public class ItemLapotronPack extends ItemArmor implements IElectricItem{ @Override public void registerIcons(IIconRegister iconRegister) { - this.itemIcon = iconRegister.registerIcon("techreborn:" + "lapotronpack"); + this.itemIcon = iconRegister.registerIcon("techreborn:" + "tool/lapotronicEnergyOrb"); } @Override diff --git a/src/main/java/techreborn/items/armor/ItemLithiumBatpack.java b/src/main/java/techreborn/items/armor/ItemLithiumBatpack.java index a3b02e8d5..365fb4354 100644 --- a/src/main/java/techreborn/items/armor/ItemLithiumBatpack.java +++ b/src/main/java/techreborn/items/armor/ItemLithiumBatpack.java @@ -33,7 +33,7 @@ public class ItemLithiumBatpack extends ItemArmor implements IElectricItem{ @Override public void registerIcons(IIconRegister iconRegister) { - this.itemIcon = iconRegister.registerIcon("techreborn:" + "lithiumbatpack"); + this.itemIcon = iconRegister.registerIcon("techreborn:" + "tool/lithiumBatpack"); } @Override diff --git a/src/main/java/techreborn/items/tools/ItemAdvancedDrill.java b/src/main/java/techreborn/items/tools/ItemAdvancedDrill.java index 05f14a379..49358fbcc 100644 --- a/src/main/java/techreborn/items/tools/ItemAdvancedDrill.java +++ b/src/main/java/techreborn/items/tools/ItemAdvancedDrill.java @@ -45,7 +45,7 @@ public class ItemAdvancedDrill extends ItemPickaxe implements IElectricItem{ @Override public void registerIcons(IIconRegister iconRegister) { - this.itemIcon = iconRegister.registerIcon("techreborn:" + "advancedDrill"); + this.itemIcon = iconRegister.registerIcon("techreborn:" + "tool/advancedDrill"); } @SuppressWarnings({"rawtypes", "unchecked"}) diff --git a/src/main/java/techreborn/items/tools/ItemOmniTool.java b/src/main/java/techreborn/items/tools/ItemOmniTool.java index 8a2ccf9d7..f0e1d9d68 100644 --- a/src/main/java/techreborn/items/tools/ItemOmniTool.java +++ b/src/main/java/techreborn/items/tools/ItemOmniTool.java @@ -44,7 +44,7 @@ public class ItemOmniTool extends ItemPickaxe implements IElectricItem{ @Override public void registerIcons(IIconRegister iconRegister) { - this.itemIcon = iconRegister.registerIcon("techreborn:" + "omnitool"); + this.itemIcon = iconRegister.registerIcon("techreborn:" + "tool/omnitool"); } @SuppressWarnings({"rawtypes", "unchecked"}) diff --git a/src/main/java/techreborn/items/tools/ItemRockCutter.java b/src/main/java/techreborn/items/tools/ItemRockCutter.java index 3bcdefb6a..463f22532 100644 --- a/src/main/java/techreborn/items/tools/ItemRockCutter.java +++ b/src/main/java/techreborn/items/tools/ItemRockCutter.java @@ -39,7 +39,7 @@ public class ItemRockCutter extends ItemPickaxe implements IElectricItem{ @Override public void registerIcons(IIconRegister iconRegister) { - this.itemIcon = iconRegister.registerIcon("techreborn:" + "rockcutter"); + this.itemIcon = iconRegister.registerIcon("techreborn:" + "tool/rockcutter"); } @SuppressWarnings({"rawtypes", "unchecked"}) diff --git a/src/main/resources/assets/techreborn/lang/en_US.lang b/src/main/resources/assets/techreborn/lang/en_US.lang index b05b07bd5..f703488f8 100644 --- a/src/main/resources/assets/techreborn/lang/en_US.lang +++ b/src/main/resources/assets/techreborn/lang/en_US.lang @@ -4,6 +4,8 @@ tile.techreborn.thermalGenerator.name=Thermal Generator tile.techreborn.quantumTank.name=Quantum Tank tile.techreborn.quantumChest.name=Quantum Chest tile.techreborn.centrifuge.name=Centrifuge +tile.techreborn.rollingmachine.name=Rolling machine + #Ores tile.techreborn.ore.Galena.name=Galena Ore @@ -99,7 +101,7 @@ item.techreborn.dust.Zinc.name=Zinc Dust item.techreborn.dust.Cobalt.name=Cobalt Dust item.techreborn.dust.Ardite.name=Ardite Dust item.techreborn.dust.Manyullyn.name=Manyullyn Dust -item.techreborn.dust.AlBrass.name=AlBrass Dust +item.techreborn.dust.AlBrass.name=AluminiumBrass Dust item.techreborn.dust.Alumite.name=Alumite Dust diff --git a/src/main/resources/assets/techreborn/textures/blocks/ThermalGenerator_other.png b/src/main/resources/assets/techreborn/textures/blocks/machine/ThermalGenerator_other.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ThermalGenerator_other.png rename to src/main/resources/assets/techreborn/textures/blocks/machine/ThermalGenerator_other.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/ThermalGenerator_top.png b/src/main/resources/assets/techreborn/textures/blocks/machine/ThermalGenerator_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/ThermalGenerator_top.png rename to src/main/resources/assets/techreborn/textures/blocks/machine/ThermalGenerator_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/quantum_chest.png b/src/main/resources/assets/techreborn/textures/blocks/machine/quantum_chest.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/quantum_chest.png rename to src/main/resources/assets/techreborn/textures/blocks/machine/quantum_chest.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/quantum_top.png b/src/main/resources/assets/techreborn/textures/blocks/machine/quantum_top.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/quantum_top.png rename to src/main/resources/assets/techreborn/textures/blocks/machine/quantum_top.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/oreBauxite.png b/src/main/resources/assets/techreborn/textures/blocks/ore/oreBauxite.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/oreBauxite.png rename to src/main/resources/assets/techreborn/textures/blocks/ore/oreBauxite.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/oreCinnabar.png b/src/main/resources/assets/techreborn/textures/blocks/ore/oreCinnabar.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/oreCinnabar.png rename to src/main/resources/assets/techreborn/textures/blocks/ore/oreCinnabar.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/oreGalena.png b/src/main/resources/assets/techreborn/textures/blocks/ore/oreGalena.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/oreGalena.png rename to src/main/resources/assets/techreborn/textures/blocks/ore/oreGalena.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/oreIridium.png b/src/main/resources/assets/techreborn/textures/blocks/ore/oreIridium.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/oreIridium.png rename to src/main/resources/assets/techreborn/textures/blocks/ore/oreIridium.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/oreOlivine.png b/src/main/resources/assets/techreborn/textures/blocks/ore/oreOlivine.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/oreOlivine.png rename to src/main/resources/assets/techreborn/textures/blocks/ore/oreOlivine.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/orePyrite.png b/src/main/resources/assets/techreborn/textures/blocks/ore/orePyrite.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/orePyrite.png rename to src/main/resources/assets/techreborn/textures/blocks/ore/orePyrite.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/oreRuby.png b/src/main/resources/assets/techreborn/textures/blocks/ore/oreRuby.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/oreRuby.png rename to src/main/resources/assets/techreborn/textures/blocks/ore/oreRuby.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/oreSapphire.png b/src/main/resources/assets/techreborn/textures/blocks/ore/oreSapphire.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/oreSapphire.png rename to src/main/resources/assets/techreborn/textures/blocks/ore/oreSapphire.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/oreSheldonite.png b/src/main/resources/assets/techreborn/textures/blocks/ore/oreSheldonite.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/oreSheldonite.png rename to src/main/resources/assets/techreborn/textures/blocks/ore/oreSheldonite.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/oreSodalite.png b/src/main/resources/assets/techreborn/textures/blocks/ore/oreSodalite.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/oreSodalite.png rename to src/main/resources/assets/techreborn/textures/blocks/ore/oreSodalite.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/oreSphalerite.png b/src/main/resources/assets/techreborn/textures/blocks/ore/oreSphalerite.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/oreSphalerite.png rename to src/main/resources/assets/techreborn/textures/blocks/ore/oreSphalerite.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/oreTungston.png b/src/main/resources/assets/techreborn/textures/blocks/ore/oreTungston.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/oreTungston.png rename to src/main/resources/assets/techreborn/textures/blocks/ore/oreTungston.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storageAluminium.png b/src/main/resources/assets/techreborn/textures/blocks/storage/storageAluminium.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storageAluminium.png rename to src/main/resources/assets/techreborn/textures/blocks/storage/storageAluminium.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storageBrass.png b/src/main/resources/assets/techreborn/textures/blocks/storage/storageBrass.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storageBrass.png rename to src/main/resources/assets/techreborn/textures/blocks/storage/storageBrass.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storageChrome.png b/src/main/resources/assets/techreborn/textures/blocks/storage/storageChrome.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storageChrome.png rename to src/main/resources/assets/techreborn/textures/blocks/storage/storageChrome.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storageElectrum.png b/src/main/resources/assets/techreborn/textures/blocks/storage/storageElectrum.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storageElectrum.png rename to src/main/resources/assets/techreborn/textures/blocks/storage/storageElectrum.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storageGreenSapphire.png b/src/main/resources/assets/techreborn/textures/blocks/storage/storageGreenSapphire.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storageGreenSapphire.png rename to src/main/resources/assets/techreborn/textures/blocks/storage/storageGreenSapphire.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storageInvar.png b/src/main/resources/assets/techreborn/textures/blocks/storage/storageInvar.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storageInvar.png rename to src/main/resources/assets/techreborn/textures/blocks/storage/storageInvar.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storageLead.png b/src/main/resources/assets/techreborn/textures/blocks/storage/storageLead.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storageLead.png rename to src/main/resources/assets/techreborn/textures/blocks/storage/storageLead.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storageNickel.png b/src/main/resources/assets/techreborn/textures/blocks/storage/storageNickel.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storageNickel.png rename to src/main/resources/assets/techreborn/textures/blocks/storage/storageNickel.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storagePlatinum.png b/src/main/resources/assets/techreborn/textures/blocks/storage/storagePlatinum.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storagePlatinum.png rename to src/main/resources/assets/techreborn/textures/blocks/storage/storagePlatinum.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storageRuby.png b/src/main/resources/assets/techreborn/textures/blocks/storage/storageRuby.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storageRuby.png rename to src/main/resources/assets/techreborn/textures/blocks/storage/storageRuby.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storageSapphire.png b/src/main/resources/assets/techreborn/textures/blocks/storage/storageSapphire.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storageSapphire.png rename to src/main/resources/assets/techreborn/textures/blocks/storage/storageSapphire.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storageSilver.png b/src/main/resources/assets/techreborn/textures/blocks/storage/storageSilver.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storageSilver.png rename to src/main/resources/assets/techreborn/textures/blocks/storage/storageSilver.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storageSteel.png b/src/main/resources/assets/techreborn/textures/blocks/storage/storageSteel.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storageSteel.png rename to src/main/resources/assets/techreborn/textures/blocks/storage/storageSteel.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storageTitanium.png b/src/main/resources/assets/techreborn/textures/blocks/storage/storageTitanium.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storageTitanium.png rename to src/main/resources/assets/techreborn/textures/blocks/storage/storageTitanium.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storageTungsten.png b/src/main/resources/assets/techreborn/textures/blocks/storage/storageTungsten.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storageTungsten.png rename to src/main/resources/assets/techreborn/textures/blocks/storage/storageTungsten.png diff --git a/src/main/resources/assets/techreborn/textures/blocks/storageZinc.png b/src/main/resources/assets/techreborn/textures/blocks/storage/storageZinc.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/blocks/storageZinc.png rename to src/main/resources/assets/techreborn/textures/blocks/storage/storageZinc.png diff --git a/src/main/resources/assets/techreborn/textures/items/Grid_Data_Orb.png b/src/main/resources/assets/techreborn/textures/items/OLD/Grid_Data_Orb.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/Grid_Data_Orb.png rename to src/main/resources/assets/techreborn/textures/items/OLD/Grid_Data_Orb.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustAlmandime.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustAlmandime.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustAlmandime.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustAlmandime.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustAluminium.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustAluminium.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustAluminium.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustAluminium.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustBasalt.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustBasalt.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustBasalt.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustBasalt.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustBrass.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustBrass.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustBrass.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustBrass.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustBronze.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustBronze.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustBronze.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustBronze.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustCharcoal.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustCharcoal.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustCharcoal.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustCharcoal.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustChrome.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustChrome.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustChrome.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustChrome.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustCoal.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustCoal.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustCoal.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustCoal.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustCopper.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustCopper.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustCopper.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustCopper.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustDiamond.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustDiamond.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustDiamond.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustDiamond.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustElectrum.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustElectrum.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustElectrum.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustElectrum.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustEnderEye.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustEnderEye.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustEnderEye.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustEnderEye.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustEnderPearl.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustEnderPearl.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustEnderPearl.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustEnderPearl.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustGold.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustGold.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustGold.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustGold.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustInvar.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustInvar.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustInvar.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustInvar.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustIron.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustIron.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustIron.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustIron.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustLead.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustLead.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustLead.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustLead.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustMagnesium.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustMagnesium.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustMagnesium.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustMagnesium.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustNickel.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustNickel.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustNickel.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustNickel.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustObsidian.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustObsidian.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustObsidian.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustObsidian.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustPlatinum.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustPlatinum.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustPlatinum.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustPlatinum.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustSilver.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustSilver.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustSilver.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustSilver.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustSulfur.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustSulfur.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustSulfur.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustSulfur.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustTin.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustTin.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustTin.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustTin.png diff --git a/src/main/resources/assets/techreborn/textures/items/dustZinc.png b/src/main/resources/assets/techreborn/textures/items/OLD/dustZinc.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/dustZinc.png rename to src/main/resources/assets/techreborn/textures/items/OLD/dustZinc.png diff --git a/src/main/resources/assets/techreborn/textures/items/gemGreenSapphire.png b/src/main/resources/assets/techreborn/textures/items/OLD/gemGreenSapphire.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/gemGreenSapphire.png rename to src/main/resources/assets/techreborn/textures/items/OLD/gemGreenSapphire.png diff --git a/src/main/resources/assets/techreborn/textures/items/gemOlivine.png b/src/main/resources/assets/techreborn/textures/items/OLD/gemOlivine.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/gemOlivine.png rename to src/main/resources/assets/techreborn/textures/items/OLD/gemOlivine.png diff --git a/src/main/resources/assets/techreborn/textures/items/gemRedGarnet.png b/src/main/resources/assets/techreborn/textures/items/OLD/gemRedGarnet.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/gemRedGarnet.png rename to src/main/resources/assets/techreborn/textures/items/OLD/gemRedGarnet.png diff --git a/src/main/resources/assets/techreborn/textures/items/gemRuby.png b/src/main/resources/assets/techreborn/textures/items/OLD/gemRuby.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/gemRuby.png rename to src/main/resources/assets/techreborn/textures/items/OLD/gemRuby.png diff --git a/src/main/resources/assets/techreborn/textures/items/gemSapphire.png b/src/main/resources/assets/techreborn/textures/items/OLD/gemSapphire.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/gemSapphire.png rename to src/main/resources/assets/techreborn/textures/items/OLD/gemSapphire.png diff --git a/src/main/resources/assets/techreborn/textures/items/gemYellowGarnet.png b/src/main/resources/assets/techreborn/textures/items/OLD/gemYellowGarnet.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/gemYellowGarnet.png rename to src/main/resources/assets/techreborn/textures/items/OLD/gemYellowGarnet.png diff --git a/src/main/resources/assets/techreborn/textures/items/ingotAluminium.png b/src/main/resources/assets/techreborn/textures/items/OLD/ingotAluminium.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/ingotAluminium.png rename to src/main/resources/assets/techreborn/textures/items/OLD/ingotAluminium.png diff --git a/src/main/resources/assets/techreborn/textures/items/ingotBrass.png b/src/main/resources/assets/techreborn/textures/items/OLD/ingotBrass.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/ingotBrass.png rename to src/main/resources/assets/techreborn/textures/items/OLD/ingotBrass.png diff --git a/src/main/resources/assets/techreborn/textures/items/ingotChrome.png b/src/main/resources/assets/techreborn/textures/items/OLD/ingotChrome.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/ingotChrome.png rename to src/main/resources/assets/techreborn/textures/items/OLD/ingotChrome.png diff --git a/src/main/resources/assets/techreborn/textures/items/ingotElectrum.png b/src/main/resources/assets/techreborn/textures/items/OLD/ingotElectrum.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/ingotElectrum.png rename to src/main/resources/assets/techreborn/textures/items/OLD/ingotElectrum.png diff --git a/src/main/resources/assets/techreborn/textures/items/ingotInvar.png b/src/main/resources/assets/techreborn/textures/items/OLD/ingotInvar.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/ingotInvar.png rename to src/main/resources/assets/techreborn/textures/items/OLD/ingotInvar.png diff --git a/src/main/resources/assets/techreborn/textures/items/ingotIridium.png b/src/main/resources/assets/techreborn/textures/items/OLD/ingotIridium.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/ingotIridium.png rename to src/main/resources/assets/techreborn/textures/items/OLD/ingotIridium.png diff --git a/src/main/resources/assets/techreborn/textures/items/ingotLead.png b/src/main/resources/assets/techreborn/textures/items/OLD/ingotLead.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/ingotLead.png rename to src/main/resources/assets/techreborn/textures/items/OLD/ingotLead.png diff --git a/src/main/resources/assets/techreborn/textures/items/ingotNickel.png b/src/main/resources/assets/techreborn/textures/items/OLD/ingotNickel.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/ingotNickel.png rename to src/main/resources/assets/techreborn/textures/items/OLD/ingotNickel.png diff --git a/src/main/resources/assets/techreborn/textures/items/ingotPlatinum.png b/src/main/resources/assets/techreborn/textures/items/OLD/ingotPlatinum.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/ingotPlatinum.png rename to src/main/resources/assets/techreborn/textures/items/OLD/ingotPlatinum.png diff --git a/src/main/resources/assets/techreborn/textures/items/ingotSilver.png b/src/main/resources/assets/techreborn/textures/items/OLD/ingotSilver.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/ingotSilver.png rename to src/main/resources/assets/techreborn/textures/items/OLD/ingotSilver.png diff --git a/src/main/resources/assets/techreborn/textures/items/ingotSteel.png b/src/main/resources/assets/techreborn/textures/items/OLD/ingotSteel.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/ingotSteel.png rename to src/main/resources/assets/techreborn/textures/items/OLD/ingotSteel.png diff --git a/src/main/resources/assets/techreborn/textures/items/ingotTitanium.png b/src/main/resources/assets/techreborn/textures/items/OLD/ingotTitanium.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/ingotTitanium.png rename to src/main/resources/assets/techreborn/textures/items/OLD/ingotTitanium.png diff --git a/src/main/resources/assets/techreborn/textures/items/ingotTungsten.png b/src/main/resources/assets/techreborn/textures/items/OLD/ingotTungsten.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/ingotTungsten.png rename to src/main/resources/assets/techreborn/textures/items/OLD/ingotTungsten.png diff --git a/src/main/resources/assets/techreborn/textures/items/ingotTungstenSteel.png b/src/main/resources/assets/techreborn/textures/items/OLD/ingotTungstenSteel.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/ingotTungstenSteel.png rename to src/main/resources/assets/techreborn/textures/items/OLD/ingotTungstenSteel.png diff --git a/src/main/resources/assets/techreborn/textures/items/ingotZinc.png b/src/main/resources/assets/techreborn/textures/items/OLD/ingotZinc.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/ingotZinc.png rename to src/main/resources/assets/techreborn/textures/items/OLD/ingotZinc.png diff --git a/src/main/resources/assets/techreborn/textures/items/lapotronpack.png b/src/main/resources/assets/techreborn/textures/items/OLD/lapotronpack.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/lapotronpack.png rename to src/main/resources/assets/techreborn/textures/items/OLD/lapotronpack.png diff --git a/src/main/resources/assets/techreborn/textures/items/lithiumbatpack.png b/src/main/resources/assets/techreborn/textures/items/OLD/lithiumbatpack.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/lithiumbatpack.png rename to src/main/resources/assets/techreborn/textures/items/OLD/lithiumbatpack.png diff --git a/src/main/resources/assets/techreborn/textures/items/partCupronickelHeatingCoil.png b/src/main/resources/assets/techreborn/textures/items/OLD/partCupronickelHeatingCoil.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/partCupronickelHeatingCoil.png rename to src/main/resources/assets/techreborn/textures/items/OLD/partCupronickelHeatingCoil.png diff --git a/src/main/resources/assets/techreborn/textures/items/partDataControlCircuit.png b/src/main/resources/assets/techreborn/textures/items/OLD/partDataControlCircuit.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/partDataControlCircuit.png rename to src/main/resources/assets/techreborn/textures/items/OLD/partDataControlCircuit.png diff --git a/src/main/resources/assets/techreborn/textures/items/partDataStorageCircuit.png b/src/main/resources/assets/techreborn/textures/items/OLD/partDataStorageCircuit.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/partDataStorageCircuit.png rename to src/main/resources/assets/techreborn/textures/items/OLD/partDataStorageCircuit.png diff --git a/src/main/resources/assets/techreborn/textures/items/partDiamondGrinder.png b/src/main/resources/assets/techreborn/textures/items/OLD/partDiamondGrinder.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/partDiamondGrinder.png rename to src/main/resources/assets/techreborn/textures/items/OLD/partDiamondGrinder.png diff --git a/src/main/resources/assets/techreborn/textures/items/partDiamondSawBlade.png b/src/main/resources/assets/techreborn/textures/items/OLD/partDiamondSawBlade.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/partDiamondSawBlade.png rename to src/main/resources/assets/techreborn/textures/items/OLD/partDiamondSawBlade.png diff --git a/src/main/resources/assets/techreborn/textures/items/partEnergeyFlowCircuit.png b/src/main/resources/assets/techreborn/textures/items/OLD/partEnergeyFlowCircuit.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/partEnergeyFlowCircuit.png rename to src/main/resources/assets/techreborn/textures/items/OLD/partEnergeyFlowCircuit.png diff --git a/src/main/resources/assets/techreborn/textures/items/partKanthalHeatingCoil.png b/src/main/resources/assets/techreborn/textures/items/OLD/partKanthalHeatingCoil.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/partKanthalHeatingCoil.png rename to src/main/resources/assets/techreborn/textures/items/OLD/partKanthalHeatingCoil.png diff --git a/src/main/resources/assets/techreborn/textures/items/partNichromeHeatingCoil.png b/src/main/resources/assets/techreborn/textures/items/OLD/partNichromeHeatingCoil.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/partNichromeHeatingCoil.png rename to src/main/resources/assets/techreborn/textures/items/OLD/partNichromeHeatingCoil.png diff --git a/src/main/resources/assets/techreborn/textures/items/partSuperConductor.png b/src/main/resources/assets/techreborn/textures/items/OLD/partSuperConductor.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/partSuperConductor.png rename to src/main/resources/assets/techreborn/textures/items/OLD/partSuperConductor.png diff --git a/src/main/resources/assets/techreborn/textures/items/rockcutter.png b/src/main/resources/assets/techreborn/textures/items/OLD/rockcutter.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/rockcutter.png rename to src/main/resources/assets/techreborn/textures/items/OLD/rockcutter.png diff --git a/src/main/resources/assets/techreborn/textures/items/tinydustZinc.png b/src/main/resources/assets/techreborn/textures/items/OLD/tinydustZinc.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/tinydustZinc.png rename to src/main/resources/assets/techreborn/textures/items/OLD/tinydustZinc.png 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 new file mode 100644 index 000000000..79e1eb51e Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/Berylium Cell.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/cells/Thumbs.db b/src/main/resources/assets/techreborn/textures/items/cells/Thumbs.db new file mode 100644 index 000000000..c0a845fcc Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/Thumbs.db 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 new file mode 100644 index 000000000..e11b4dc74 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/biomassCell.png 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 new file mode 100644 index 000000000..fbf72c1fe Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/calciumCarbonateCell.png 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 new file mode 100644 index 000000000..d64fcf998 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/calciumCell.png 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 new file mode 100644 index 000000000..3434060fa Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/carbonCell.png 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 new file mode 100644 index 000000000..d7e63f9e5 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/chlorineCell.png 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 new file mode 100644 index 000000000..5d3c7c2c4 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/deuteriumCell.png 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 new file mode 100644 index 000000000..5912a13d1 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/dieselCell.png 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 new file mode 100644 index 000000000..32f406cf0 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/ethanolCell.png 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 new file mode 100644 index 000000000..25b0f4260 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/glycerylCell.png 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 new file mode 100644 index 000000000..ee40a7fa1 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/helium3Cell.png 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 new file mode 100644 index 000000000..5713b992a Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/heliumCell.png 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 new file mode 100644 index 000000000..4fc515472 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/heliumPlasmaCell.png 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 new file mode 100644 index 000000000..7d04719b6 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/hydrogenCell.png 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 new file mode 100644 index 000000000..e7f0e47d4 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/iceCell.png 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 new file mode 100644 index 000000000..fad9f32b2 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/lithiumCell.png 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 new file mode 100644 index 000000000..f212a3ce8 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/mercuryCell.png 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 new file mode 100644 index 000000000..c629af613 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/methaneCell.png 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 new file mode 100644 index 000000000..22d42cca4 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/nitroCoalfuel Cell.png 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 new file mode 100644 index 000000000..386d0db7e Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/nitroDieselCell.png 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 new file mode 100644 index 000000000..e9923cdd7 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/nitrocarbonCell.png 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 new file mode 100644 index 000000000..e5454b7c8 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/nitrogenCell.png 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 new file mode 100644 index 000000000..e43139346 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/nitrogenDioxideCell.png 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 new file mode 100644 index 000000000..cbff1fa60 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/oilCell.png 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 new file mode 100644 index 000000000..f2a6fb93f Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/potassiumCel.png 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 new file mode 100644 index 000000000..0e0ca67e7 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/seedOilCell.png 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 new file mode 100644 index 000000000..14bcb2be9 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/siliconCell.png 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 new file mode 100644 index 000000000..de35fe0b1 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/sodiumCell.png 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 new file mode 100644 index 000000000..dc48b3546 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/sodiumPersulfateCell.png 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 new file mode 100644 index 000000000..6a46a9acf Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/sodiumSulfideCell.png 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 new file mode 100644 index 000000000..dceb5ccef Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/sulfurCell.png 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 new file mode 100644 index 000000000..46172e479 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/sulfuricAcidCell.png 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 new file mode 100644 index 000000000..5b975ba3c Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/tritiumCell.png 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 new file mode 100644 index 000000000..325c992f8 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/cells/wolframiumCell.png 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 new file mode 100644 index 000000000..e538fd820 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/alBrassDust.png 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 new file mode 100644 index 000000000..06bff8e87 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/almandineDust.png 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 new file mode 100644 index 000000000..336f42cb0 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/aluminiumDust.png 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 new file mode 100644 index 000000000..3e17f979b Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/alumiteDust.png 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 new file mode 100644 index 000000000..14cc08514 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/andraditeDust.png 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 new file mode 100644 index 000000000..aa5c29a22 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/antimonyDust.png 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 new file mode 100644 index 000000000..f8c618859 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/arditeDust.png 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 new file mode 100644 index 000000000..82d5b594f Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/ashesDust.png 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 new file mode 100644 index 000000000..a06733e71 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/basaltDust.png 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 new file mode 100644 index 000000000..73487dd9b Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/bauxiteDust.png 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 new file mode 100644 index 000000000..a06733e71 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/biotiteDust.png 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 new file mode 100644 index 000000000..289902c6c Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/brassDust.png 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 new file mode 100644 index 000000000..289902c6c Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/bronzeDust.png 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 new file mode 100644 index 000000000..ddde38a00 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/calciteDust.png 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 new file mode 100644 index 000000000..ec34928df Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/charcoalDust.png 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 new file mode 100644 index 000000000..2b1abe156 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/chromeDust.png 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 new file mode 100644 index 000000000..79724b6fd Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/cinnabarDust.png 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 new file mode 100644 index 000000000..a991bae5e Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/clayDust.png 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 new file mode 100644 index 000000000..ec34928df Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/coalDust.png 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 new file mode 100644 index 000000000..633f7ac60 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/cobaltDust.png 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 new file mode 100644 index 000000000..8c5593a87 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/copperDust.png 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 new file mode 100644 index 000000000..8c5593a87 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/cupronickelDust.png 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 new file mode 100644 index 000000000..a06733e71 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/darkAshesDust.png 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 new file mode 100644 index 000000000..3f184d6bc Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/darkIronDust.png 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 new file mode 100644 index 000000000..69d8a5ce7 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/diamondDust.png 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 new file mode 100644 index 000000000..15f258ca2 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/electrumDust.png 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 new file mode 100644 index 000000000..ef07d8b62 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/emeraldDust.png 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 new file mode 100644 index 000000000..84a27b4ef Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/enderEyeDust.png 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 new file mode 100644 index 000000000..38a36ed22 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/enderPearlDust.png 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 new file mode 100644 index 000000000..b444924fb Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/endstoneDust.png 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 new file mode 100644 index 000000000..363cf408d Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/flintDust.png 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 new file mode 100644 index 000000000..e538fd820 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/goldDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/dust/greenSapphireDust.png b/src/main/resources/assets/techreborn/textures/items/dust/greenSapphireDust.png new file mode 100644 index 000000000..ef07d8b62 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/greenSapphireDust.png 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 new file mode 100644 index 000000000..0199a5ace Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/grossularDust.png 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 new file mode 100644 index 000000000..b5ccc6c9a Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/invarDust.png 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 new file mode 100644 index 000000000..e600343df Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/iridiumDust.png 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 new file mode 100644 index 000000000..e600343df Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/ironDust.png 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 new file mode 100644 index 000000000..b02a56f8f Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/kanthalDust.png 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 new file mode 100644 index 000000000..a172fda18 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/lazuriteDust.png 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 new file mode 100644 index 000000000..c62a891f7 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/leadDust.png 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 new file mode 100644 index 000000000..cf9f07764 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/magnesiumDust.png 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 new file mode 100644 index 000000000..e600343df Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/manganeseDust.png 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 new file mode 100644 index 000000000..3f184d6bc Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/manyullynDust.png 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 new file mode 100644 index 000000000..a991bae5e Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/marbleDust.png 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 new file mode 100644 index 000000000..9466df67c Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/netherrackDust.png 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 new file mode 100644 index 000000000..3e17f979b Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/nichromeDust.png 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 new file mode 100644 index 000000000..e600343df Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/nickelDust.png 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 new file mode 100644 index 000000000..1e5281412 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/nikoliteDust.png 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 new file mode 100644 index 000000000..3f184d6bc Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/obsidianDust.png 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 new file mode 100644 index 000000000..ef07d8b62 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/olivineDust.png 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 new file mode 100644 index 000000000..69d8a5ce7 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/osmiumDust.png 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 new file mode 100644 index 000000000..ee5b13d4d Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/peridotDust.png 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 new file mode 100644 index 000000000..b2926ff10 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/phosphorDust.png 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 new file mode 100644 index 000000000..e04bdcd66 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/platinumDust.png 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 new file mode 100644 index 000000000..e7df5300a Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/potassiumFeldsparDust.png 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 new file mode 100644 index 000000000..677b51114 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/pyriteDust.png 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 new file mode 100644 index 000000000..c62a891f7 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/pyropeDust.png 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 new file mode 100644 index 000000000..ffe4fb53d Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/redGarnetDust.png 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 new file mode 100644 index 000000000..32a8779d5 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/redrockDust.png 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 new file mode 100644 index 000000000..e895ef8aa Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/rubyDust.png 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 new file mode 100644 index 000000000..b0777cb6f Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/saltpeterDust.png 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 new file mode 100644 index 000000000..9970acf99 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/sapphireDust.png 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 new file mode 100644 index 000000000..e600343df Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/silverDust.png 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 new file mode 100644 index 000000000..9f37ecabf Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/sodaliteDust.png 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 new file mode 100644 index 000000000..0639f8d20 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/spessartineDust.png 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 new file mode 100644 index 000000000..a40ff8c61 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/sphaleriteDust.png 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 new file mode 100644 index 000000000..43ec98ab3 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/steelDust.png 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 new file mode 100644 index 000000000..b2926ff10 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/sulfurDust.png 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 new file mode 100644 index 000000000..e89269535 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/tetrahedriteDust.png 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 new file mode 100644 index 000000000..e600343df Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/tinDust.png 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 new file mode 100644 index 000000000..669886769 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/titaniumDust.png 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 new file mode 100644 index 000000000..b31894725 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/tungstenDust.png 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 new file mode 100644 index 000000000..04cba30c9 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/uraniumDust.png 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 new file mode 100644 index 000000000..ee5b13d4d Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/uvaroviteDust.png 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 new file mode 100644 index 000000000..e538fd820 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/yellowGarnetDust.png 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 new file mode 100644 index 000000000..a299d0642 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/dust/zincDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/gem/Thumbs.db b/src/main/resources/assets/techreborn/textures/items/gem/Thumbs.db new file mode 100644 index 000000000..3d0d9e43c Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/gem/Thumbs.db differ diff --git a/src/main/resources/assets/techreborn/textures/items/gem/greenSapphire.png b/src/main/resources/assets/techreborn/textures/items/gem/greenSapphire.png new file mode 100644 index 000000000..0d59a4256 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/gem/greenSapphire.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/gem/olivine.png b/src/main/resources/assets/techreborn/textures/items/gem/olivine.png new file mode 100644 index 000000000..0d59a4256 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/gem/olivine.png 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 new file mode 100644 index 000000000..47b303f7f Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/gem/redGarnet.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/gem/ruby.png b/src/main/resources/assets/techreborn/textures/items/gem/ruby.png new file mode 100644 index 000000000..541bab6aa Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/gem/ruby.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/gem/sapphire.png b/src/main/resources/assets/techreborn/textures/items/gem/sapphire.png new file mode 100644 index 000000000..cd5413b55 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/gem/sapphire.png 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 new file mode 100644 index 000000000..15d3cab42 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/gem/yellowGarnet.png 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 new file mode 100644 index 000000000..af5a505de Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/HotTungstenSteelIngot.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/Thumbs.db b/src/main/resources/assets/techreborn/textures/items/ingot/Thumbs.db new file mode 100644 index 000000000..ebc475cc2 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/Thumbs.db differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/alBrassIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/alBrassIngot.png new file mode 100644 index 000000000..41dae2d3b Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/alBrassIngot.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/aluminiumIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/aluminiumIngot.png new file mode 100644 index 000000000..2e235d923 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/aluminiumIngot.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/alumiteIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/alumiteIngot.png new file mode 100644 index 000000000..9bb165232 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/alumiteIngot.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/antimonyIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/antimonyIngot.png new file mode 100644 index 000000000..968e8e529 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/antimonyIngot.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/arditeIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/arditeIngot.png new file mode 100644 index 000000000..ab6e5e339 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/arditeIngot.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/batteryAlloyIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/batteryAlloyIngot.png new file mode 100644 index 000000000..272165d89 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/batteryAlloyIngot.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/blueAlloyIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/blueAlloyIngot.png new file mode 100644 index 000000000..7ae0f257a Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/blueAlloyIngot.png 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 new file mode 100644 index 000000000..c6f13178e Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/brassIngot.png 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 new file mode 100644 index 000000000..9bb165232 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/chromeIngot.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/cobaltIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/cobaltIngot.png new file mode 100644 index 000000000..4e3a2a45f Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/cobaltIngot.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/cupronickelIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/cupronickelIngot.png new file mode 100644 index 000000000..ab6e5e339 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/cupronickelIngot.png 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 new file mode 100644 index 000000000..37d82f33d Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/electrumIngot.png 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 new file mode 100644 index 000000000..42f723b6f Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/invarIngot.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingotIridiumAlloy.png b/src/main/resources/assets/techreborn/textures/items/ingot/iridiumAlloyIngot.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/ingotIridiumAlloy.png rename to src/main/resources/assets/techreborn/textures/items/ingot/iridiumAlloyIngot.png diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/iridiumIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/iridiumIngot.png new file mode 100644 index 000000000..fc5124e68 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/iridiumIngot.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/kanthalIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/kanthalIngot.png new file mode 100644 index 000000000..b100de83d Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/kanthalIngot.png 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 new file mode 100644 index 000000000..d14ccfc3c Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/leadIngot.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/magnaliumIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/magnaliumIngot.png new file mode 100644 index 000000000..59b3eb8ca Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/magnaliumIngot.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/manyullynIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/manyullynIngot.png new file mode 100644 index 000000000..59b3eb8ca Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/manyullynIngot.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/nichromeIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/nichromeIngot.png new file mode 100644 index 000000000..5230de1c2 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/nichromeIngot.png 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 new file mode 100644 index 000000000..4eba7d792 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/nickelIngot.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/osmiumIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/osmiumIngot.png new file mode 100644 index 000000000..4e3a2a45f Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/osmiumIngot.png 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 new file mode 100644 index 000000000..e1e3105cf Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/platinumIngot.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/ingot/redAlloyIngot.png b/src/main/resources/assets/techreborn/textures/items/ingot/redAlloyIngot.png new file mode 100644 index 000000000..31c753bff Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/redAlloyIngot.png 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 new file mode 100644 index 000000000..41dae2d3b Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/silverIngot.png 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 new file mode 100644 index 000000000..d14ccfc3c Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/steelIngot.png 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 new file mode 100644 index 000000000..cb0a1e65c Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/titaniumIngot.png 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 new file mode 100644 index 000000000..b270833c4 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/tungstenIngot.png 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 new file mode 100644 index 000000000..627c1389c Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/tungstensteelIngot.png 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 new file mode 100644 index 000000000..41dae2d3b Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/ingot/zincIngot.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/nuggets/Thumbs.db b/src/main/resources/assets/techreborn/textures/items/nuggets/Thumbs.db new file mode 100644 index 000000000..e154a7d36 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/Thumbs.db 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 new file mode 100644 index 000000000..accb1f005 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/aluminumNugget.png 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 new file mode 100644 index 000000000..86527a094 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/antimonyNugget.png 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 new file mode 100644 index 000000000..3cf6896c4 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/brassNugget.png 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 new file mode 100644 index 000000000..1dcbc6ba6 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/bronzeNugget.png 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 new file mode 100644 index 000000000..b0e21f8a0 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/chromeNugget.png 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 new file mode 100644 index 000000000..b09c87671 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/copperNugget.png 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 new file mode 100644 index 000000000..91bf17532 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/electrumNugget.png 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 new file mode 100644 index 000000000..2c9ce1732 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/invarNugget.png 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 new file mode 100644 index 000000000..6693432a9 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/iridiumNugget.png 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 new file mode 100644 index 000000000..8a5c25a64 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/ironNugget.png 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 new file mode 100644 index 000000000..bde114737 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/leadNugget.png 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 new file mode 100644 index 000000000..c567a0913 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/nickelNugget.png 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 new file mode 100644 index 000000000..c51bfc109 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/osmiumNugget.png 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 new file mode 100644 index 000000000..bf2cdadb3 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/platinumNugget.png 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 new file mode 100644 index 000000000..ffd236a28 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/silverNugget.png 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 new file mode 100644 index 000000000..bf3f4da5f Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/steelNugget.png 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 new file mode 100644 index 000000000..b157e7919 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/tinNugget.png 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 new file mode 100644 index 000000000..7e9e24606 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/titaniumNugget.png 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 new file mode 100644 index 000000000..a5e26e0bc Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/tungstenNugget.png 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 new file mode 100644 index 000000000..c2c066b3f Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/nuggets/zincNugget.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/AdvancedCircuitBoard.png b/src/main/resources/assets/techreborn/textures/items/part/AdvancedCircuitBoard.png new file mode 100644 index 000000000..168a54130 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/AdvancedCircuitBoard.png 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 new file mode 100644 index 000000000..5ce1cdf74 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/HeliumCoolantSix.png 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 new file mode 100644 index 000000000..c23aa325f Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/HeliumCoolantTriple.png 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 new file mode 100644 index 000000000..5c9e20951 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/NaKCoolantSimple.png 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 new file mode 100644 index 000000000..8f5958a09 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/NaKCoolantSix.png 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 new file mode 100644 index 000000000..2506423df Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/NaKCoolantTriple.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/Thumbs.db b/src/main/resources/assets/techreborn/textures/items/part/Thumbs.db new file mode 100644 index 000000000..6159a37af Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/Thumbs.db differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/advancedCircuitPart.png b/src/main/resources/assets/techreborn/textures/items/part/advancedCircuitPart.png new file mode 100644 index 000000000..710b1ef53 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/advancedCircuitPart.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/partAluminiumMachineHull.png b/src/main/resources/assets/techreborn/textures/items/part/aluminiumMachineHull.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/partAluminiumMachineHull.png rename to src/main/resources/assets/techreborn/textures/items/part/aluminiumMachineHull.png diff --git a/src/main/resources/assets/techreborn/textures/items/part/basicCircuitBoard.png b/src/main/resources/assets/techreborn/textures/items/part/basicCircuitBoard.png new file mode 100644 index 000000000..b7e02c368 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/basicCircuitBoard.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/partBrassMachineHull.png b/src/main/resources/assets/techreborn/textures/items/part/brassMachineHull.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/partBrassMachineHull.png rename to src/main/resources/assets/techreborn/textures/items/part/brassMachineHull.png diff --git a/src/main/resources/assets/techreborn/textures/items/part/bronzeGear.png b/src/main/resources/assets/techreborn/textures/items/part/bronzeGear.png new file mode 100644 index 000000000..64abe7ead Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/bronzeGear.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/partBronzeMachineHull.png b/src/main/resources/assets/techreborn/textures/items/part/bronzeMachineHull.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/partBronzeMachineHull.png rename to src/main/resources/assets/techreborn/textures/items/part/bronzeMachineHull.png diff --git a/src/main/resources/assets/techreborn/textures/items/partComputerMonitor.png b/src/main/resources/assets/techreborn/textures/items/part/computerMonitor.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/partComputerMonitor.png rename to src/main/resources/assets/techreborn/textures/items/part/computerMonitor.png diff --git a/src/main/resources/assets/techreborn/textures/items/part/cupronickelHeatingCoil.png b/src/main/resources/assets/techreborn/textures/items/part/cupronickelHeatingCoil.png new file mode 100644 index 000000000..b8c47d2ca Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/cupronickelHeatingCoil.png 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 new file mode 100644 index 000000000..bbc3a6f2a Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/dataControlCircuit.png 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 new file mode 100644 index 000000000..b9555c517 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/dataStorageCircuit.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/diamondGrinder.png b/src/main/resources/assets/techreborn/textures/items/part/diamondGrinder.png new file mode 100644 index 000000000..8507f9610 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/diamondGrinder.png 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 new file mode 100644 index 000000000..54ba07bdc Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/diamondSawblade.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/ductTape.png b/src/main/resources/assets/techreborn/textures/items/part/ductTape.png new file mode 100644 index 000000000..4b0ce383e Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/ductTape.png 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 new file mode 100644 index 000000000..edb77b14c Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/energeyFlowCircuit.png 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 new file mode 100644 index 000000000..ca8537a84 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/heliumCoolantSimple.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/iridiumAlloyIngot.png b/src/main/resources/assets/techreborn/textures/items/part/iridiumAlloyIngot.png new file mode 100644 index 000000000..e9ea07fe0 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/iridiumAlloyIngot.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/iridiumGear.png b/src/main/resources/assets/techreborn/textures/items/part/iridiumGear.png new file mode 100644 index 000000000..a50bd30b1 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/iridiumGear.png 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 new file mode 100644 index 000000000..f6c3f2a06 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/iridiumNeutronReflector.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/ironGear.png b/src/main/resources/assets/techreborn/textures/items/part/ironGear.png new file mode 100644 index 000000000..d59b904dd Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/ironGear.png 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 new file mode 100644 index 000000000..defed2720 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/kanthalHeatingCoil.png 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 new file mode 100644 index 000000000..3dff00023 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/lazuriteChunk.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/partMachineParts.png b/src/main/resources/assets/techreborn/textures/items/part/machineParts.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/partMachineParts.png rename to src/main/resources/assets/techreborn/textures/items/part/machineParts.png diff --git a/src/main/resources/assets/techreborn/textures/items/partMagnaliumPlate.png b/src/main/resources/assets/techreborn/textures/items/part/magnaliumPlate.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/partMagnaliumPlate.png rename to src/main/resources/assets/techreborn/textures/items/part/magnaliumPlate.png diff --git a/src/main/resources/assets/techreborn/textures/items/part/nichromeHeatingCoil.png b/src/main/resources/assets/techreborn/textures/items/part/nichromeHeatingCoil.png new file mode 100644 index 000000000..5ce2690e2 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/nichromeHeatingCoil.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/processorCircuitBoard.png b/src/main/resources/assets/techreborn/textures/items/part/processorCircuitBoard.png new file mode 100644 index 000000000..a6ba76e5b Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/processorCircuitBoard.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/partSiliconPlate.png b/src/main/resources/assets/techreborn/textures/items/part/siliconPlate.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/partSiliconPlate.png rename to src/main/resources/assets/techreborn/textures/items/part/siliconPlate.png diff --git a/src/main/resources/assets/techreborn/textures/items/part/steelGear.png b/src/main/resources/assets/techreborn/textures/items/part/steelGear.png new file mode 100644 index 000000000..6e1b5ca02 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/steelGear.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/partSteelMachineHull.png b/src/main/resources/assets/techreborn/textures/items/part/steelMachineHull.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/partSteelMachineHull.png rename to src/main/resources/assets/techreborn/textures/items/part/steelMachineHull.png diff --git a/src/main/resources/assets/techreborn/textures/items/part/superconductor.png b/src/main/resources/assets/techreborn/textures/items/part/superconductor.png new file mode 100644 index 000000000..f4bde04b0 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/superconductor.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/titaniumGear.png b/src/main/resources/assets/techreborn/textures/items/part/titaniumGear.png new file mode 100644 index 000000000..a2f0f038c Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/titaniumGear.png 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 new file mode 100644 index 000000000..90f5c9cd9 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/tungstenGrindingHead.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/part/tungstensteelGear.png b/src/main/resources/assets/techreborn/textures/items/part/tungstensteelGear.png new file mode 100644 index 000000000..e8ee99e2f Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/part/tungstensteelGear.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/partWolframiamGrinder.png b/src/main/resources/assets/techreborn/textures/items/part/wolframiamGrinder.png similarity index 100% rename from src/main/resources/assets/techreborn/textures/items/partWolframiamGrinder.png rename to src/main/resources/assets/techreborn/textures/items/part/wolframiamGrinder.png diff --git a/src/main/resources/assets/techreborn/textures/items/plate/Thumbs.db b/src/main/resources/assets/techreborn/textures/items/plate/Thumbs.db new file mode 100644 index 000000000..7fc3c2440 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/Thumbs.db 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 new file mode 100644 index 000000000..f26bdd824 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/aluminumPlate.png 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 new file mode 100644 index 000000000..a44f3dd0a Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/batteryAlloyPlate.png 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 new file mode 100644 index 000000000..ae2563ede Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/brassPlate.png 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 new file mode 100644 index 000000000..56626e283 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/carbonPlate.png 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 new file mode 100644 index 000000000..51b7f2f46 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/chromePlate.png 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 new file mode 100644 index 000000000..9cc3921ea Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/diamondPlate.png 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 new file mode 100644 index 000000000..36c31216f Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/electrumPlate.png 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 new file mode 100644 index 000000000..a9988180b Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/emeraldPlate.png 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 new file mode 100644 index 000000000..96e4a74eb Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/invarPlate.png 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 new file mode 100644 index 000000000..1aa94831d Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/iridiumPlate.png 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 new file mode 100644 index 000000000..c3ae3ce85 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/magnaliumPlate.png 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 new file mode 100644 index 000000000..e64810791 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/nickelPlate.png 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 new file mode 100644 index 000000000..d1401617e Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/nikolitePlate.png 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 new file mode 100644 index 000000000..cacb98fd7 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/osmiumPlate.png 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 new file mode 100644 index 000000000..bbb8524c6 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/peridotPlate.png 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 new file mode 100644 index 000000000..a462e8990 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/platinumPlate.png 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 new file mode 100644 index 000000000..aec318304 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/redGarnetPlate.png 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 new file mode 100644 index 000000000..d964d7f09 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/redstonePlate.png 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 new file mode 100644 index 000000000..a1d1c4f73 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/rubyPlate.png 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 new file mode 100644 index 000000000..6de1a89a3 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/sapphirePlate.png 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 new file mode 100644 index 000000000..9610a1379 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/silverPlate.png 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 new file mode 100644 index 000000000..6341de039 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/steelPlate.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/plate/titanium.png b/src/main/resources/assets/techreborn/textures/items/plate/titanium.png new file mode 100644 index 000000000..1f1f05639 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/titanium.png 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 new file mode 100644 index 000000000..f5fd08ae1 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/tungstenPlate.png 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 new file mode 100644 index 000000000..b5900b518 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/tungstensteelPlate.png 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 new file mode 100644 index 000000000..d06d19d45 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/yellowGarnetPlate.png 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 new file mode 100644 index 000000000..3a42677eb Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/plate/zincPlate.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/Thumbs.db b/src/main/resources/assets/techreborn/textures/items/smallDust/Thumbs.db new file mode 100644 index 000000000..5f26a82b1 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/Thumbs.db 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 new file mode 100644 index 000000000..1a3b72791 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallAlmandineDust.png 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 new file mode 100644 index 000000000..5186a7a4c Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallAluminumDust.png 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 new file mode 100644 index 000000000..1182fce6a Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallAndraditeDust.png 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 new file mode 100644 index 000000000..99b094509 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallAntimonyDust.png 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 new file mode 100644 index 000000000..7e34974e1 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallAshes.png 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 new file mode 100644 index 000000000..f03521ff1 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallBasaltDust.png 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 new file mode 100644 index 000000000..d7d2a2158 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallBauxiteDust.png 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 new file mode 100644 index 000000000..f03521ff1 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallBiotiteDust.png 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 new file mode 100644 index 000000000..af3e6c102 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallBrassDust.png 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 new file mode 100644 index 000000000..aad7bc740 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallBronzeDust.png 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 new file mode 100644 index 000000000..982e1f55e Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallCalciteDust.png 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 new file mode 100644 index 000000000..3fb05075e Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallCharcoalDust.png 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 new file mode 100644 index 000000000..a40f72ac0 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallChromeDust.png 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 new file mode 100644 index 000000000..bdca59b8a Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallCinnabarDust.png 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 new file mode 100644 index 000000000..69713c14c Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallClayDust.png 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 new file mode 100644 index 000000000..a18ff097c Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallCoalDust.png 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 new file mode 100644 index 000000000..45ab9988d Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallCopperDust.png 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 new file mode 100644 index 000000000..f63496979 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallCupronickelDust.png 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 new file mode 100644 index 000000000..e88ac7512 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallDarkAshes.png 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 new file mode 100644 index 000000000..943abffa0 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallDiamondDust.png 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 new file mode 100644 index 000000000..9a9707cb9 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallElectrumDust.png 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 new file mode 100644 index 000000000..21c7a3624 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallEmeraldDust.png 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 new file mode 100644 index 000000000..210bbe1e2 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallEnderEyeDust.png 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 new file mode 100644 index 000000000..a6ce8ea60 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallEnderPearlDust.png 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 new file mode 100644 index 000000000..b3bd37bea Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallEndstoneDust.png 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 new file mode 100644 index 000000000..1583524f2 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallFlintDust.png 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 new file mode 100644 index 000000000..1ab497fab Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallGlowstoneDust.png 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 new file mode 100644 index 000000000..912fa0cd3 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallGoldDust.png 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 new file mode 100644 index 000000000..1755ed5bc Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallGrossularDust.png 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 new file mode 100644 index 000000000..b0fef9898 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallGunpowder.png 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 new file mode 100644 index 000000000..fbd2ec7cd Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallInvarDust.png 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 new file mode 100644 index 000000000..b1d20e4b5 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallIridiumDust.png 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 new file mode 100644 index 000000000..e22a0d954 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallIronDust.png 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 new file mode 100644 index 000000000..5e83ebcd4 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallKanthalDust.png 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 new file mode 100644 index 000000000..61c6d044a Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallLapisDust.png 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 new file mode 100644 index 000000000..18a30fb18 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallLazuriteDust.png 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 new file mode 100644 index 000000000..23d50c722 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallLeadDust.png 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 new file mode 100644 index 000000000..cbf5f471f Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallMagnesiumDust.png 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 new file mode 100644 index 000000000..b1d20e4b5 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallManganese.png 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 new file mode 100644 index 000000000..111d573b2 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallMarbleDust.png 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 new file mode 100644 index 000000000..05a71e27e Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallNetherrackDust.png 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 new file mode 100644 index 000000000..636afc802 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallNichromeDust.png 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 new file mode 100644 index 000000000..ed0ca975b Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallNickelDust.png 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 new file mode 100644 index 000000000..52790bef8 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallNikoliteDust.png 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 new file mode 100644 index 000000000..44719f381 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallObsidianDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/smallDust/smallOsmiumDust.png b/src/main/resources/assets/techreborn/textures/items/smallDust/smallOsmiumDust.png new file mode 100644 index 000000000..40f527bd0 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallOsmiumDust.png 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 new file mode 100644 index 000000000..2fae69cfa Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallPeridotDust.png 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 new file mode 100644 index 000000000..1122226cd Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallPhosphorousDust.png 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 new file mode 100644 index 000000000..f6bb19e7b Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallPlatinumDust.png 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 new file mode 100644 index 000000000..c2fcd8fac Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallPotassiumFeldsparDust.png 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 new file mode 100644 index 000000000..b66118354 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallPyriteDust.png 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 new file mode 100644 index 000000000..ca66a77fa Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallPyropeDust.png 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 new file mode 100644 index 000000000..322a6db28 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallRedGarnetDust.png 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 new file mode 100644 index 000000000..e5aa97789 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallRedrockDust.png 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 new file mode 100644 index 000000000..1811d32a9 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallRedstoneDust.png 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 new file mode 100644 index 000000000..b710aef2d Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallRubyDust.png 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 new file mode 100644 index 000000000..dd5a3d74a Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallSaltpeterDust.png 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 new file mode 100644 index 000000000..6b12d74ef Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallSapphireDust.png 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 new file mode 100644 index 000000000..dc34e97cb Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallSilverDust.png 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 new file mode 100644 index 000000000..8b13fc77c Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallSodaliteDust.png 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 new file mode 100644 index 000000000..29caf7d3d Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallSpessartine.png 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 new file mode 100644 index 000000000..7e9f0adb2 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallSphaleriteDust.png 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 new file mode 100644 index 000000000..cfc3139a7 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallSteelDust.png 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 new file mode 100644 index 000000000..4e5fe6625 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallSulfurDust.png 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 new file mode 100644 index 000000000..0e9d9ca2a Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallTetrahedriteDust.png 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 new file mode 100644 index 000000000..63ae8266d Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallTinDust.png 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 new file mode 100644 index 000000000..3d7fa8df3 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallTitaniumDust.png 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 new file mode 100644 index 000000000..cc2bfe57e Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallTungstenDust.png 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 new file mode 100644 index 000000000..4da155b54 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallUvarovite.png 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 new file mode 100644 index 000000000..7d9458953 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallYellowGarnetDust.png 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 new file mode 100644 index 000000000..b4960b30a Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/smallDust/smallZincDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/Thumbs.db b/src/main/resources/assets/techreborn/textures/items/tinyDust/Thumbs.db new file mode 100644 index 000000000..1c50d51bb Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/Thumbs.db differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyAlmandineDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyAlmandineDust.png new file mode 100644 index 000000000..18e5ff6d4 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyAlmandineDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyAluminumDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyAluminumDust.png new file mode 100644 index 000000000..62bbf194b Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyAluminumDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyAndraditeDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyAndraditeDust.png new file mode 100644 index 000000000..1aa10568f Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyAndraditeDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyAntimonyDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyAntimonyDust.png new file mode 100644 index 000000000..cd14c91c4 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyAntimonyDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyAshes.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyAshes.png new file mode 100644 index 000000000..c5e7ae492 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyAshes.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyBasaltDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyBasaltDust.png new file mode 100644 index 000000000..5a3ab5fb9 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyBasaltDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyBauxiteDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyBauxiteDust.png new file mode 100644 index 000000000..1075d4502 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyBauxiteDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyBiotiteDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyBiotiteDust.png new file mode 100644 index 000000000..5a3ab5fb9 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyBiotiteDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyBrassDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyBrassDust.png new file mode 100644 index 000000000..1704e44ed Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyBrassDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyCalciteDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyCalciteDust.png new file mode 100644 index 000000000..399b654be Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyCalciteDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyCharcoalDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyCharcoalDust.png new file mode 100644 index 000000000..e4c92f9fc Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyCharcoalDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyChromeDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyChromeDust.png new file mode 100644 index 000000000..f4e9da8c7 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyChromeDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyCinnibarDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyCinnibarDust.png new file mode 100644 index 000000000..4c6ac2e21 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyCinnibarDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyClayDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyClayDust.png new file mode 100644 index 000000000..334caefd1 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyClayDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyCoalDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyCoalDust.png new file mode 100644 index 000000000..34000243d Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyCoalDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyCupronickelDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyCupronickelDust.png new file mode 100644 index 000000000..6641bf8fa Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyCupronickelDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyDarkAshes.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyDarkAshes.png new file mode 100644 index 000000000..1e357c358 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyDarkAshes.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyDiamondDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyDiamondDust.png new file mode 100644 index 000000000..31b648c72 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyDiamondDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyElectrumDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyElectrumDust.png new file mode 100644 index 000000000..a2c7fedf3 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyElectrumDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyEmeraldDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyEmeraldDust.png new file mode 100644 index 000000000..94355d00f Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyEmeraldDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyEnderEyeDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyEnderEyeDust.png new file mode 100644 index 000000000..b25fc59c3 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyEnderEyeDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyEnderPearlDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyEnderPearlDust.png new file mode 100644 index 000000000..99d6ee1e5 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyEnderPearlDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyEndstoneDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyEndstoneDust.png new file mode 100644 index 000000000..13e6d354d Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyEndstoneDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyFlintDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyFlintDust.png new file mode 100644 index 000000000..040c3ca28 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyFlintDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyGlowstoneDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyGlowstoneDust.png new file mode 100644 index 000000000..a8ec0eb50 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyGlowstoneDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyGrossularDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyGrossularDust.png new file mode 100644 index 000000000..082068c0a Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyGrossularDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyGunpowder.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyGunpowder.png new file mode 100644 index 000000000..85d58a6e1 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyGunpowder.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyInvarDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyInvarDust.png new file mode 100644 index 000000000..377449c31 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyInvarDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyIridiumDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyIridiumDust.png new file mode 100644 index 000000000..c3a76fdcc Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyIridiumDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyKanthalDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyKanthalDust.png new file mode 100644 index 000000000..89ba252dc Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyKanthalDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyLapizDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyLapizDust.png new file mode 100644 index 000000000..020f76464 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyLapizDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyLazuriteDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyLazuriteDust.png new file mode 100644 index 000000000..138f644e5 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyLazuriteDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyMagnesiumDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyMagnesiumDust.png new file mode 100644 index 000000000..6a3fbc8a0 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyMagnesiumDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyManganeseDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyManganeseDust.png new file mode 100644 index 000000000..c3a76fdcc Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyManganeseDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyMarbleDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyMarbleDust.png new file mode 100644 index 000000000..b49e8f076 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyMarbleDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyNetherrackDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyNetherrackDust.png new file mode 100644 index 000000000..ebc926e83 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyNetherrackDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyNichromeDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyNichromeDust.png new file mode 100644 index 000000000..4d163c5a6 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyNichromeDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyNickelDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyNickelDust.png new file mode 100644 index 000000000..a88269302 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyNickelDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyNikoliteDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyNikoliteDust.png new file mode 100644 index 000000000..bc8a6daf1 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyNikoliteDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyObsidianDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyObsidianDust.png new file mode 100644 index 000000000..d5393bc45 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyObsidianDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyOsmiumDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyOsmiumDust.png new file mode 100644 index 000000000..65ce7e31e Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyOsmiumDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyPeridotDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyPeridotDust.png new file mode 100644 index 000000000..0e13730ba Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyPeridotDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyPhosphorousDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyPhosphorousDust.png new file mode 100644 index 000000000..3b3dcf625 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyPhosphorousDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyPlatinumDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyPlatinumDust.png new file mode 100644 index 000000000..5c121429b Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyPlatinumDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyPotassiumFeldsparDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyPotassiumFeldsparDust.png new file mode 100644 index 000000000..cc387b253 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyPotassiumFeldsparDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyPyriteDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyPyriteDust.png new file mode 100644 index 000000000..2a1b10623 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyPyriteDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyPyropeDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyPyropeDust.png new file mode 100644 index 000000000..16cfb03fb Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyPyropeDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyRedGarnetDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyRedGarnetDust.png new file mode 100644 index 000000000..a679956a7 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyRedGarnetDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyRedrockDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyRedrockDust.png new file mode 100644 index 000000000..1e8da4c39 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyRedrockDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyRedstoneDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyRedstoneDust.png new file mode 100644 index 000000000..2330949a2 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyRedstoneDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyRubyDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyRubyDust.png new file mode 100644 index 000000000..3fb9c9ba4 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyRubyDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinySaltpeterDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinySaltpeterDust.png new file mode 100644 index 000000000..fcf78daf3 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinySaltpeterDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinySapphireDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinySapphireDust.png new file mode 100644 index 000000000..c6ffdd3c6 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinySapphireDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinySodaliteDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinySodaliteDust.png new file mode 100644 index 000000000..94a84a97d Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinySodaliteDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinySpessartineDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinySpessartineDust.png new file mode 100644 index 000000000..fd4fd59ff Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinySpessartineDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinySphaleriteDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinySphaleriteDust.png new file mode 100644 index 000000000..7b66e6b08 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinySphaleriteDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinySteelDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinySteelDust.png new file mode 100644 index 000000000..76f18e053 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinySteelDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyTetrahedriteDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyTetrahedriteDust.png new file mode 100644 index 000000000..6ac89bc0c Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyTetrahedriteDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyTitaniumDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyTitaniumDust.png new file mode 100644 index 000000000..d6cb14387 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyTitaniumDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyTungstenDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyTungstenDust.png new file mode 100644 index 000000000..ff695eaaa Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyTungstenDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyUvarovite.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyUvarovite.png new file mode 100644 index 000000000..a9a119306 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyUvarovite.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyYellowGarnetDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyYellowGarnetDust.png new file mode 100644 index 000000000..d000649b8 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyYellowGarnetDust.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyZincDust.png b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyZincDust.png new file mode 100644 index 000000000..8c8281851 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tinyDust/tinyZincDust.png 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 new file mode 100644 index 000000000..31bd7def7 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tool/cloakingDevice.png 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 new file mode 100644 index 000000000..59147b177 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tool/diamondJackHammer.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/jackHammer.png b/src/main/resources/assets/techreborn/textures/items/tool/jackHammer.png new file mode 100644 index 000000000..05feb2c12 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tool/jackHammer.png 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 new file mode 100644 index 000000000..f6eeea241 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tool/lapotronicEnergyOrb.png 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 new file mode 100644 index 000000000..25975f4b4 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tool/lithiumBatpack.png 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 new file mode 100644 index 000000000..f6ed5949d Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tool/lithiumBattery.png 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 new file mode 100644 index 000000000..cc9783295 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tool/lithiumBatteryEmpty.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/omnitool.png b/src/main/resources/assets/techreborn/textures/items/tool/omnitool.png new file mode 100644 index 000000000..731a7a138 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tool/omnitool.png differ diff --git a/src/main/resources/assets/techreborn/textures/items/tool/rockcutter.png b/src/main/resources/assets/techreborn/textures/items/tool/rockcutter.png new file mode 100644 index 000000000..d7884abc2 Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tool/rockcutter.png 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 new file mode 100644 index 000000000..809f355af Binary files /dev/null and b/src/main/resources/assets/techreborn/textures/items/tool/rockcutterBlade.png differ