diff options
author | GlodBlock <1356392126@qq.com> | 2021-05-04 14:09:03 +0800 |
---|---|---|
committer | GlodBlock <1356392126@qq.com> | 2021-05-04 14:09:03 +0800 |
commit | dc008e9fd230a28c0499ae17bc0f29b2a96cbeed (patch) | |
tree | de5a0a34b8bb53fa586b6ae1bc9ea7087edea83e /src/main/java/GoodGenerator/Items | |
parent | 2cccbb1853a6b0f6ca6cc0fcb0dd7585bbb5280e (diff) | |
download | GT5-Unofficial-dc008e9fd230a28c0499ae17bc0f29b2a96cbeed.tar.gz GT5-Unofficial-dc008e9fd230a28c0499ae17bc0f29b2a96cbeed.tar.bz2 GT5-Unofficial-dc008e9fd230a28c0499ae17bc0f29b2a96cbeed.zip |
add recipes for Nq fuel line
Diffstat (limited to 'src/main/java/GoodGenerator/Items')
-rw-r--r-- | src/main/java/GoodGenerator/Items/MyMaterial.java | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/src/main/java/GoodGenerator/Items/MyMaterial.java b/src/main/java/GoodGenerator/Items/MyMaterial.java index f5fa273c91..2d8ec04361 100644 --- a/src/main/java/GoodGenerator/Items/MyMaterial.java +++ b/src/main/java/GoodGenerator/Items/MyMaterial.java @@ -316,7 +316,7 @@ public class MyMaterial implements Runnable { new short[]{93,219,0}, "Naquadah Gas", "Who need it?", - new Werkstoff.Stats().setToxic(true).setRadioactive(true), + new Werkstoff.Stats().setToxic(true).setRadioactive(true).setGas(true), Werkstoff.Types.COMPOUND, new Werkstoff.GenerationFeatures().disable().addCells(), 31026, @@ -350,7 +350,7 @@ public class MyMaterial implements Runnable { public static final Werkstoff antimonyTrichloride = new Werkstoff( new short[]{0x0f,0xdc,0x34}, - "Antimony Trichloride", + "Antimony Trichloride Solution", subscriptNumbers("SbCl3"), new Werkstoff.Stats(), Werkstoff.Types.COMPOUND, @@ -359,6 +359,17 @@ public class MyMaterial implements Runnable { TextureSet.SET_FLUID ); + public static final Werkstoff antimonyPentachlorideSolution = new Werkstoff( + new short[]{0x15,0x93,0x2c}, + "Antimony Pentachloride Solution", + subscriptNumbers("SbCl5"), + new Werkstoff.Stats(), + Werkstoff.Types.COMPOUND, + new Werkstoff.GenerationFeatures().disable().addCells(), + 31030, + TextureSet.SET_FLUID + ); + public static final Werkstoff antimonyPentachloride = new Werkstoff( new short[]{0x15,0x93,0x2c}, "Antimony Pentachloride", @@ -366,7 +377,7 @@ public class MyMaterial implements Runnable { new Werkstoff.Stats(), Werkstoff.Types.COMPOUND, new Werkstoff.GenerationFeatures().disable().addCells(), - 31030, + 31037, TextureSet.SET_FLUID ); @@ -414,7 +425,7 @@ public class MyMaterial implements Runnable { TextureSet.SET_FLUID ); - public static final Werkstoff NaquadahEmulsion = new Werkstoff( + public static final Werkstoff naquadahEmulsion = new Werkstoff( new short[]{0x4a,0x46,0x45}, "Naquadah Emulsion", "??Nq??", @@ -425,7 +436,7 @@ public class MyMaterial implements Runnable { TextureSet.SET_FLUID ); - public static final Werkstoff NaquadahSolution = new Werkstoff( + public static final Werkstoff naquadahSolution = new Werkstoff( new short[]{0x84,0x81,0x80}, "Naquadah Solution", "~Nq~", |