diff options
author | Steelux <70096037+Steelux8@users.noreply.github.com> | 2022-06-24 18:10:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-24 19:10:28 +0200 |
commit | 796b55c9b1dacce64b3312d0c16bc198b8007543 (patch) | |
tree | 08501e0126cfdf0dbd6dd9478669d4054db80bf2 /src/main/java/gtPlusPlus/core/material | |
parent | d30fe31cbf40a972ebfa4b8a9efba2df9b71cd13 (diff) | |
download | GT5-Unofficial-796b55c9b1dacce64b3312d0c16bc198b8007543.tar.gz GT5-Unofficial-796b55c9b1dacce64b3312d0c16bc198b8007543.tar.bz2 GT5-Unofficial-796b55c9b1dacce64b3312d0c16bc198b8007543.zip |
Add UHV Soldering Alloy for Endgame Recipes (#196)
* Added Endgame Soldering Alloy
- Adder recipe for Mutated Living Solder, an endgame soldering alloy meant for the bioware circuit line and content after it;
- Added a new, very expensive catalyst for this recipe, which favors the usage of Awakened Draconium Coils to prevent losing durability on the catalyst;
- Changed the Chemical Plant so that using Awakened Draconium Coils with Tungstensteel Pipe Casings removes the chance of consuming catalyst durability.
* Lowered Recipe Energy Tier by 1
Diffstat (limited to 'src/main/java/gtPlusPlus/core/material')
-rw-r--r-- | src/main/java/gtPlusPlus/core/material/MISC_MATERIALS.java | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/main/java/gtPlusPlus/core/material/MISC_MATERIALS.java b/src/main/java/gtPlusPlus/core/material/MISC_MATERIALS.java index 766b2839d4..534b876478 100644 --- a/src/main/java/gtPlusPlus/core/material/MISC_MATERIALS.java +++ b/src/main/java/gtPlusPlus/core/material/MISC_MATERIALS.java @@ -660,4 +660,21 @@ public final class MISC_MATERIALS { new MaterialStack(ELEMENT.getInstance().OXYGEN, 2), new MaterialStack(ELEMENT.getInstance().CHLORINE, 3) }); + + public static final Material MUTATED_LIVING_SOLDER = new Material( + "Mutated Living Solder", + MaterialState.PURE_LIQUID, //State + new short[] {147, 109, 155}, //Material Colour + -200, //Melting Point in C + 500, //Boiling Point in C + -1, //Protons + -1, + false, //Uses Blast furnace? + "?Sn?Bi?", + 0, + true, + new MaterialStack[]{ + new MaterialStack(ELEMENT.getInstance().TIN, 1), + new MaterialStack(ELEMENT.getInstance().BISMUTH, 1) + }); } |