diff options
author | Elisis <gtandemmodding@gmail.com> | 2023-01-18 19:07:59 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-18 09:07:59 +0100 |
commit | 921ef86ace548fce3a1de13380060b00db0af390 (patch) | |
tree | b7d23cadf7abb84bdc3f19dc3bea9cee0e8b0366 /src/main/java/com | |
parent | db29de6794a229dff55b5361a7866fbf921ab28d (diff) | |
download | GT5-Unofficial-921ef86ace548fce3a1de13380060b00db0af390.tar.gz GT5-Unofficial-921ef86ace548fce3a1de13380060b00db0af390.tar.bz2 GT5-Unofficial-921ef86ace548fce3a1de13380060b00db0af390.zip |
Add plate & ingot types for Thorium-232 (#268)
* Add plate & ingot types for Thorium-232
* spotlessApply (#269)
Co-authored-by: Elisis <gtandemmodding@gmail.com>
Co-authored-by: GitHub GTNH Actions <>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Former-commit-id: ee526305b47f0602d0ca3d8be4a051cec828af42
Diffstat (limited to 'src/main/java/com')
-rw-r--r-- | src/main/java/com/github/bartimaeusnek/bartworks/system/material/WerkstoffLoader.java | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/main/java/com/github/bartimaeusnek/bartworks/system/material/WerkstoffLoader.java b/src/main/java/com/github/bartimaeusnek/bartworks/system/material/WerkstoffLoader.java index e58033fd0b..22265423e8 100644 --- a/src/main/java/com/github/bartimaeusnek/bartworks/system/material/WerkstoffLoader.java +++ b/src/main/java/com/github/bartimaeusnek/bartworks/system/material/WerkstoffLoader.java @@ -595,9 +595,17 @@ public class WerkstoffLoader { new short[] {0, 64, 0, 0}, "Thorium 232", superscriptNumbers("Th232"), - new Werkstoff.Stats().setRadioactive(true), + new Werkstoff.Stats() + .setRadioactive(true) + .setBlastFurnace(true) + .setMass(232) + .setProtons(Element.Th.mProtons), Werkstoff.Types.ISOTOPE, - new Werkstoff.GenerationFeatures().disable().onlyDust().enforceUnification(), + new Werkstoff.GenerationFeatures() + .disable() + .onlyDust() + .addMetalItems() + .enforceUnification(), 30, TextureSet.SET_METALLIC // No Byproducts |