diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-12-28 19:45:13 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-12-28 19:45:13 +1000 |
commit | 6152557fc7d6b0d234eea6968a0cb0fdb976f318 (patch) | |
tree | d1b65bd580773f7e52aab89e3023629e4d5702b6 /src/Java/gtPlusPlus/core/material | |
parent | 47637485b2dd6865e22bfffb395a731cc8cbeddb (diff) | |
download | GT5-Unofficial-6152557fc7d6b0d234eea6968a0cb0fdb976f318.tar.gz GT5-Unofficial-6152557fc7d6b0d234eea6968a0cb0fdb976f318.tar.bz2 GT5-Unofficial-6152557fc7d6b0d234eea6968a0cb0fdb976f318.zip |
+ Added the last Fuel salt to NUCLIDE.java.
+ Enabled Fission Fuel Processing recipes.
+ Added recipes for all three nuclear fuels in the Fission Fuel Processor.
Diffstat (limited to 'src/Java/gtPlusPlus/core/material')
-rw-r--r-- | src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java b/src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java index 0d087fe246..0fd6d2bd8a 100644 --- a/src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java +++ b/src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java @@ -37,6 +37,24 @@ public final class NUCLIDE { new MaterialStack(FLUORIDES.URANIUM_TETRAFLUORIDE, 1) }); + public static final Material LiFBeF2ZrF4UF4 = new Material( + "LiFBeF2ZrF4UF4", //Material Name + new short[]{20, 70, 45, 0}, //Material Colour + 650, //Melting Point in C + 940, //Boiling Point in C + 150, //Protons + 150, //Neutrons + false, //Uses Blast furnace? + MaterialUtils.subscript(MaterialUtils.superscript("7")+"LiFBeF2ZrF4UF4"), //Chemical Formula + 5, //Radioactivity Level + //Material Stacks with Percentage of required elements. + new MaterialStack[]{ + new MaterialStack(FLUORIDES.LITHIUM_FLUORIDE, 65), + new MaterialStack(FLUORIDES.BERYLLIUM_FLUORIDE, 28), + new MaterialStack(FLUORIDES.ZIRCONIUM_TETRAFLUORIDE, 5), + new MaterialStack(FLUORIDES.URANIUM_TETRAFLUORIDE, 2) + }); + public static final Material LiFBeF2ZrF4U235 = new Material( "LiFBeF2ZrF4U235", //Material Name new short[]{50, 70, 15, 0}, //Material Colour |