diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-09-14 17:32:18 +1000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-09-14 17:32:18 +1000 |
commit | b99d0579ec290bee71618f5c3b125294d152bfea (patch) | |
tree | 41b7d2a53f2026cfae4ba40cddcd780072e31b41 /src/Java/gtPlusPlus/core/item | |
parent | d6c0145ccc1b49bb0769b346e6b0e390aa910c44 (diff) | |
download | GT5-Unofficial-b99d0579ec290bee71618f5c3b125294d152bfea.tar.gz GT5-Unofficial-b99d0579ec290bee71618f5c3b125294d152bfea.tar.bz2 GT5-Unofficial-b99d0579ec290bee71618f5c3b125294d152bfea.zip |
+ Added more Sub-Station casing recipes.
Diffstat (limited to 'src/Java/gtPlusPlus/core/item')
-rw-r--r-- | src/Java/gtPlusPlus/core/item/ModItems.java | 25 | ||||
-rw-r--r-- | src/Java/gtPlusPlus/core/item/general/ItemHalfCompleteCasings.java | 4 |
2 files changed, 18 insertions, 11 deletions
diff --git a/src/Java/gtPlusPlus/core/item/ModItems.java b/src/Java/gtPlusPlus/core/item/ModItems.java index c1e4ac9bbd..685d918ae6 100644 --- a/src/Java/gtPlusPlus/core/item/ModItems.java +++ b/src/Java/gtPlusPlus/core/item/ModItems.java @@ -219,13 +219,15 @@ public final class ModItems { public static Item itemCoalCoke; public static CoreItem itemCircuitLFTR; - + public static Item itemDebugAreaClear; public static Item itemGemShards; - + public static Item itemHalfCompleteCasings; + public static Item itemPlateVanadium; + @@ -235,14 +237,14 @@ public final class ModItems { //Default item used when recipes fail, handy for debugging. AAA_Broken = new BaseItemIngot_OLD("AAA_Broken", "Errors - Tell Alkalus", Utils.rgbtoHexValue(128, 128, 128), 0); ZZZ_Empty = new ItemEmpty(); - + itemAlkalusDisk = new BaseItemDamageable("itemAlkalusDisk", AddToCreativeTab.tabMisc, 1, 0, "Unknown Use", EnumRarity.rare, EnumChatFormatting.AQUA, false, null); //Debug Loading if (CORE.DEBUG){ DEBUG_INIT.registerItems(); } - + itemDebugAreaClear = new ItemAreaClear(); @@ -291,9 +293,9 @@ public final class ModItems { itemBlueprintBase = new ItemBlueprint("itemBlueprint"); itemGemShards = new ItemGemShards("itemGemShards", "Gem Shards", AddToCreativeTab.tabMisc, 32, 0, "They glitter in the light", EnumRarity.rare, EnumChatFormatting.GRAY, false, Utils.rgbtoHexValue(182, 114, 18)).setTextureName(CORE.MODID + ":itemHeliumBlob"); - itemHalfCompleteCasings = new ItemHalfCompleteCasings("itemHalfCompleteCasings", "Half Complete Casing", AddToCreativeTab.tabMisc, 32, 0, "This isn't quite finished yet.", EnumRarity.common, EnumChatFormatting.GRAY, false, Utils.rgbtoHexValue(255, 255, 255)).setTextureName("gregtech" + ":" + "gt.metaitem.01" + "761"); - - + itemHalfCompleteCasings = new ItemHalfCompleteCasings("itemHalfCompleteCasings", "Half Complete Casing", AddToCreativeTab.tabMisc, 32, 0, "This isn't quite finished yet.", EnumRarity.common, EnumChatFormatting.GRAY, false, Utils.rgbtoHexValue(255, 255, 255)).setTextureName("gregtech" + ":" + "gt.metaitem.01/" + "761"); + + //Start meta Item Generation ItemsFoods.load(); @@ -387,7 +389,7 @@ public final class ModItems { MaterialGenerator.generateNuclearMaterial(FLUORIDES.NEPTUNIUM_HEXAFLUORIDE); MaterialGenerator.generateNuclearMaterial(FLUORIDES.TECHNETIUM_HEXAFLUORIDE); MaterialGenerator.generateNuclearMaterial(FLUORIDES.SELENIUM_HEXAFLUORIDE); - + //Generate Reactor Fuel Salts MaterialGenerator.generateNuclearMaterial(NUCLIDE.LiFBeF2ZrF4U235); MaterialGenerator.generateNuclearMaterial(NUCLIDE.LiFBeF2ZrF4UF4); @@ -504,7 +506,7 @@ public final class ModItems { //LFTR Control Circuit itemCircuitLFTR = new CoreItem("itemCircuitLFTR", ""+EnumChatFormatting.GREEN+"Thorium Reactor Control Circuit", AddToCreativeTab.tabMisc, 1, 0, "Helps your LFTR not explode", EnumRarity.epic, EnumChatFormatting.DARK_GREEN, false, null); - + //Zirconium //Cinter Pellet. itemZirconiumChlorideCinterPellet = new CoreItem("itemZirconiumPellet", "Zirconium Pellet ["+StringUtils.subscript("ZrCl4")+"]", tabMisc).setTextureName(CORE.MODID + ":itemShard"); @@ -609,6 +611,11 @@ public final class ModItems { tI = new BaseItemMisc("Dull", new short[]{64,64,64}, 64, MiscTypes.GEM, null); tI = new BaseItemMisc("Forest", new short[]{130,164,96}, 64, MiscTypes.MUSHROOM, new String[]{"You Found this on the ground.", "Definitely not sure if it's worth eating."}); + //Vanadium + if (ItemUtils.getItemStackOfAmountFromOreDictNoBroken("plateVanadium", 1) == null){ + itemPlateVanadium = new BaseItemPlate(MaterialUtils.generateMaterialFromGtENUM(Materials.Vanadium)); + } + //EnderIO Resources if ((LoadedMods.EnderIO || LOAD_ALL_CONTENT) && !CORE.GTNH){ Utils.LOG_INFO("EnderIO Found - Loading Resources."); diff --git a/src/Java/gtPlusPlus/core/item/general/ItemHalfCompleteCasings.java b/src/Java/gtPlusPlus/core/item/general/ItemHalfCompleteCasings.java index 7d4471d0c5..1ee3febed8 100644 --- a/src/Java/gtPlusPlus/core/item/general/ItemHalfCompleteCasings.java +++ b/src/Java/gtPlusPlus/core/item/general/ItemHalfCompleteCasings.java @@ -55,10 +55,10 @@ public class ItemHalfCompleteCasings extends BaseItemColourable{ @Override public int getColorFromItemStack(ItemStack stack, int HEX_OxFFFFFF) { if (this.getDamage(stack)==0){ - return Utils.rgbtoHexValue(150, 150, 220); + return Utils.rgbtoHexValue(52, 52, 52); } else if (this.getDamage(stack)==1){ - return Utils.rgbtoHexValue(175, 182, 75); + return Utils.rgbtoHexValue(80, 90, 222); } else if (this.getDamage(stack)==2){ return Utils.rgbtoHexValue(182, 77, 177); |