diff options
Diffstat (limited to 'src/main/java/GoodGenerator/Items/MyMaterial.java')
-rw-r--r-- | src/main/java/GoodGenerator/Items/MyMaterial.java | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/main/java/GoodGenerator/Items/MyMaterial.java b/src/main/java/GoodGenerator/Items/MyMaterial.java index 2cc78a6bf3..0b18deca8b 100644 --- a/src/main/java/GoodGenerator/Items/MyMaterial.java +++ b/src/main/java/GoodGenerator/Items/MyMaterial.java @@ -584,6 +584,28 @@ public class MyMaterial implements Runnable { OffsetID + 50, TextureSet.SET_FLUID ); + + public static final Werkstoff zincChloride = new Werkstoff( + new short[]{0x73,0xa5,0xfc}, + "Zinc Chloride", + subscriptNumbers("ZnCl2"), + new Werkstoff.Stats(), + Werkstoff.Types.COMPOUND, + new Werkstoff.GenerationFeatures().disable().onlyDust(), + OffsetID + 51, + TextureSet.SET_SHINY + ); + + public static final Werkstoff zincThoriumAlloy = new Werkstoff( + new short[]{0x12,0x34,0x56}, + "Zn-Th Alloy", + subscriptNumbers("ZnTh"), + new Werkstoff.Stats(), + Werkstoff.Types.COMPOUND, + new Werkstoff.GenerationFeatures().disable().onlyDust().addMolten().addMetalItems(), + OffsetID + 52, + TextureSet.SET_SHINY + ); @Override public void run() { } } |