aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/elisis/gtnhlanth/common/register
diff options
context:
space:
mode:
authorElisis <gtandemmodding@gmail.com>2024-08-24 05:18:09 +1000
committerGitHub <noreply@github.com>2024-08-23 19:18:09 +0000
commit71e7f3dc16a7be69a3f89c17a170d401383bf021 (patch)
tree2b4f74c3edfdefc2152fb0dd245916e6eb3222f5 /src/main/java/com/elisis/gtnhlanth/common/register
parent0dc1b9feefc03c16efe66e14c5b8707214693658 (diff)
downloadGT5-Unofficial-71e7f3dc16a7be69a3f89c17a170d401383bf021.tar.gz
GT5-Unofficial-71e7f3dc16a7be69a3f89c17a170d401383bf021.tar.bz2
GT5-Unofficial-71e7f3dc16a7be69a3f89c17a170d401383bf021.zip
General beamline fixes, balancing (#2899)
* Remove cell chemistry, increase tiering of recipes from mask-making process * Fix LN2 and LOX in LINAC and Synchrotron * Fix Synchrotron structure definition antenna having a different meta to the actual block * Fix Accelerator Glass Hardness * Fix mobs spawning inside Synchrotron, make LiB6 rods less painful to make * Halve TC base recipe duration, loosen focus requirements for lower-tier wafers, add more detail to LINAC TT * Improve LINAC output energy eu/t scaling * Remove log * Spotless * Remove merge artifact * Spotless apply for branch beamline-fixes-2 for #2899 (#2900) spotlessApply Co-authored-by: GitHub GTNH Actions <> --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Martin Robertz <dream-master@gmx.net> Co-authored-by: Connor-Colenso <52056774+Connor-Colenso@users.noreply.github.com>
Diffstat (limited to 'src/main/java/com/elisis/gtnhlanth/common/register')
-rw-r--r--src/main/java/com/elisis/gtnhlanth/common/register/LanthItemList.java4
-rw-r--r--src/main/java/com/elisis/gtnhlanth/common/register/WerkstoffMaterialPool.java11
2 files changed, 15 insertions, 0 deletions
diff --git a/src/main/java/com/elisis/gtnhlanth/common/register/LanthItemList.java b/src/main/java/com/elisis/gtnhlanth/common/register/LanthItemList.java
index 1b799ac84a..2d5d976fea 100644
--- a/src/main/java/com/elisis/gtnhlanth/common/register/LanthItemList.java
+++ b/src/main/java/com/elisis/gtnhlanth/common/register/LanthItemList.java
@@ -75,6 +75,8 @@ public final class LanthItemList {
public static final Block ANTENNA_CASING_T1 = new AntennaCasing(1);
public static final Block ANTENNA_CASING_T2 = new AntennaCasing(2);
+ public static final Block NIOBIUM_CAVITY_CASING = new Casing("niobium_cavity");
+
public static final Block FOCUS_MANIPULATION_CASING = new Casing("focus_manipulator");
public static final Block FOCUS_HOLDER = new Casing("focus_holder");
@@ -141,6 +143,8 @@ public final class LanthItemList {
GameRegistry.registerBlock(ANTENNA_CASING_T2, ANTENNA_CASING_T2.getUnlocalizedName());
+ GameRegistry.registerBlock(NIOBIUM_CAVITY_CASING, NIOBIUM_CAVITY_CASING.getUnlocalizedName());
+
GameRegistry.registerBlock(FOCUS_MANIPULATION_CASING, FOCUS_MANIPULATION_CASING.getUnlocalizedName());
GameRegistry.registerBlock(FOCUS_HOLDER, FOCUS_HOLDER.getUnlocalizedName());
diff --git a/src/main/java/com/elisis/gtnhlanth/common/register/WerkstoffMaterialPool.java b/src/main/java/com/elisis/gtnhlanth/common/register/WerkstoffMaterialPool.java
index a6e806ca86..26a3cb65e3 100644
--- a/src/main/java/com/elisis/gtnhlanth/common/register/WerkstoffMaterialPool.java
+++ b/src/main/java/com/elisis/gtnhlanth/common/register/WerkstoffMaterialPool.java
@@ -1993,6 +1993,17 @@ public class WerkstoffMaterialPool implements Runnable {
offsetID3b + 9,
TextureSet.SET_DULL);
+ public static final Werkstoff NitrogenPlasmaSilaneMix = new Werkstoff(
+ new short[] { 140, 125, 220 },
+ "Silane-Nitrogen Plasma Mixture",
+ subscriptNumbers("SiH4/N"),
+ new Werkstoff.Stats(),
+ Werkstoff.Types.MIXTURE,
+ new Werkstoff.GenerationFeatures().disable()
+ .addCells(),
+ offsetID3b + 10,
+ TextureSet.SET_FLUID);
+
public static void runInit() {
addSubTags();
}