diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-12-23 14:03:23 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-12-23 14:03:23 +1000 |
commit | 8feb33087fe272d398d8c8bbe490d47c2853581d (patch) | |
tree | 064f05ebfea688bdaf1f61e6227cbc604de3feea /src/Java/gtPlusPlus/core/recipe | |
parent | 54312bb885a456da2c68251e4b0b09f137d972d6 (diff) | |
download | GT5-Unofficial-8feb33087fe272d398d8c8bbe490d47c2853581d.tar.gz GT5-Unofficial-8feb33087fe272d398d8c8bbe490d47c2853581d.tar.bz2 GT5-Unofficial-8feb33087fe272d398d8c8bbe490d47c2853581d.zip |
+ Added ZrCl4, ZrF4, ZrO2 cinter Pellets.
+ Added Zirconium Chloride -> TetraFluoride dehydrator recipe.
+ generateFluid now adds a dust -> fluid recipe.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
-rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index 4133c10baf..bc985749ea 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -246,6 +246,26 @@ public class RECIPES_GREGTECH { 1000); //EU }catch (NullPointerException e){Utils.LOG_INFO("FAILED TO LOAD RECIPES - NULL POINTER SOMEWHERE");} + + //Zirconium Chloride -> TetraFluoride + try { + + CORE.RA.addDehydratorRecipe( + new ItemStack[]{ + ItemUtils.getItemStackOfAmountFromOreDict("dustCookedZrCl4", 9), + ItemUtils.getItemStackOfAmountFromOreDict("cellEmpty", 36) + }, //Item input (Array, up to 2) + FluidUtils.getFluidStack("hydrofluoricacid", 9*144), //Fluid input (slot 1) + null, //Fluid output (slot 2) + new ItemStack[]{ + ItemUtils.getItemStackOfAmountFromOreDict("cellHydrogenChloride", 36), + ItemUtils.getItemStackOfAmountFromOreDict("dustZrF4", 9) + }, //Output Array of Items - Upto 9, + new int[]{0}, + 120*20, //Time in ticks + 500); //EU + + }catch (NullPointerException e){Utils.LOG_INFO("FAILED TO LOAD RECIPES - NULL POINTER SOMEWHERE");} } } @@ -257,7 +277,7 @@ public class RECIPES_GREGTECH { FluidUtils.getFluidStack("molten.li2bef4", 1000), //Fluid output (slot 2) FluidUtils.getFluidStack("molten.uranium233", 500), //Output Array of Items - Upto 9, 16000*20, //Time in ticks - 8000); //EU + 4000); //EU }catch (NullPointerException e){Utils.LOG_INFO("FAILED TO LOAD RECIPES - NULL POINTER SOMEWHERE");} } |