aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/item
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2018-05-13 06:57:14 +1000
committerJordan Byrne <draknyte1@hotmail.com>2018-05-13 06:57:14 +1000
commit6a9785b515ad165f68216e6eabaf98e5dba34c6a (patch)
tree4403df660cea8630924ce659226102c1b604ee77 /src/Java/gtPlusPlus/core/item
parented4981a9de40674ef26e9f82099a1844938f90c8 (diff)
downloadGT5-Unofficial-6a9785b515ad165f68216e6eabaf98e5dba34c6a.tar.gz
GT5-Unofficial-6a9785b515ad165f68216e6eabaf98e5dba34c6a.tar.bz2
GT5-Unofficial-6a9785b515ad165f68216e6eabaf98e5dba34c6a.zip
+ Added Recipes for using Ethylbenzene as an Anti-Knock agent.
+ Added Coal Tars to Semi-Fluid fuel list. % Recipe Tweak for Ethylbenzene use.
Diffstat (limited to 'src/Java/gtPlusPlus/core/item')
-rw-r--r--src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java b/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java
index 724558b9b7..f87c5a9ead 100644
--- a/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java
+++ b/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java
@@ -105,6 +105,9 @@ public class CoalTar {
//Burn the coal gas!
GT_Values.RA.addFuel(ItemUtils.getItemStackOfAmountFromOreDict("cellCoalGas", 1), null, 64, 1);
+ GT_Values.RA.addFuel(ItemUtils.getItemStackOfAmountFromOreDict("cellSulfuricCoalTarOil", 1), null, 32, 3);
+ GT_Values.RA.addFuel(ItemUtils.getItemStackOfAmountFromOreDict("cellCoalTarOil", 1), null, 64, 3);
+ GT_Values.RA.addFuel(ItemUtils.getItemStackOfAmountFromOreDict("cellCoalTar", 1), null, 192, 3);
createRecipes();
@@ -125,10 +128,29 @@ public class CoalTar {
recipeHydrogenPeroxide();
recipeLithiumHydroperoxide();
recipeLithiumPeroxide();
+
+ recipeEthylBenzineFuelsIntoHeavyFuel();
}
+ private static void recipeEthylBenzineFuelsIntoHeavyFuel() {
+ GT_Values.RA.addChemicalRecipe(
+ ItemUtils.getItemStackOfAmountFromOreDict("cellFuel", 9),
+ ItemUtils.getItemStackOfAmountFromOreDict("cellEthylbenzene", 1),
+ null,
+ FluidUtils.getFluidStack("nitrofuel", 7500),
+ ItemUtils.getItemStackOfAmountFromOreDict("cellEmpty", 10),
+ 100);
+ GT_Values.RA.addChemicalRecipe(
+ ItemUtils.getItemStackOfAmountFromOreDict("cellBioDiesel", 9),
+ ItemUtils.getItemStackOfAmountFromOreDict("cellEthylbenzene", 1),
+ null,
+ FluidUtils.getFluidStack("nitrofuel", 3000),
+ ItemUtils.getItemStackOfAmountFromOreDict("cellEmpty", 10),
+ 300);
+ }
+
public static void recipeCreateEthylene(){
FluidStack bioEth1 = FluidUtils.getFluidStack("fluid.bioethanol", 2000);