aboutsummaryrefslogtreecommitdiff
path: root/src/Java/miscutil/core/recipe
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-09-06 14:43:38 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-09-06 14:43:38 +1000
commita86f2fe29fba9173f65a0ef7a6961c17e5d1cc4b (patch)
tree735e07e76befa35ea237e57883f067cd402f9654 /src/Java/miscutil/core/recipe
parente12c5cafb9485ae1f62eeeed3a795d239e85cba5 (diff)
downloadGT5-Unofficial-a86f2fe29fba9173f65a0ef7a6961c17e5d1cc4b.tar.gz
GT5-Unofficial-a86f2fe29fba9173f65a0ef7a6961c17e5d1cc4b.tar.bz2
GT5-Unofficial-a86f2fe29fba9173f65a0ef7a6961c17e5d1cc4b.zip
+ 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.
Diffstat (limited to 'src/Java/miscutil/core/recipe')
-rw-r--r--src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java15
1 files changed, 15 insertions, 0 deletions
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(){