aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/GoodGenerator/Items/MyMaterial.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/GoodGenerator/Items/MyMaterial.java')
-rw-r--r--src/main/java/GoodGenerator/Items/MyMaterial.java39
1 files changed, 36 insertions, 3 deletions
diff --git a/src/main/java/GoodGenerator/Items/MyMaterial.java b/src/main/java/GoodGenerator/Items/MyMaterial.java
index 1194336ae4..5d0a43679d 100644
--- a/src/main/java/GoodGenerator/Items/MyMaterial.java
+++ b/src/main/java/GoodGenerator/Items/MyMaterial.java
@@ -614,7 +614,7 @@ public class MyMaterial implements Runnable {
subscriptNumbers("??NqTiGaAd??"),
new Werkstoff.Stats(),
Werkstoff.Types.MIXTURE,
- new Werkstoff.GenerationFeatures().disable().onlyDust(),
+ new Werkstoff.GenerationFeatures(),
OffsetID + 53,
TextureSet.SET_METALLIC
);
@@ -771,7 +771,7 @@ public class MyMaterial implements Runnable {
subscriptNumbers("??KeNq") + CharExchanger.shifter(8314) + "??",
new Werkstoff.Stats().setRadioactive(true),
Werkstoff.Types.MIXTURE,
- new Werkstoff.GenerationFeatures().disable().onlyDust(),
+ new Werkstoff.GenerationFeatures(),
OffsetID + 66,
TextureSet.SET_METALLIC
);
@@ -832,7 +832,7 @@ public class MyMaterial implements Runnable {
subscriptNumbers("??Nq*BaIn??"),
new Werkstoff.Stats().setRadioactive(true).setToxic(true),
Werkstoff.Types.MIXTURE,
- new Werkstoff.GenerationFeatures().disable().onlyDust(),
+ new Werkstoff.GenerationFeatures(),
OffsetID + 71,
TextureSet.SET_METALLIC
);
@@ -909,6 +909,39 @@ public class MyMaterial implements Runnable {
new Pair<>(Oxygen, 8)
);
+ public static final Werkstoff naquadahGoo = new Werkstoff(
+ new short[]{0x4c,0x4c,0x4c},
+ "Naquadah Goo",
+ subscriptNumbers("??NqTiGaAd??"),
+ new Werkstoff.Stats(),
+ Werkstoff.Types.MIXTURE,
+ new Werkstoff.GenerationFeatures().disable().addCells(),
+ OffsetID + 78,
+ TextureSet.SET_FLUID
+ );
+
+ public static final Werkstoff enrichedNaquadahGoo = new Werkstoff(
+ new short[]{0x82,0x68,0x68},
+ "Enriched Naquadah Goo",
+ subscriptNumbers("??KeNq") + CharExchanger.shifter(8314) + "??",
+ new Werkstoff.Stats().setRadioactive(true),
+ Werkstoff.Types.MIXTURE,
+ new Werkstoff.GenerationFeatures().disable().addCells(),
+ OffsetID + 79,
+ TextureSet.SET_FLUID
+ );
+
+ public static final Werkstoff naquadriaGoo = new Werkstoff(
+ new short[]{0x4d,0x4d,0x55},
+ "Naquadria Goo",
+ subscriptNumbers("??Nq*BaIn??"),
+ new Werkstoff.Stats().setRadioactive(true).setToxic(true),
+ Werkstoff.Types.MIXTURE,
+ new Werkstoff.GenerationFeatures().disable().addCells(),
+ OffsetID + 80,
+ TextureSet.SET_FLUID
+ );
+
@Override
public void run() { }
}