From 2f95c487d940b52e1c7b0ccfea91d344d86b273a Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Tue, 27 Dec 2016 19:14:09 +1000 Subject: + Added a factory production method of producing HF from Fluorite dust. + Added a custom tooltip for Fluorite ore blocks, to depict where they are obtained from. (Sandstone and Limestone) + Added Calcium Sulfate if Gypsum does not exist, if it does, also oredicts Gypsum as dustCalciumSulfate. --- .../gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) (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 73bd5538a4..4869465601 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -294,6 +294,30 @@ public class RECIPES_GREGTECH { 500); //EU }catch (NullPointerException e){Utils.LOG_INFO("FAILED TO LOAD RECIPES - NULL POINTER SOMEWHERE");} + + //CaF2 + H2SO4 → CaSO4(solid) + 2 HF + try { + + CORE.RA.addDehydratorRecipe( + new ItemStack[]{ + ItemUtils.getItemStackOfAmountFromOreDict("dustFluorite", 37), + ItemUtils.getItemStackOfAmountFromOreDict("cellEmpty", 16) + }, //Item input (Array, up to 2) + FluidUtils.getFluidStack("sulfuricacid", 56*144), //Fluid input (slot 1) + null, //Fluid output (slot 2) + new ItemStack[]{ + ItemUtils.getItemStackOfAmountFromOreDict("dustCalciumSulfate", 30), + ItemUtils.getItemStackOfAmountFromOreDict("cellHydrofluoricAcid", 16), + ItemUtils.getItemStackOfAmountFromOreDict("dustSilver", 1), + ItemUtils.getItemStackOfAmountFromOreDict("dustGold", 2), + ItemUtils.getItemStackOfAmountFromOreDict("dustTin", 1), + ItemUtils.getItemStackOfAmountFromOreDict("dustCopper", 2) + }, //Output Array of Items - Upto 9, + new int[]{0, 0, 100, 100, 100, 100}, + 170*20, //Time in ticks + 230); //EU + + }catch (NullPointerException e){Utils.LOG_INFO("FAILED TO LOAD RECIPES - NULL POINTER SOMEWHERE");} } } -- cgit