aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/goodgenerator/items/MyMaterial.java
diff options
context:
space:
mode:
authorYang Xizhi <60341015+GlodBlock@users.noreply.github.com>2022-07-04 20:55:39 +0800
committerGitHub <noreply@github.com>2022-07-04 19:55:39 +0700
commit8ff582a8b874b9acf26adb250ebfc70f392796db (patch)
tree1d315abe7a7eca982a417a01c98a59567514ede8 /src/main/java/goodgenerator/items/MyMaterial.java
parenta41871af4ab006dd00b8611873894a43e914ec38 (diff)
downloadGT5-Unofficial-8ff582a8b874b9acf26adb250ebfc70f392796db.tar.gz
GT5-Unofficial-8ff582a8b874b9acf26adb250ebfc70f392796db.tar.bz2
GT5-Unofficial-8ff582a8b874b9acf26adb250ebfc70f392796db.zip
Standardization of GG Chemical Recipes (#49)
* recipes * some fix * fix * more fox
Diffstat (limited to 'src/main/java/goodgenerator/items/MyMaterial.java')
-rw-r--r--src/main/java/goodgenerator/items/MyMaterial.java23
1 files changed, 20 insertions, 3 deletions
diff --git a/src/main/java/goodgenerator/items/MyMaterial.java b/src/main/java/goodgenerator/items/MyMaterial.java
index 0da646cc55..87b4dce439 100644
--- a/src/main/java/goodgenerator/items/MyMaterial.java
+++ b/src/main/java/goodgenerator/items/MyMaterial.java
@@ -3,6 +3,7 @@ package goodgenerator.items;
import goodgenerator.util.CharExchanger;
import com.github.bartimaeusnek.bartworks.system.material.Werkstoff;
import com.github.bartimaeusnek.bartworks.system.material.WerkstoffLoader;
+import gregtech.api.enums.Materials;
import gregtech.api.enums.TextureSet;
import com.github.bartimaeusnek.bartworks.util.Pair;
@@ -343,7 +344,7 @@ public class MyMaterial implements Runnable {
new short[]{0xeb,0xbc,0x2f},
"Ether",
subscriptNumbers("CH3CH2OCH2CH3"),
- new Werkstoff.Stats(),
+ new Werkstoff.Stats().setElektrolysis(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
OffsetID + 28,
@@ -596,7 +597,9 @@ public class MyMaterial implements Runnable {
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
OffsetID + 51,
- TextureSet.SET_SHINY
+ TextureSet.SET_SHINY,
+ new Pair<>(Zinc, 1),
+ new Pair<>(Chlorine, 2)
);
public static final Werkstoff zincThoriumAlloy = new Werkstoff(
@@ -728,7 +731,7 @@ public class MyMaterial implements Runnable {
new short[]{0x33,0x33,0x33},
"Naquadahine",
subscriptNumbers("NqO2"),
- new Werkstoff.Stats().setElektrolysis(true),
+ new Werkstoff.Stats().setElektrolysis(false),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().onlyDust(),
OffsetID + 62,
@@ -1279,6 +1282,20 @@ public class MyMaterial implements Runnable {
TextureSet.SET_FLUID
);
+ public static final Werkstoff magnesiumSulphate = new Werkstoff(
+ new short[]{0x87,0x74,0x91},
+ "Magnesium Sulphate",
+ subscriptNumbers("MgSO4"),
+ new Werkstoff.Stats().setElektrolysis(true),
+ Werkstoff.Types.COMPOUND,
+ new Werkstoff.GenerationFeatures().disable().onlyDust(),
+ OffsetID + 107,
+ TextureSet.SET_DULL,
+ new Pair<>(Magnesium, 1),
+ new Pair<>(Sulfur, 1),
+ new Pair<>(Oxygen, 4)
+ );
+
@Override
public void run() { }
}