diff options
| author | Jordan Byrne <draknyte1@hotmail.com> | 2017-12-03 16:55:31 +1000 |
|---|---|---|
| committer | Jordan Byrne <draknyte1@hotmail.com> | 2017-12-03 16:55:31 +1000 |
| commit | 7d78127c44c1cf374392f85072214c3886bbfb29 (patch) | |
| tree | dc5208a7f362228b93984ef3cc63776ce92eb960 /src/Java/gtPlusPlus/core/recipe | |
| parent | 0df3310f78512ec70f7821d184795eb81a01e80d (diff) | |
| download | GT5-Unofficial-7d78127c44c1cf374392f85072214c3886bbfb29.tar.gz GT5-Unofficial-7d78127c44c1cf374392f85072214c3886bbfb29.tar.bz2 GT5-Unofficial-7d78127c44c1cf374392f85072214c3886bbfb29.zip | |
$ Fixed Ammonium Tetrafluoroberyllate recipe.
$ Rebalanced another few chemical recipes.
- Removed chemical compound tooltips from certain cells.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
| -rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 32 |
1 files changed, 22 insertions, 10 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index 959513e62a..c74603abc1 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -632,6 +632,26 @@ public class RECIPES_GREGTECH { 230); //EU }catch (final NullPointerException e){Utils.LOG_INFO("FAILED TO LOAD RECIPES - NULL POINTER SOMEWHERE");} + + //Be(OH)2 + 2 (NH4)HF2 → (NH4)2BeF4 + 2 H2O + try { + CORE.RA.addDehydratorRecipe( + new ItemStack[]{ + ItemUtils.getItemStackOfAmountFromOreDict("cellBerylliumHydroxide", 2), + ItemUtils.getItemStackOfAmountFromOreDict("cellAmmoniumBifluoride", 4) + }, //Item input (Array, up to 2) + null, //Fluid input (slot 1) + FluidUtils.getFluidStack("ammoniumtetrafluoroberyllate", 6000), //Fluid output (slot 2) + new ItemStack[]{ + ItemUtils.getItemStackOfAmountFromOreDict("cellWater", 4), + ItemUtils.getItemStackOfAmountFromOreDict("cellEmpty", 2) + }, //Output Array of Items - Upto 9, + new int[]{0, 0, 0}, + 32*20, //Time in ticks + 64); //EU + + + }catch (final NullPointerException e){Utils.LOG_INFO("FAILED TO LOAD RECIPES - NULL POINTER SOMEWHERE");} //(NH4)2BeF4 → 2 NH3 + 2 HF + BeF2 try { @@ -648,7 +668,7 @@ public class RECIPES_GREGTECH { }, //Output Array of Items - Upto 9, new int[]{0, 0, 0}, 5*60*20, //Time in ticks - 120); //EU + 120); //EU }catch (final NullPointerException e){Utils.LOG_INFO("FAILED TO LOAD RECIPES - NULL POINTER SOMEWHERE");} @@ -1002,17 +1022,9 @@ public class RECIPES_GREGTECH { ItemUtils.getItemStackOfAmountFromOreDict("dustBeryllium", 7), GT_Values.NI, FluidUtils.getFluidStack("hydroxide", 1000), - FluidUtils.getFluidStack("berylliumhydroxide", 2008), + FluidUtils.getFluidStack("berylliumhydroxide", 2000), GT_Values.NI, 8*20); - //Ammonium Tetrafluoroberyllate - GT_Values.RA.addChemicalRecipe( - ItemUtils.getItemStackOfAmountFromOreDict("cellBerylliumHydroxide", 1), - ItemUtils.getItemStackOfAmountFromOreDict("cellAmmoniumBifluoride", 1), - GT_Values.NF, - FluidUtils.getFluidStack("ammoniumtetrafluoroberyllate", 2000), - ItemUtils.getItemStackOfAmountFromOreDict("cellEmpty", 2), - 32*20); } private static void blastFurnaceRecipes(){ |
