diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2017-04-30 00:13:36 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-04-30 00:13:36 +1000 |
commit | 568f05651e187e9bd7af44d72742665ebcee274f (patch) | |
tree | d5a3ce884b0d9b1c49e6378ff59f169a0695ea53 /src/Java/gtPlusPlus/core | |
parent | c2f45087c471dc57ef08bf3b22e98c619960daad (diff) | |
download | GT5-Unofficial-568f05651e187e9bd7af44d72742665ebcee274f.tar.gz GT5-Unofficial-568f05651e187e9bd7af44d72742665ebcee274f.tar.bz2 GT5-Unofficial-568f05651e187e9bd7af44d72742665ebcee274f.zip |
+ Added Resonant Ender.
$ Fixed COFH Fluids having incorrect textures.
$ Fixed the recipe for Clay plates not auto-generating.
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index dc23420add..757b7ac45d 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -30,6 +30,7 @@ public class RECIPES_GREGTECH { assemblerRecipes(); distilleryRecipes(); extractorRecipes(); + fluidExtractorRecipes(); chemicalBathRecipes(); chemicalReactorRecipes(); dehydratorRecipes(); @@ -37,6 +38,7 @@ public class RECIPES_GREGTECH { lftrRecipes(); fissionFuelRecipes(); autoclaveRecipes(); + compressorRecipes(); mixerRecipes(); macerationRecipes(); centrifugeRecipes(); @@ -486,6 +488,10 @@ public class RECIPES_GREGTECH { GT_ModHandler.addExtractionRecipe(GregtechItemList.Battery_RE_EV_Cadmium.get(1L, new Object[0]), ItemList.Battery_Hull_HV.get(4L, new Object[0])); GT_ModHandler.addExtractionRecipe(GregtechItemList.Battery_RE_EV_Lithium.get(1L, new Object[0]), ItemList.Battery_Hull_HV.get(4L, new Object[0])); } + + private static void fluidExtractorRecipes(){ + GT_Values.RA.addFluidExtractionRecipe(ItemUtils.getSimpleStack(Items.ender_pearl), null, FluidUtils.getFluidStack("ender", 250), 10000, 100, 30); + } private static void chemicalBathRecipes(){ final int[] chances = {}; @@ -609,6 +615,10 @@ public class RECIPES_GREGTECH { 120*20, 30); } + + private static void compressorRecipes(){ + GT_ModHandler.addCompressionRecipe(ItemUtils.getSimpleStack(Items.clay_ball), ItemUtils.getItemStackOfAmountFromOreDict("plateClay", 1)); + } private static void macerationRecipes(){ GT_ModHandler.addPulverisationRecipe( |