diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-06-27 02:14:37 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-06-27 02:14:37 +1000 |
commit | 8013e5e085902af21367647d74bc45063bbbeab3 (patch) | |
tree | 284ead2868c48f9fc674bc690d925456a4f1e28e /src/Java/gtPlusPlus/core | |
parent | 8b5a78e84d75a294c0d42afc8662d1fa9177da93 (diff) | |
download | GT5-Unofficial-8013e5e085902af21367647d74bc45063bbbeab3.tar.gz GT5-Unofficial-8013e5e085902af21367647d74bc45063bbbeab3.tar.bz2 GT5-Unofficial-8013e5e085902af21367647d74bc45063bbbeab3.zip |
$ Added missing LCR recipes for Styrene.
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 40 |
1 files changed, 33 insertions, 7 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index ba65ef0c97..e4f6f0de89 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -42,7 +42,7 @@ public class RECIPES_GREGTECH { chemicalReactorRecipes(); dehydratorRecipes(); blastFurnaceRecipes(); - //lftrRecipes(); + largeChemReactorRecipes(); fissionFuelRecipes(); autoclaveRecipes(); compressorRecipes(); @@ -490,17 +490,43 @@ public class RECIPES_GREGTECH { // Makes Styrene CORE.RA.addDehydratorRecipe( CI.emptyCells(3), // Item Input - FluidUtils.getFluidStack("fluid.ethylbenzene", 1000), // Fluid / - new ItemStack[] { ItemUtils.getItemStackOfAmountFromOreDict("cellStyrene", 1), + FluidUtils.getFluidStack("fluid.ethylbenzene", 1000), // Fluid + new ItemStack[] { + ItemUtils.getItemStackOfAmountFromOreDict("cellStyrene", 1), ItemUtils.getItemStackOfAmountFromOreDict("cellHydrogen", 2) }, // Output 3 * 20, // Time in ticks 30); // EU } - @Deprecated - private static void lftrRecipes() { - + private static void largeChemReactorRecipes() { + //Styrene + GT_Values.RA.addMultiblockChemicalRecipe( + new ItemStack[]{GT_Utility.getIntegratedCircuit(24)}, + new FluidStack[]{ + FluidUtils.getFluidStack("fluid.ethylbenzene", 1000) + }, + new FluidStack[]{ + Materials.Styrene.getFluid(1000), + Materials.Hydrogen.getGas(2000) + }, + null, + 30, + 30); + //Short-cut Styrene + GT_Values.RA.addMultiblockChemicalRecipe( + new ItemStack[]{GT_Utility.getIntegratedCircuit(24)}, + new FluidStack[]{ + Materials.Ethylene.getGas(500), + Materials.Benzene.getFluid(500) + }, + new FluidStack[]{ + Materials.Styrene.getFluid(500), + Materials.Hydrogen.getGas(1000) + }, + null, + 240, + 120); } private static void fissionFuelRecipes() { @@ -1084,7 +1110,7 @@ public class RECIPES_GREGTECH { FluidUtils.getFluidStack("oxygen", 8000), null, CI.emptyCells(1), ALLOY.HG1223.getDust(16), null, null, 30 * 20, 500); - + } } |