From 71e7f3dc16a7be69a3f89c17a170d401383bf021 Mon Sep 17 00:00:00 2001 From: Elisis Date: Sat, 24 Aug 2024 05:18:09 +1000 Subject: 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 Co-authored-by: Connor-Colenso <52056774+Connor-Colenso@users.noreply.github.com> --- .../gtnhlanth/common/register/WerkstoffMaterialPool.java | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/main/java/com/elisis/gtnhlanth/common/register/WerkstoffMaterialPool.java') 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(); } -- cgit