From a86f2fe29fba9173f65a0ef7a6961c17e5d1cc4b Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Tue, 6 Sep 2016 14:43:38 +1000 Subject: + Made Energy Crystal have a different recipe every day. (There is about 300 possible permutations) % Tried adding another recipe handler for the dehydrator. > This one combines the mixer input, fluid input, fluid output, with a sifter multi output and chance. --- src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'src/Java/miscutil/core/recipe') diff --git a/src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java b/src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java index f9a3e369ce..6c3fe841fe 100644 --- a/src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java @@ -169,7 +169,22 @@ public class RECIPES_GREGTECH { }catch (NullPointerException e){Utils.LOG_INFO("FAILED TO LOAD RECIPES - NULL POINTER SOMEWHERE");} + try { + CORE.RA.addDehydratorRecipe( + null, //Item input (slot 1) + null, //Item input (slot 2) + FluidUtils.getFluidStack("sulfuriclithium", 1000), //Fluid input (slot 1) + null, //Fluid output (slot 1) + new ItemStack[]{ + UtilsItems.getItemStackOfAmountFromOreDict("dustSodium", 1), + UtilsItems.getItemStackOfAmountFromOreDict("dustCarbon", 1), + UtilsItems.getItemStackOfAmountFromOreDict("dustLithium", 1) + }, //Output Array of Items - Upto 9, + new int[]{0}, + 10*20, //Time in ticks + 30); //EU + }catch (NullPointerException e){Utils.LOG_INFO("FAILED TO LOAD RECIPES - NULL POINTER SOMEWHERE");} } private static void assemblerRecipes(){ -- cgit