From 29183be2ec89ee54d748ac6ca64ed67f89f50f90 Mon Sep 17 00:00:00 2001 From: Jordan Byrne Date: Fri, 29 Dec 2017 14:12:35 +1000 Subject: + Add Gadolinium, Samarium, Ytterbium & Lanthanum if they do not exist. + Added new recipe for production of Fluorite. % Some Alloys now use Phosphor instead of Phosphorus. % Changed Ore Block unlocalized name. $ Fixed ore itemblock not showing Chemical Formula. $ Greatly improved radiation handler. $ Fixed old fluorite ore not generating properly. --- src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'src/Java/gtPlusPlus/core/recipe') diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index a95e972139..a09a865743 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -903,6 +903,16 @@ public class RECIPES_GREGTECH { chances, 30*20, 240); + + GT_Values.RA.addChemicalBathRecipe( + FLUORIDES.FLUORITE.getCrushed(2), + FluidUtils.getFluidStack("hydrogen", 2000), + FLUORIDES.FLUORITE.getCrushedPurified(8), + FLUORIDES.FLUORITE.getDustImpure(4), + FLUORIDES.FLUORITE.getDustPurified(2), + new int[]{10000, 5000, 1000}, + 30*20, + 240); GT_Values.RA.addChemicalBathRecipe( ItemUtils.getItemStackOfAmountFromOreDict("dustLithiumCarbonate", 10), @@ -1079,9 +1089,9 @@ public class RECIPES_GREGTECH { GT_ModHandler.addPulverisationRecipe( ItemUtils.getItemStackOfAmountFromOreDict("pelletZirconium", 1), ItemUtils.getItemStackOfAmountFromOreDict("dustZrCl4", 1)); - GT_ModHandler.addPulverisationRecipe( + /*GT_ModHandler.addPulverisationRecipe( FLUORIDES.FLUORITE.getOre(1), - FLUORIDES.FLUORITE.getDust(4)); + FLUORIDES.FLUORITE.getDust(4));*/ if (ItemUtils.simpleMetaStack("chisel:limestone", 0, 1) != null){ GT_ModHandler.addPulverisationRecipe( -- cgit