diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2016-12-27 05:44:39 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2016-12-27 05:44:39 +1000 |
commit | 687a884bbe3e47a5d50403b018605688d6bcef23 (patch) | |
tree | 3faff2c77a1e97b181ad60ff7ded7365d043627b /src/Java/gtPlusPlus/xmod | |
parent | c8e9f9cca3a597a6873e4c83ac7ae80fd943b086 (diff) | |
download | GT5-Unofficial-687a884bbe3e47a5d50403b018605688d6bcef23.tar.gz GT5-Unofficial-687a884bbe3e47a5d50403b018605688d6bcef23.tar.bz2 GT5-Unofficial-687a884bbe3e47a5d50403b018605688d6bcef23.zip |
+ Added recipes to the fluid extractor/former for blocks.
+ Added recipes to the Macerator/Pulveriser for blocks to 9 dust.
+ Added recipe for Sulfuric Lithium to be used in.
+ Added a dehydrator recipe for LiOH fluid to dust.
% Adjusted Li7 crafting time.
% Made various recipes now require Lithium-7
% Renamed 2LiOHCaCO3 to Li2CO3CaOH2.
+ material/Material.java now has getBlock().
Diffstat (limited to 'src/Java/gtPlusPlus/xmod')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java index 337356f1cf..857ce8013d 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java @@ -2,6 +2,7 @@ package gtPlusPlus.xmod.gregtech.loaders; import gregtech.api.enums.GT_Values; import gregtech.api.enums.ItemList; +import gregtech.api.util.GT_ModHandler; import gtPlusPlus.core.material.Material; import gtPlusPlus.core.util.Utils; import gtPlusPlus.core.util.item.ItemUtils; @@ -153,6 +154,18 @@ public class RecipeGen_DustGeneration implements Runnable{ else { Utils.LOG_WARNING("16l fluid extractor from 1 nugget Recipe: "+material.getLocalizedName()+" - Failed"); } + if (GT_Values.RA.addFluidExtractionRecipe(material.getBlock(1), //Input + null, //Input 2 + material.getFluid(144*9), //Fluid Output + 0, //Chance + 1*20, //Duration + 16 //Eu Tick + )){ + Utils.LOG_WARNING((144*9)+"l fluid extractor from 1 block Recipe: "+material.getLocalizedName()+" - Success"); + } + else { + Utils.LOG_WARNING((144*9)+"l fluid extractor from 1 block Recipe: "+material.getLocalizedName()+" - Failed"); + } //Making Shapes from fluid if (GT_Values.RA.addFluidSolidifierRecipe( @@ -191,7 +204,22 @@ public class RecipeGen_DustGeneration implements Runnable{ else { Utils.LOG_WARNING("16l fluid molder for 1 nugget Recipe: "+material.getLocalizedName()+" - Failed"); } + if (GT_Values.RA.addFluidSolidifierRecipe( + ItemList.Shape_Mold_Block.get(1), //Item Shape + material.getFluid(144*9), //Fluid Input + material.getBlock(1), //output + 1*20, //Duration + 16 //Eu Tick + )){ + Utils.LOG_WARNING((144*9)+"l fluid molder from 1 block Recipe: "+material.getLocalizedName()+" - Success"); + } + else { + Utils.LOG_WARNING((144*9)+"l fluid molder from 1 block Recipe: "+material.getLocalizedName()+" - Failed"); + } + //Macerate blocks back to dusts. + GT_ModHandler.addPulverisationRecipe(material.getBlock(1), material.getDust(9)); + //Is this a composite? if (inputStacks != null){ //Is this a composite? |