aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/GoodGenerator
diff options
context:
space:
mode:
authorGlodBlock <60341015+GlodBlock@users.noreply.github.com>2021-04-18 23:08:57 +0800
committerGitHub <noreply@github.com>2021-04-18 23:08:57 +0800
commit9705e977fb9efc8da7138aac716a72c50def5f48 (patch)
treeb5a2ec0c9c46d773b49794b97f6758ace11cc932 /src/main/java/GoodGenerator
parent23bacfee4c30721971e3a5242213948b474c60ce (diff)
downloadGT5-Unofficial-9705e977fb9efc8da7138aac716a72c50def5f48.tar.gz
GT5-Unofficial-9705e977fb9efc8da7138aac716a72c50def5f48.tar.bz2
GT5-Unofficial-9705e977fb9efc8da7138aac716a72c50def5f48.zip
Create MyMaterial.java
Diffstat (limited to 'src/main/java/GoodGenerator')
-rw-r--r--src/main/java/GoodGenerator/Items/MyMaterial.java50
1 files changed, 50 insertions, 0 deletions
diff --git a/src/main/java/GoodGenerator/Items/MyMaterial.java b/src/main/java/GoodGenerator/Items/MyMaterial.java
new file mode 100644
index 0000000000..335a5f5364
--- /dev/null
+++ b/src/main/java/GoodGenerator/Items/MyMaterial.java
@@ -0,0 +1,50 @@
+package GoodGenerator.Items;
+
+import com.github.bartimaeusnek.bartworks.system.material.Werkstoff;
+import gregtech.api.enums.TextureSet;
+import com.github.bartimaeusnek.bartworks.util.Pair;
+
+import static com.github.bartimaeusnek.bartworks.util.BW_Util.subscriptNumbers;
+import static gregtech.api.enums.Materials.*;
+
+
+public class MyMaterial implements Runnable {
+
+ public static final Werkstoff graphiteUraniumMixture = new Werkstoff(
+ new short[]{0x3a,0x77,0x3d},
+ "Graphite-Uranium Mixture",
+ subscriptNumbers("C3U"),
+ new Werkstoff.Stats(),
+ Werkstoff.Types.MIXTURE,
+ new Werkstoff.GenerationFeatures().disable().addMixerRecipes().onlyDust(),
+ 31000,
+ TextureSet.SET_DULL,
+ new Pair<> (Graphite,3),
+ new Pair<> (Uranium,1)
+ );
+
+ public static final Werkstoff uraniumBasedLiquidFuel = new Werkstoff(
+ new short[]{0x00,0xff,0x00},
+ "Uranium Based Liquid Fuel",
+ subscriptNumbers("U36Rb8Qt4Rn"),
+ new Werkstoff.Stats().setRadioactive(true),
+ Werkstoff.Types.COMPOUND,
+ new Werkstoff.GenerationFeatures().disable().addCells(),
+ 31001,
+ TextureSet.SET_FLUID
+ );
+
+ public static final Werkstoff uraniumBasedLiquidFuelExcited = new Werkstoff(
+ new short[]{0x00,0xff,0x00},
+ "Uranium Based Liquid Fuel (Excited State)",
+ subscriptNumbers("*(U36Rb8Qt4Rn)*"),
+ new Werkstoff.Stats().setRadioactive(true),
+ Werkstoff.Types.COMPOUND,
+ new Werkstoff.GenerationFeatures().disable().addCells(),
+ 31002,
+ TextureSet.SET_FLUID
+ );
+
+ @Override
+ public void run() { }
+}