diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-07-29 17:53:41 +0100 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-07-29 17:53:41 +0100 |
commit | 9bb2f0891abbd44a738884ae8b05382a67e03f11 (patch) | |
tree | f2f7e4bbbfb8f36e97ffb008982fa936baa2db54 /src/Java/gtPlusPlus/core/item | |
parent | eae222d8ec8f446c4e8c55a996a2780753b958f6 (diff) | |
download | GT5-Unofficial-9bb2f0891abbd44a738884ae8b05382a67e03f11.tar.gz GT5-Unofficial-9bb2f0891abbd44a738884ae8b05382a67e03f11.tar.bz2 GT5-Unofficial-9bb2f0891abbd44a738884ae8b05382a67e03f11.zip |
$ Improved recipes for Hydrogen Peroxide & Lithium Hydroperoxide. Fixes #509.
Diffstat (limited to 'src/Java/gtPlusPlus/core/item')
-rw-r--r-- | src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java | 33 |
1 files changed, 14 insertions, 19 deletions
diff --git a/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java b/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java index e060723afd..46837be310 100644 --- a/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java +++ b/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java @@ -286,39 +286,34 @@ public class CoalTar extends ItemPackage { } - private static void recipeHydrogenPeroxide() { - GT_Values.RA.addElectrolyzerRecipe( + private static void recipeHydrogenPeroxide() { + + CORE.RA.addChemicalRecipe( GT_ModHandler.getAirCell(15), ItemUtils.getItemStackOfAmountFromOreDict("cell2Ethylanthrahydroquinone", 5), + 20, FluidUtils.getFluidStack("fluid.anthracene", 50), FluidUtils.getFluidStack("fluid.2ethylanthrahydroquinone", 4450), ItemUtils.getItemStackOfAmountFromOreDict("cellHydrogenPeroxide", 2), - ItemUtils.getItemStackOfAmountFromOreDict("cellEmpty", 18), - null, - null, - null, - null, - new int[]{10000, 10000}, - 20*90, - 240); + CI.emptyCells(18), + 20*30, + 240); + } private static void recipeLithiumHydroperoxide() { - GT_Values.RA.addElectrolyzerRecipe( + + CORE.RA.addChemicalRecipe( ItemUtils.getItemStackOfAmountFromOreDict("dustLithiumHydroxide", 7), ItemUtils.getItemStackOfAmountFromOreDict("cellHydrogenPeroxide", 1), + 20, FluidUtils.getFluidStack("fluid.cellhydrogenperoxide", 50), null, ItemUtils.getItemStackOfAmountFromOreDict("dustLithiumHydroperoxide", 14), - ItemUtils.getItemStackOfAmountFromOreDict("cellEmpty", 1), - null, - null, - null, - null, - new int[]{10000, 10000}, - 20*60, - 240); + CI.emptyCells(1), + 20*30, + 240); } |