diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-07-04 13:01:17 +1000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-07-04 13:01:17 +1000 |
commit | 2dbaa6bb14ded47754d08c722513857760d399df (patch) | |
tree | 29e8fe1e1796e10a899338b432ff71fa38c4432f /src/Java | |
parent | 86c73c525ea14fe2da1c5f41abe82c303437d91d (diff) | |
download | GT5-Unofficial-2dbaa6bb14ded47754d08c722513857760d399df.tar.gz GT5-Unofficial-2dbaa6bb14ded47754d08c722513857760d399df.tar.bz2 GT5-Unofficial-2dbaa6bb14ded47754d08c722513857760d399df.zip |
+ More work on Hydrogen peroxide production chain.
Diffstat (limited to 'src/Java')
-rw-r--r-- | src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java b/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java index f3473ae45e..537c148843 100644 --- a/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java +++ b/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java @@ -7,6 +7,7 @@ import gregtech.api.enums.OrePrefixes; import gregtech.api.util.GT_OreDictUnificator; import gregtech.common.GT_Proxy; import gtPlusPlus.core.lib.CORE; +import gtPlusPlus.core.util.Utils; import gtPlusPlus.core.util.fluid.FluidUtils; import gtPlusPlus.core.util.item.ItemUtils; @@ -14,9 +15,28 @@ public class CoalTar { public static void run(){ + //Ethanol + // v - Dehydrate cells to remove water + //Create Ethylene + FluidUtils.generateFluidNonMolten("Ethylene", "Ethylene", -103, new short[]{255, 255, 255, 100}, null, null); + + //Create Benzene - (Toluene + Hydrogen | 95% Benzene / 5% methane) + FluidUtils.generateFluidNonMolten("Benzene", "Benzene", 81, new short[]{150, 75, 0, 100}, null, null); + //Create Ethylbenzene - Ethylbenzene is produced in on a large scale by combining benzene and ethylene in an acid-catalyzed chemical reaction + //Use Chemical Reactor FluidUtils.generateFluidNonMolten("Ethylbenzene", "Ethylbenzene", 136, new short[]{255, 255, 255, 100}, null, null); - //This gets used later + + + + + + + + + + + //Create Coal Tar FluidUtils.generateFluidNonMolten("CoalTar", "Coal Tar", 450, new short[]{32, 32, 32, 100}, null, null); @@ -44,6 +64,11 @@ public class CoalTar { // v - Dehydrate at 180C+ //Create Phthalic Anhydride + ItemUtils.generateSpecialUseDusts("PhthalicAnhydride", "Phthalic Anhydride", Utils.rgbtoHexValue(175, 175, 175)); + + + //Create 2-Ethylanthraquinone + FluidUtils.generateFluidNonMolten("2Ethylanthraquinone", "2-Ethylanthraquinone", 415, new short[]{227, 255, 159, 100}, null, null); |