diff options
author | unknown <gtandemmodding@gmail.com> | 2022-02-13 09:55:13 +1100 |
---|---|---|
committer | unknown <gtandemmodding@gmail.com> | 2022-02-13 09:55:13 +1100 |
commit | e7ac28da98670e475b0b10f6a4e929330ca6596d (patch) | |
tree | b40514eb89e842109dfbbc4a2ec7080e79980385 /src/main/java/com/elisis/gtnhlanth/common/register/WerkstoffMaterialPool.java | |
parent | 2cfe77cea364a497b2a47869dcd06bbe7a88162f (diff) | |
download | GT5-Unofficial-e7ac28da98670e475b0b10f6a4e929330ca6596d.tar.gz GT5-Unofficial-e7ac28da98670e475b0b10f6a4e929330ca6596d.tar.bz2 GT5-Unofficial-e7ac28da98670e475b0b10f6a4e929330ca6596d.zip |
Fix disstank, add textures to multis
Diffstat (limited to 'src/main/java/com/elisis/gtnhlanth/common/register/WerkstoffMaterialPool.java')
-rw-r--r-- | src/main/java/com/elisis/gtnhlanth/common/register/WerkstoffMaterialPool.java | 45 |
1 files changed, 39 insertions, 6 deletions
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();
|