From 47637485b2dd6865e22bfffb395a731cc8cbeddb Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Wed, 28 Dec 2016 19:01:23 +1000 Subject: $ Fixed Chemical equations on the reactor salt fuels. % Changed two LFTR recipes to require the full salt mixtures, not just Uranium235 or UF4. % Changed tooltip on the Slow builders ring. --- src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/Java/gtPlusPlus/core/material') diff --git a/src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java b/src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java index fa48446c1c..0d087fe246 100644 --- a/src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java +++ b/src/Java/gtPlusPlus/core/material/nuclear/NUCLIDE.java @@ -20,13 +20,15 @@ public final class NUCLIDE { public static final Material LiFBeF2ThF4UF4 = new Material( - "Reactor Salt LiFBeF2ThF4UF4", //Material Name + "LiFBeF2ThF4UF4", //Material Name new short[]{40, 90, 25, 0}, //Material Colour 566, //Melting Point in C 870, //Boiling Point in C 150, //Protons 150, //Neutrons false, //Uses Blast furnace? + MaterialUtils.subscript(MaterialUtils.superscript("7")+"LiFBeF2ThF4UF4"), //Chemical Formula + 5, //Radioactivity Level //Material Stacks with Percentage of required elements. new MaterialStack[]{ new MaterialStack(FLUORIDES.LITHIUM_FLUORIDE, 65), @@ -36,13 +38,15 @@ public final class NUCLIDE { }); public static final Material LiFBeF2ZrF4U235 = new Material( - "Reactor Salt LiFBeF2ZrF4U235", //Material Name + "LiFBeF2ZrF4U235", //Material Name new short[]{50, 70, 15, 0}, //Material Colour 590, //Melting Point in C 890, //Boiling Point in C 150, //Protons 150, //Neutrons false, //Uses Blast furnace? + MaterialUtils.subscript(MaterialUtils.superscript("7")+"LiFBeF2ZrF4")+MaterialUtils.superscript("235U"), //Chemical Formula + 5, //Radioactivity Level //Material Stacks with Percentage of required elements. new MaterialStack[]{ new MaterialStack(FLUORIDES.LITHIUM_FLUORIDE, 55), -- cgit