diff options
author | GlodBlock <1356392126@qq.com> | 2022-12-06 02:10:42 +0800 |
---|---|---|
committer | GlodBlock <1356392126@qq.com> | 2022-12-06 02:10:42 +0800 |
commit | aa77f87bc8d28b9471c2439c01b1e16bb77c7de6 (patch) | |
tree | 0ab6567343a44ea7272471f8992139fb47bc5785 | |
parent | 6ff4f535d31a34d083c8130725d5ef3b647ea626 (diff) | |
download | GT5-Unofficial-aa77f87bc8d28b9471c2439c01b1e16bb77c7de6.tar.gz GT5-Unofficial-aa77f87bc8d28b9471c2439c01b1e16bb77c7de6.tar.bz2 GT5-Unofficial-aa77f87bc8d28b9471c2439c01b1e16bb77c7de6.zip |
enable the mid chemical recipe in rocket fuel
-rw-r--r-- | src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java b/src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java index 99a5653f21..06b48131dc 100644 --- a/src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java +++ b/src/main/java/com/elisis/gtnhlanth/loader/BotRecipes.java @@ -1,17 +1,9 @@ package com.elisis.gtnhlanth.loader; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.LMP103S; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.MonomethylhydrazineFuelMix; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.SodiumTungstate; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.TertButylbenzene; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.TungstenTrioxide; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.TungsticAcid; -import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.UnsymmetricalDimethylhydrazineFuelMix; -import static gregtech.api.enums.OrePrefixes.cell; -import static gregtech.api.enums.OrePrefixes.dust; -import static gregtech.api.enums.OrePrefixes.ingotHot; -import static gregtech.api.enums.OrePrefixes.item; +import static com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool.*; +import static gregtech.api.enums.OrePrefixes.*; +import com.elisis.gtnhlanth.common.register.BotWerkstoffMaterialPool; import com.github.bartimaeusnek.bartworks.system.material.WerkstoffLoader; import cpw.mods.fml.common.Loader; import gregtech.api.enums.GT_Values; @@ -20,6 +12,7 @@ import gregtech.api.util.GT_ModHandler; import gregtech.api.util.GT_OreDictUnificator; import gregtech.api.util.GT_Recipe; import gregtech.api.util.GT_Utility; +import ic2.core.Ic2Items; import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; @@ -139,7 +132,7 @@ public class BotRecipes { // rocket fuels // LMP103S // 2Cl + CO = COCl2 - /*GT_Values.RA.addChemicalRecipe( + GT_Values.RA.addChemicalRecipe( Materials.CarbonMonoxide.getCells(1), C2, Materials.Chlorine.getGas(2000), @@ -273,6 +266,7 @@ public class BotRecipes { 1920); // LMP-103S + /* GT_Values.RA.addMultiblockChemicalRecipe( new ItemStack[] {C24}, new FluidStack[] { @@ -285,6 +279,7 @@ public class BotRecipes { null, 1200, 1920); + */ // P4O10 + 2HNO3 + 5H2O = 4H3PO4 + N2O5 GT_Values.RA.addChemicalRecipe( @@ -485,6 +480,7 @@ public class BotRecipes { 80, 16000); + /* GT_Values.RA.addMixerRecipe( AmmoniumDinitramide.get(cell, 1), C1, @@ -507,6 +503,7 @@ public class BotRecipes { cells, 20, 480); + */ cells.stackSize = 1; // unsimetrical hydazine @@ -649,6 +646,7 @@ public class BotRecipes { 20, 122_880); + /* cells.stackSize = 2; GT_Values.RA.addMixerRecipe( UnsymmetricalDimethylhydrazine.get(cell, 2), @@ -671,7 +669,8 @@ public class BotRecipes { UnsymmetricalDimethylhydrazineFuelMix.getFluidOrGas(3000), cells, 10, - 120);*/ + 120); + */ } public static void addFuels() { |