diff options
author | GlodBlock <1356392126@qq.com> | 2021-08-26 21:17:59 +0800 |
---|---|---|
committer | GlodBlock <1356392126@qq.com> | 2021-08-26 21:17:59 +0800 |
commit | 16ed7ace0dc69f0fb67233cd1a5846d638611a98 (patch) | |
tree | 6f7509dc5098eaeee27ae81a1a29daaaf76624a5 /src/main/java/GoodGenerator/Items | |
parent | 7e1f93f7346d0035e69a0fade3d53338308a0252 (diff) | |
download | GT5-Unofficial-16ed7ace0dc69f0fb67233cd1a5846d638611a98.tar.gz GT5-Unofficial-16ed7ace0dc69f0fb67233cd1a5846d638611a98.tar.bz2 GT5-Unofficial-16ed7ace0dc69f0fb67233cd1a5846d638611a98.zip |
add Naquadah Line
Diffstat (limited to 'src/main/java/GoodGenerator/Items')
-rw-r--r-- | src/main/java/GoodGenerator/Items/MyMaterial.java | 39 |
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() { } } |