diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-09-27 21:01:05 +1000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-09-27 21:01:05 +1000 |
commit | b19b9f631889fbf7591d87a02848cc9fc53d5a0e (patch) | |
tree | 8aa576929e0141b9c936752b571e3c9695caaa6a /src/Java/gtPlusPlus/core | |
parent | ff02285d73ddbbeac68d5ac14815b0a0fc688a21 (diff) | |
download | GT5-Unofficial-b19b9f631889fbf7591d87a02848cc9fc53d5a0e.tar.gz GT5-Unofficial-b19b9f631889fbf7591d87a02848cc9fc53d5a0e.tar.bz2 GT5-Unofficial-b19b9f631889fbf7591d87a02848cc9fc53d5a0e.zip |
$ Fixed two HSS recipes.
+ Recipes requiring coils above NiChrome no longer have their recipe added to the Alloy Blast smelter in GTNH.
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index f7830d2156..c15b65631a 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -161,7 +161,7 @@ public class RECIPES_GREGTECH { //HSS-G CORE.RA.addBlastSmelterRecipe( new ItemStack[]{ - ItemUtils.getGregtechCircuit(4), + ItemUtils.getGregtechCircuit(14), ItemUtils.getItemStackOfAmountFromOreDict("dustTungstenSteel", 5), ItemUtils.getItemStackOfAmountFromOreDict("dustVanadium", 1), ItemUtils.getItemStackOfAmountFromOreDict("dustMolybdenum", 2), @@ -172,10 +172,25 @@ public class RECIPES_GREGTECH { MathUtils.findPercentageOfInt(450*20, 80), 120); + //HSS-G + CORE.RA.addBlastSmelterRecipe( + new ItemStack[]{ + ItemUtils.getGregtechCircuit(5), + ItemUtils.getItemStackOfAmountFromOreDict("dustTungsten", 5), + ItemUtils.getItemStackOfAmountFromOreDict("dustSteel", 5), + ItemUtils.getItemStackOfAmountFromOreDict("dustVanadium", 2), + ItemUtils.getItemStackOfAmountFromOreDict("dustMolybdenum", 4), + ItemUtils.getItemStackOfAmountFromOreDict("dustChrome", 2) + }, + FluidUtils.getFluidStack("molten.hssg", 18*144), + 0, + MathUtils.findPercentageOfInt(900*20, 80), + 120); + //HSS-E CORE.RA.addBlastSmelterRecipe( new ItemStack[]{ - ItemUtils.getGregtechCircuit(4), + ItemUtils.getGregtechCircuit(14), ItemUtils.getItemStackOfAmountFromOreDict("dustHSSG", 6), ItemUtils.getItemStackOfAmountFromOreDict("dustCobalt", 1), ItemUtils.getItemStackOfAmountFromOreDict("dustSilicon", 1), |