diff options
author | botn365 <42187820+botn365@users.noreply.github.com> | 2020-01-13 20:06:41 +0100 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2020-01-13 19:06:41 +0000 |
commit | 502fc2d8887189f0003361d09c71985c054010ea (patch) | |
tree | a82147155ecf327e64cac057c33c603df637fc59 /src/Java/gtPlusPlus/core/recipe | |
parent | bc630f3a7738e4a495cdc1672949d934f76838e3 (diff) | |
download | GT5-Unofficial-502fc2d8887189f0003361d09c71985c054010ea.tar.gz GT5-Unofficial-502fc2d8887189f0003361d09c71985c054010ea.tar.bz2 GT5-Unofficial-502fc2d8887189f0003361d09c71985c054010ea.zip |
$ Minor fixes to balance (#605)
+ Added TT Dynamo support to the LRE.
% Made Nitinol processing faster.
% Removed double efficiency bonus from single block Rocket Engines.
% Changed Efficiency drop-rate on LRE.
% Removed cap on LRE power production.
$ Changed pikyonium tier back to ZPM
$ Fixed Output buffering check on Multiblocks.
$ Fixed LRE disabled if too little fuel.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
-rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index cd02a297a7..74c8ce4202 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -646,6 +646,18 @@ public class RECIPES_GREGTECH { new int[] {10000}, //Output Chance 20 * 120, 30720); + + //NITINOL_60 + CORE.RA.addBlastSmelterRecipe( + new ItemStack[] { + ELEMENT.getInstance().TITANIUM.getDust(3), + ELEMENT.getInstance().NICKEL.getDust(2) + }, + ALLOY.NITINOL_60.getFluid(20 * 144), + 0, + 20 * 75, + 7680); + |