diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2017-04-29 22:55:45 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-04-29 22:55:45 +1000 |
commit | c2f45087c471dc57ef08bf3b22e98c619960daad (patch) | |
tree | e2924be257b6f12eacc67cfa6d80a423048043cb /src/Java/gtPlusPlus/core/material/ALLOY.java | |
parent | 862066ee9009f877456982867f1dab5f53c57061 (diff) | |
download | GT5-Unofficial-c2f45087c471dc57ef08bf3b22e98c619960daad.tar.gz GT5-Unofficial-c2f45087c471dc57ef08bf3b22e98c619960daad.tar.bz2 GT5-Unofficial-c2f45087c471dc57ef08bf3b22e98c619960daad.zip |
+ Added Eglin Steel.
+ Added Recipes for the Industrial Sieve & Casings.
% Tweaked Blast Furnace EU cost for all materials.
Diffstat (limited to 'src/Java/gtPlusPlus/core/material/ALLOY.java')
-rw-r--r-- | src/Java/gtPlusPlus/core/material/ALLOY.java | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/material/ALLOY.java b/src/Java/gtPlusPlus/core/material/ALLOY.java index 550a23b4c5..027cacbc29 100644 --- a/src/Java/gtPlusPlus/core/material/ALLOY.java +++ b/src/Java/gtPlusPlus/core/material/ALLOY.java @@ -522,7 +522,22 @@ public final class ALLOY { new MaterialStack(ELEMENT.getInstance().HYDROGEN, 10) }); //Material Stacks with Percentage of required elements. - + public static final Material EGLIN_STEEL = new Material( + "Eglin Steel", //Material Name + MaterialState.SOLID, //State + new short[]{139,69,19, 0}, //Material Colour + 1048, //Melting Point in C + 1973, //Boiling Point in C + ((ALLOY.STEEL.getProtons()*20)+(ELEMENT.getInstance().NICKEL.getProtons()*5)+(ELEMENT.getInstance().SILICON.getProtons()*1)+(ELEMENT.getInstance().ALUMINIUM.getProtons()*4))/30, //Protons + ((ALLOY.STEEL.getNeutrons()*20)+(ELEMENT.getInstance().NICKEL.getNeutrons()*5)+(ELEMENT.getInstance().SILICON.getNeutrons()*1)+(ELEMENT.getInstance().ALUMINIUM.getNeutrons()*4))/30, //Neutrons + true, //Uses Blast furnace? + //Material Stacks with Percentage of required elements. + new MaterialStack[]{ + new MaterialStack(ALLOY.STEEL, 20), + new MaterialStack(ELEMENT.getInstance().SILICON, 1), + new MaterialStack(ELEMENT.getInstance().NICKEL, 5), + new MaterialStack(ELEMENT.getInstance().ALUMINIUM, 4), + }); |