From 6ee301d80e33bf1af95a2edafe3621e090225a43 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Mon, 5 Sep 2016 00:50:58 +1000 Subject: + Added Lithium Carbonate recipes. + Added some fluid textures. % Changed names to be mixes on some fluids. --- .../miscutil/core/recipe/RECIPES_GREGTECH.java | 48 +++++++++++++++++----- 1 file changed, 37 insertions(+), 11 deletions(-) (limited to 'src/Java/miscutil/core') diff --git a/src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java b/src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java index 67b1b2d0e3..f9a3e369ce 100644 --- a/src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java @@ -116,28 +116,54 @@ public class RECIPES_GREGTECH { try { + //Makes Lithium Carbonate CORE.RA.addDehydratorRecipe( - UtilsItems.getItemStackOfAmountFromOreDict("dustSteel", 8), //Item input (slot 1) - FluidUtils.getFluidStack("oxygen", 1000), //Fluid Input - new ItemStack[]{UtilsItems.getItemStackOfAmountFromOreDict("dustDiamond", 1)}, //Output Array of Items - Upto 9 + FluidUtils.getFluidStack("sulfuriclithium", 1000), //Item input (slot 1) + null, //Fluid Input + new ItemStack[]{ + UtilsItems.getItemStackOfAmountFromOreDict("dustSodium", 1), + UtilsItems.getItemStackOfAmountFromOreDict("dustCarbon", 1), + UtilsItems.getItemStackOfAmountFromOreDict("dustLithium", 1) + }, //Output Array of Items - Upto 9 + 10*20, //Time in ticks + 30); //EU + }catch (NullPointerException e){Utils.LOG_INFO("FAILED TO LOAD RECIPES - NULL POINTER SOMEWHERE");} + try { + + CORE.RA.addDehydratorRecipe( + UtilsItems.getItemStackOfAmountFromOreDict("cellEmpty", 1), //Item input (slot 1) + FluidUtils.getFluidStack("sulfuriclithium", 1000), //Fluid Input + new ItemStack[]{ + UtilsItems.getItemStackOfAmountFromOreDict("dustSodium", 1), + UtilsItems.getItemStackOfAmountFromOreDict("dustCarbon", 1), + UtilsItems.getItemStackOfAmountFromOreDict("dustLithium", 1) + }, //Output Array of Items - Upto 9 10*20, //Time in ticks 30); //EU }catch (NullPointerException e){Utils.LOG_INFO("FAILED TO LOAD RECIPES - NULL POINTER SOMEWHERE");} try { CORE.RA.addDehydratorRecipe( - UtilsItems.getItemStackOfAmountFromOreDict("dustSteel", 8), //Item input (slot 1) - UtilsItems.getItemStackOfAmountFromOreDict("dustRedstone", 8), //Item input (slot 2) - new ItemStack[]{UtilsItems.getItemStackOfAmountFromOreDict("dustDiamond", 1)}, //Output Array of Items - Upto 9 + UtilsItems.getItemStackOfAmountFromOreDict("cellEmpty", 1), //Item input (slot 1) + UtilsItems.getItemStackOfAmountFromOreDict("cellWater", 1), //Item input (slot 2) + new ItemStack[]{ + UtilsItems.getItemStackOfAmountFromOreDict("dustSodium", 1), + UtilsItems.getItemStackOfAmountFromOreDict("dustCarbon", 1), + UtilsItems.getItemStackOfAmountFromOreDict("dustLithium", 1) + }, //Output Array of Items - Upto 9 10*20, //Time in ticks 30); //EU }catch (NullPointerException e){Utils.LOG_INFO("FAILED TO LOAD RECIPES - NULL POINTER SOMEWHERE");} try { CORE.RA.addDehydratorRecipe( - UtilsItems.getItemStackOfAmountFromOreDict("dustSteel", 8), - UtilsItems.getItemStackOfAmountFromOreDict("dustRedstone", 8), - FluidUtils.getFluidStack("oxygen", 1000), - new ItemStack[]{UtilsItems.getItemStackOfAmountFromOreDict("dustDiamond", 1)}, //Output Array of Items - Upto 9 - FluidUtils.getFluidStack("lava", 1000), + UtilsItems.getItemStackOfAmountFromOreDict("cellEmpty", 1), + null, + FluidUtils.getFluidStack("sulfuriclithium", 1000), + new ItemStack[]{ + UtilsItems.getItemStackOfAmountFromOreDict("dustSodium", 1), + UtilsItems.getItemStackOfAmountFromOreDict("dustCarbon", 1), + UtilsItems.getItemStackOfAmountFromOreDict("dustLithium", 1) + }, //Output Array of Items - Upto 9 + FluidUtils.getFluidStack("water", 1000), 10*20, //Time in ticks 30); //EU -- cgit