aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/recipe
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/recipe
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/recipe')
-rw-r--r--src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java11
1 files changed, 8 insertions, 3 deletions
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(){