aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/material
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-10-25 08:10:05 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-10-25 08:10:05 +1000
commite5e1581403e9f6e9d76e362c5e4861b4258af7cc (patch)
treef30b54ca872765b5cf8a339f4a80027d828aee8c /src/Java/gtPlusPlus/core/material
parent361263a1ecc79bca479d16af2fee3f30c20cefcb (diff)
downloadGT5-Unofficial-e5e1581403e9f6e9d76e362c5e4861b4258af7cc.tar.gz
GT5-Unofficial-e5e1581403e9f6e9d76e362c5e4861b4258af7cc.tar.bz2
GT5-Unofficial-e5e1581403e9f6e9d76e362c5e4861b4258af7cc.zip
+ Added some more Machine Casing textures.
+ Added Grisium. % Tweaked the MultiPickaxes. % Did some more work on the Blast Smelter controller. $ Finished work on the Blast Smelter Recipe generation (It's not unique enough yet, apparently) > After numerous re-write attempts at this all morning, the issue remains that recipes overlap. > Recipe output logging for this is still enabled, but it currently only does Osmiridium for a test run. - Removed some useless classes.
Diffstat (limited to 'src/Java/gtPlusPlus/core/material')
-rw-r--r--src/Java/gtPlusPlus/core/material/ALLOY.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/material/ALLOY.java b/src/Java/gtPlusPlus/core/material/ALLOY.java
index ea5b90259f..e2648c667e 100644
--- a/src/Java/gtPlusPlus/core/material/ALLOY.java
+++ b/src/Java/gtPlusPlus/core/material/ALLOY.java
@@ -495,6 +495,22 @@ public final class ALLOY {
new MaterialStack(ELEMENT.CARBON, 50),
new MaterialStack(ELEMENT.NIOBIUM, 50)
});
+
+
+ public static final Material LEAGRISIUM = new Material(
+ "Grisium", //Material Name
+ new short[]{53, 93, 106, 0}, //Material Colour
+ 9001, //Melting Point in C
+ 25000, //Boiling Point in C
+ 96, //Protons
+ 128, //Neutrons
+ true, //Uses Blast furnace?
+ new MaterialStack[]{
+ new MaterialStack(ELEMENT.NICKEL, 25),
+ new MaterialStack(ELEMENT.CHROMIUM, 25),
+ new MaterialStack(ELEMENT.IRON, 25),
+ new MaterialStack(ELEMENT.TUNGSTEN, 25)
+ }); //Material Stacks with Percentage of required elements.
}