aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-09-14 14:22:52 +1000
committerAlkalus <draknyte1@hotmail.com>2017-09-14 14:22:52 +1000
commitd6c0145ccc1b49bb0769b346e6b0e390aa910c44 (patch)
tree7fb5e81ad3f0a166b6c06bc31d762016a9f88ea4 /src/Java/gtPlusPlus/core
parent9dafff8240bae69aa68395d4dec5cddd58399851 (diff)
downloadGT5-Unofficial-d6c0145ccc1b49bb0769b346e6b0e390aa910c44.tar.gz
GT5-Unofficial-d6c0145ccc1b49bb0769b346e6b0e390aa910c44.tar.bz2
GT5-Unofficial-d6c0145ccc1b49bb0769b346e6b0e390aa910c44.zip
+ Added recipes for Vanadium Redox Power Cells.
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-rw-r--r--src/Java/gtPlusPlus/core/item/ModItems.java5
-rw-r--r--src/Java/gtPlusPlus/core/item/general/ItemHalfCompleteCasings.java75
-rw-r--r--src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java11
3 files changed, 87 insertions, 4 deletions
diff --git a/src/Java/gtPlusPlus/core/item/ModItems.java b/src/Java/gtPlusPlus/core/item/ModItems.java
index c55aa85819..c1e4ac9bbd 100644
--- a/src/Java/gtPlusPlus/core/item/ModItems.java
+++ b/src/Java/gtPlusPlus/core/item/ModItems.java
@@ -223,6 +223,8 @@ public final class ModItems {
public static Item itemDebugAreaClear;
public static Item itemGemShards;
+
+ public static Item itemHalfCompleteCasings;
@@ -289,7 +291,8 @@ 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");
+
//Start meta Item Generation
ItemsFoods.load();
diff --git a/src/Java/gtPlusPlus/core/item/general/ItemHalfCompleteCasings.java b/src/Java/gtPlusPlus/core/item/general/ItemHalfCompleteCasings.java
new file mode 100644
index 0000000000..7d4471d0c5
--- /dev/null
+++ b/src/Java/gtPlusPlus/core/item/general/ItemHalfCompleteCasings.java
@@ -0,0 +1,75 @@
+package gtPlusPlus.core.item.general;
+
+import java.util.List;
+
+import gtPlusPlus.core.item.base.BaseItemColourable;
+import gtPlusPlus.core.util.Utils;
+import gtPlusPlus.core.util.math.MathUtils;
+import net.minecraft.creativetab.CreativeTabs;
+import net.minecraft.entity.player.EntityPlayer;
+import net.minecraft.item.EnumRarity;
+import net.minecraft.item.Item;
+import net.minecraft.item.ItemStack;
+import net.minecraft.util.EnumChatFormatting;
+import net.minecraft.world.World;
+
+public class ItemHalfCompleteCasings extends BaseItemColourable{
+
+ public ItemHalfCompleteCasings(String unlocalizedName, CreativeTabs creativeTab, int stackSize, int maxDmg,
+ String description, EnumRarity regRarity, EnumChatFormatting colour, boolean Effect, int rgb) {
+ super(unlocalizedName, creativeTab, stackSize, maxDmg, description, regRarity, colour, Effect, rgb);
+ }
+
+ public ItemHalfCompleteCasings(String unlocalizedName, String displayName, CreativeTabs creativeTab, int stackSize,
+ int maxDmg, String description, EnumRarity regRarity, EnumChatFormatting colour, boolean Effect, int rgb) {
+ super(unlocalizedName, displayName, creativeTab, stackSize, maxDmg, description, regRarity, colour, Effect, rgb);
+ }
+
+ @Override
+ public void getSubItems(Item item, CreativeTabs tab, List list) {
+ for (int i = 0; i < 4; i ++) {
+ list.add(new ItemStack(item, 1, i));
+ }
+ }
+
+ @Override
+ public String getItemStackDisplayName(final ItemStack tItem) {
+ String prefix = " Half Complete Casing ";
+ String casingType = "";
+ if (tItem.getItemDamage() == 0){
+ casingType = "I";
+ }
+ else if (tItem.getItemDamage() == 1){
+ casingType = "II";
+ }
+ else if (tItem.getItemDamage() == 2){
+ casingType = "III";
+ }
+ else if (tItem.getItemDamage() == 3){
+ casingType = "IV";
+ }
+ return (prefix+casingType);
+
+ }
+
+ @Override
+ public int getColorFromItemStack(ItemStack stack, int HEX_OxFFFFFF) {
+ if (this.getDamage(stack)==0){
+ return Utils.rgbtoHexValue(150, 150, 220);
+ }
+ else if (this.getDamage(stack)==1){
+ return Utils.rgbtoHexValue(175, 182, 75);
+ }
+ else if (this.getDamage(stack)==2){
+ return Utils.rgbtoHexValue(182, 77, 177);
+ }
+ else {
+ return Utils.rgbtoHexValue(77, 175, 182);
+ }
+ }
+
+
+
+
+
+}
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java
index 76fc874b9b..b974a3f9d5 100644
--- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java
+++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java
@@ -420,9 +420,14 @@ public class RECIPES_GREGTECH {
}
private static void assemblerRecipes(){
- //GT_Values.RA.addAssemblerRecipe(GT_OreDictUnificator.get(OrePrefixes.plate, Materials.Titanium, 6L), ItemList.Casing_Turbine.get(1L, new Object[0]), ItemList.Casing_Turbine2.get(1L, new Object[0]), 50, 16);
- //GT_Values.RA.addAssemblerRecipe(GT_OreDictUnificator.get(OrePrefixes.plate, Materials.TungstenSteel, 6L), ItemList.Casing_Turbine.get(1L, new Object[0]), ItemList.Casing_Turbine3.get(1L, new Object[0]), 50, 16);
-
+ //ItemUtils.getSimpleStack(GregtechItemList.Casing_Vanadium_Redox.get(1)
+ addAR(ItemUtils.getItemStackOfAmountFromOreDict("cellVanadium", 32), ItemUtils.getItemStackOfAmountFromOreDict("cellOxygen", 32), ItemUtils.simpleMetaStack(ModItems.itemHalfCompleteCasings, 0, 2), 16, 64);
+ addAR(ItemUtils.simpleMetaStack(ModItems.itemHalfCompleteCasings, 1, 4), ItemUtils.getItemStackOfAmountFromOreDict("frameGtVanadiumSteel", 8), ItemUtils.simpleMetaStack(ModItems.itemHalfCompleteCasings, 2, 8), 32, 64);
+ addAR(ItemUtils.simpleMetaStack(ModItems.itemHalfCompleteCasings, 2, 1), ItemUtils.getItemStackOfAmountFromOreDict("cellNitrogen", 1), ItemUtils.getSimpleStack(GregtechItemList.Casing_Vanadium_Redox.get(1), 1), 64, 64);
+ }
+
+ private static boolean addAR(ItemStack inputA, ItemStack inputB, ItemStack outputA, int seconds, int voltage){
+ return GT_Values.RA.addAssemblerRecipe(inputA, inputB, outputA, seconds*20, voltage);
}
private static void distilleryRecipes(){