From e7ac28da98670e475b0b10f6a4e929330ca6596d Mon Sep 17 00:00:00 2001 From: unknown Date: Sun, 13 Feb 2022 09:55:13 +1100 Subject: Fix disstank, add textures to multis --- .../common/register/WerkstoffMaterialPool.java | 45 +++++++++++++++++++--- 1 file changed, 39 insertions(+), 6 deletions(-) (limited to 'src/main/java/com/elisis/gtnhlanth/common/register/WerkstoffMaterialPool.java') diff --git a/src/main/java/com/elisis/gtnhlanth/common/register/WerkstoffMaterialPool.java b/src/main/java/com/elisis/gtnhlanth/common/register/WerkstoffMaterialPool.java index 39d59309b4..e653d1b52c 100644 --- a/src/main/java/com/elisis/gtnhlanth/common/register/WerkstoffMaterialPool.java +++ b/src/main/java/com/elisis/gtnhlanth/common/register/WerkstoffMaterialPool.java @@ -506,18 +506,30 @@ public class WerkstoffMaterialPool implements Runnable { subscriptNumbers("KMnO4"), new Werkstoff.Stats(), Werkstoff.Types.COMPOUND, - new Werkstoff.GenerationFeatures().disable().addCells(), + new Werkstoff.GenerationFeatures().disable().onlyDust(), offsetID + 43, + TextureSet.SET_DULL + ); + + public static final Werkstoff PotassiumPermanganateSolution = new Werkstoff( + new short[] {165, 50, 138}, + "Potassium Permanganate Solution", + subscriptNumbers("KMnO4"), + new Werkstoff.Stats(), + Werkstoff.Types.COMPOUND, + new Werkstoff.GenerationFeatures().disable().addCells(), + offsetID + 44, TextureSet.SET_FLUID ); + public static final Werkstoff SeaweedByproducts = new Werkstoff( new short[] {125, 50, 138}, "Seaweed Byproducts", new Werkstoff.Stats(), Werkstoff.Types.MIXTURE, new Werkstoff.GenerationFeatures().disable().addCells(), - offsetID + 44, + offsetID + 45, TextureSet.SET_FLUID ); @@ -527,7 +539,7 @@ public class WerkstoffMaterialPool implements Runnable { new Werkstoff.Stats(), Werkstoff.Types.MIXTURE, new Werkstoff.GenerationFeatures().disable().addCells(), - offsetID + 45, + offsetID + 46, TextureSet.SET_FLUID ); @@ -538,7 +550,7 @@ public class WerkstoffMaterialPool implements Runnable { new Werkstoff.Stats(), Werkstoff.Types.COMPOUND, new Werkstoff.GenerationFeatures().disable().onlyDust(), - offsetID + 46, + offsetID + 47, TextureSet.SET_DULL ); @@ -549,7 +561,7 @@ public class WerkstoffMaterialPool implements Runnable { new Werkstoff.Stats(), Werkstoff.Types.COMPOUND, new Werkstoff.GenerationFeatures().disable().onlyDust(), - offsetID + 47, + offsetID + 48, TextureSet.SET_DULL ); @@ -560,7 +572,7 @@ public class WerkstoffMaterialPool implements Runnable { new Werkstoff.Stats(), Werkstoff.Types.MIXTURE, new Werkstoff.GenerationFeatures().disable().onlyDust(), - offsetID + 48, + offsetID + 49, TextureSet.SET_DULL ); @@ -983,6 +995,27 @@ public class WerkstoffMaterialPool implements Runnable { ); + public static final Werkstoff MagnesiumPeroxide = new Werkstoff( + new short[] {255, 255, 255}, + "Magnesium Peroxide", + new Werkstoff.Stats(), + Werkstoff.Types.COMPOUND, + new Werkstoff.GenerationFeatures().disable().onlyDust(), + offsetID3 + 13, + TextureSet.SET_METALLIC + ); + + public static final Werkstoff PotassiumChlorate = new Werkstoff( + new short[] {255, 255, 255}, + "Potassium Chlorate", + new Werkstoff.Stats(), + Werkstoff.Types.COMPOUND, + new Werkstoff.GenerationFeatures().disable().onlyDust().addMolten(), + offsetID3 + 14, + TextureSet.SET_DULL + ); + + public static void runInit() { addSubTags(); -- cgit