diff --git a/assets/hbm/lang/de_DE.lang b/assets/hbm/lang/de_DE.lang index 0d61b440b..cd3eefb0e 100644 --- a/assets/hbm/lang/de_DE.lang +++ b/assets/hbm/lang/de_DE.lang @@ -716,6 +716,7 @@ item.plate_dalekanium.name=Wütendes Metall item.biomass.name=Biomasse item.component_limiter.name=Stabilisatorkomponente item.component_emitter.name=Emitterkomponente +item.catalyst_clay.name=Tonerde-Katalysator item.cell_empty.name=Leere Zelle item.cell_uf6.name=Uranhexafluorit-Zelle diff --git a/assets/hbm/lang/en_US.lang b/assets/hbm/lang/en_US.lang index 4de812045..2b6cb5c32 100644 --- a/assets/hbm/lang/en_US.lang +++ b/assets/hbm/lang/en_US.lang @@ -719,6 +719,7 @@ item.plate_dalekanium.name=Angry Metal item.biomass.name=Biomass item.component_limiter.name=Stabilizer Component item.component_emitter.name=Emitter Component +item.catalyst_clay.name=Clay Catalyst item.cell_empty.name=Empty Cell item.cell_uf6.name=Uranium Hexafluorite Cell diff --git a/assets/hbm/textures/items/catalyst_clay.png b/assets/hbm/textures/items/catalyst_clay.png new file mode 100644 index 000000000..4864a8d70 Binary files /dev/null and b/assets/hbm/textures/items/catalyst_clay.png differ diff --git a/assets/hbm/textures/items/catalyst_rare.png b/assets/hbm/textures/items/catalyst_rare.png new file mode 100644 index 000000000..55a36c9b3 Binary files /dev/null and b/assets/hbm/textures/items/catalyst_rare.png differ diff --git a/assets/hbm/textures/items/catalyst_ten.png b/assets/hbm/textures/items/catalyst_ten.png new file mode 100644 index 000000000..4df53dc3c Binary files /dev/null and b/assets/hbm/textures/items/catalyst_ten.png differ diff --git a/assets/hbm/textures/items/catalyst_xen.png b/assets/hbm/textures/items/catalyst_xen.png new file mode 100644 index 000000000..759cbebeb Binary files /dev/null and b/assets/hbm/textures/items/catalyst_xen.png differ diff --git a/assets/hbm/textures/items/dynosphere_tetraneutronium.png b/assets/hbm/textures/items/dynosphere_tetraneutronium.png new file mode 100644 index 000000000..decbea6d6 Binary files /dev/null and b/assets/hbm/textures/items/dynosphere_tetraneutronium.png differ diff --git a/assets/hbm/textures/items/dynosphere_tetraneutronium_charged.png b/assets/hbm/textures/items/dynosphere_tetraneutronium_charged.png new file mode 100644 index 000000000..f05c034de Binary files /dev/null and b/assets/hbm/textures/items/dynosphere_tetraneutronium_charged.png differ diff --git a/com/hbm/items/ModItems.java b/com/hbm/items/ModItems.java index 99db459c9..f867c28ac 100644 --- a/com/hbm/items/ModItems.java +++ b/com/hbm/items/ModItems.java @@ -295,6 +295,7 @@ public class ModItems { public static Item toothpicks; public static Item ducttape; + public static Item catalyst_clay; public static Item warhead_generic_small; public static Item warhead_generic_medium; @@ -1412,6 +1413,7 @@ public class ModItems { toothpicks = new Item().setUnlocalizedName("toothpicks").setCreativeTab(MainRegistry.tabParts).setTextureName(RefStrings.MODID + ":toothpicks"); ducttape = new Item().setUnlocalizedName("ducttape").setCreativeTab(MainRegistry.tabParts).setTextureName(RefStrings.MODID + ":ducttape"); + catalyst_clay = new Item().setUnlocalizedName("catalyst_clay").setCreativeTab(MainRegistry.tabParts).setTextureName(RefStrings.MODID + ":catalyst_clay"); warhead_generic_small = new Item().setUnlocalizedName("warhead_generic_small").setCreativeTab(MainRegistry.tabParts).setTextureName(RefStrings.MODID + ":warhead_generic_small"); warhead_generic_medium = new Item().setUnlocalizedName("warhead_generic_medium").setCreativeTab(MainRegistry.tabParts).setTextureName(RefStrings.MODID + ":warhead_generic_medium"); @@ -1914,15 +1916,15 @@ public class ModItems { screwdriver = new ItemCustomLore().setUnlocalizedName("screwdriver").setMaxStackSize(1).setFull3D().setCreativeTab(MainRegistry.tabParts).setTextureName(RefStrings.MODID + ":screwdriver"); overfuse = new ItemCustomLore().setUnlocalizedName("overfuse").setMaxStackSize(1).setFull3D().setTextureName(RefStrings.MODID + ":overfuse"); - dynosphere_base = new Item().setUnlocalizedName("dynosphere_base").setMaxStackSize(1).setTextureName(RefStrings.MODID + ":dynosphere_base"); - dynosphere_desh = new ItemBattery(10000L).setUnlocalizedName("dynosphere_desh").setMaxStackSize(1).setTextureName(RefStrings.MODID + ":dynosphere_desh"); - dynosphere_desh_charged = new Item().setUnlocalizedName("dynosphere_desh_charged").setMaxStackSize(1).setTextureName(RefStrings.MODID + ":dynosphere_desh_charged"); - dynosphere_schrabidium = new ItemBattery(1000000L).setUnlocalizedName("dynosphere_schrabidium").setMaxStackSize(1).setTextureName(RefStrings.MODID + ":dynosphere_schrabidium"); - dynosphere_schrabidium_charged = new Item().setUnlocalizedName("dynosphere_schrabidium_charged").setMaxStackSize(1).setTextureName(RefStrings.MODID + ":dynosphere_schrabidium_charged"); - dynosphere_euphemium = new ItemBattery(100000000L).setUnlocalizedName("dynosphere_euphemium").setMaxStackSize(1).setTextureName(RefStrings.MODID + ":dynosphere_euphemium"); - dynosphere_euphemium_charged = new Item().setUnlocalizedName("dynosphere_euphemium_charged").setMaxStackSize(1).setTextureName(RefStrings.MODID + ":dynosphere_euphemium_charged"); - dynosphere_dineutronium = new ItemBattery(10000000000L).setUnlocalizedName("dynosphere_dineutronium").setMaxStackSize(1).setTextureName(RefStrings.MODID + ":dynosphere_dineutronium"); - dynosphere_dineutronium_charged = new Item().setUnlocalizedName("dynosphere_dineutronium_charged").setMaxStackSize(1).setTextureName(RefStrings.MODID + ":dynosphere_dineutronium_charged"); + dynosphere_base = new Item().setUnlocalizedName("dynosphere_base").setMaxStackSize(1).setCreativeTab(MainRegistry.tabParts).setTextureName(RefStrings.MODID + ":dynosphere_base"); + dynosphere_desh = new ItemBattery(10000L).setUnlocalizedName("dynosphere_desh").setMaxStackSize(1).setCreativeTab(MainRegistry.tabParts).setTextureName(RefStrings.MODID + ":dynosphere_desh"); + dynosphere_desh_charged = new Item().setUnlocalizedName("dynosphere_desh_charged").setMaxStackSize(1).setCreativeTab(MainRegistry.tabParts).setTextureName(RefStrings.MODID + ":dynosphere_desh_charged"); + dynosphere_schrabidium = new ItemBattery(1000000L).setUnlocalizedName("dynosphere_schrabidium").setMaxStackSize(1).setCreativeTab(MainRegistry.tabParts).setTextureName(RefStrings.MODID + ":dynosphere_schrabidium"); + dynosphere_schrabidium_charged = new Item().setUnlocalizedName("dynosphere_schrabidium_charged").setMaxStackSize(1).setCreativeTab(MainRegistry.tabParts).setTextureName(RefStrings.MODID + ":dynosphere_schrabidium_charged"); + dynosphere_euphemium = new ItemBattery(100000000L).setUnlocalizedName("dynosphere_euphemium").setMaxStackSize(1).setCreativeTab(MainRegistry.tabParts).setTextureName(RefStrings.MODID + ":dynosphere_euphemium"); + dynosphere_euphemium_charged = new Item().setUnlocalizedName("dynosphere_euphemium_charged").setMaxStackSize(1).setCreativeTab(MainRegistry.tabParts).setTextureName(RefStrings.MODID + ":dynosphere_euphemium_charged"); + dynosphere_dineutronium = new ItemBattery(10000000000L).setUnlocalizedName("dynosphere_dineutronium").setMaxStackSize(1).setCreativeTab(MainRegistry.tabParts).setTextureName(RefStrings.MODID + ":dynosphere_dineutronium"); + dynosphere_dineutronium_charged = new Item().setUnlocalizedName("dynosphere_dineutronium_charged").setMaxStackSize(1).setCreativeTab(MainRegistry.tabParts).setTextureName(RefStrings.MODID + ":dynosphere_dineutronium_charged"); factory_core_titanium = new ItemBattery(70400).setUnlocalizedName("factory_core_titanium").setMaxStackSize(1).setCreativeTab(MainRegistry.tabParts).setTextureName(RefStrings.MODID + ":factory_core_titanium"); factory_core_advanced = new ItemBattery(41600).setUnlocalizedName("factory_core_advanced").setMaxStackSize(1).setCreativeTab(MainRegistry.tabParts).setTextureName(RefStrings.MODID + ":factory_core_advanced"); @@ -2554,6 +2556,7 @@ public class ModItems { GameRegistry.registerItem(generator_front, generator_front.getUnlocalizedName()); GameRegistry.registerItem(toothpicks, toothpicks.getUnlocalizedName()); GameRegistry.registerItem(ducttape, ducttape.getUnlocalizedName()); + GameRegistry.registerItem(catalyst_clay, catalyst_clay.getUnlocalizedName()); GameRegistry.registerItem(warhead_generic_small, warhead_generic_small.getUnlocalizedName()); GameRegistry.registerItem(warhead_generic_medium, warhead_generic_medium.getUnlocalizedName()); GameRegistry.registerItem(warhead_generic_large, warhead_generic_large.getUnlocalizedName());