diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-05 00:50:58 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-09-05 00:50:58 +1000 |
commit | 6ee301d80e33bf1af95a2edafe3621e090225a43 (patch) | |
tree | 089c9f5aaa9390d21784111184e2dc6790a30023 /src/Java/miscutil/core | |
parent | f04f97e1309dccfdf442ddf7a64a00aeed8e9628 (diff) | |
download | GT5-Unofficial-6ee301d80e33bf1af95a2edafe3621e090225a43.tar.gz GT5-Unofficial-6ee301d80e33bf1af95a2edafe3621e090225a43.tar.bz2 GT5-Unofficial-6ee301d80e33bf1af95a2edafe3621e090225a43.zip |
+ Added Lithium Carbonate recipes.
+ Added some fluid textures.
% Changed names to be mixes on some fluids.
Diffstat (limited to 'src/Java/miscutil/core')
-rw-r--r-- | src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java | 48 |
1 files changed, 37 insertions, 11 deletions
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 |