diff options
| author | Alkalus <Draknyte1@hotmail.com> | 2020-05-27 18:33:53 +0100 |
|---|---|---|
| committer | Alkalus <Draknyte1@hotmail.com> | 2020-05-27 18:33:53 +0100 |
| commit | 59c6a1bf700132d0f5b7da49f59b05ac8b9f2894 (patch) | |
| tree | 7f06006b4000abbb4dd04ced14009ba334a8e983 /src/Java/gtPlusPlus/core/recipe | |
| parent | 1813051f41ff12ce33be373e956a2bcc3d439669 (diff) | |
| download | GT5-Unofficial-59c6a1bf700132d0f5b7da49f59b05ac8b9f2894.tar.gz GT5-Unofficial-59c6a1bf700132d0f5b7da49f59b05ac8b9f2894.tar.bz2 GT5-Unofficial-59c6a1bf700132d0f5b7da49f59b05ac8b9f2894.zip | |
+ Added recipe for pine saplings.
+ Added tier info into Chemical Plant NEI handler.
+ Added custom NEI handlers for Dehydration and Reactor Fuel Processing Plant recipes.
% Adjusted output of Fluorite ore production recipes.
% Finished Work on Chemical Plant user manual.
$ Added another safety catch to the VFC GUI.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
| -rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 33 |
1 files changed, 27 insertions, 6 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index 67614ce18b..d152e9afd2 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -39,6 +39,7 @@ import gtPlusPlus.core.util.minecraft.ItemUtils; import gtPlusPlus.core.util.minecraft.MaterialUtils; import gtPlusPlus.core.util.reflect.AddGregtechRecipe; import gtPlusPlus.everglades.dimension.Dimension_Everglades; +import gtPlusPlus.xmod.bop.blocks.BOP_Block_Registrator; import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList; import net.minecraft.init.Blocks; import net.minecraft.init.Items; @@ -151,10 +152,10 @@ public class RECIPES_GREGTECH { FluidUtils.getAir(8000) }, new ItemStack[] { - FLUORIDES.FLUORITE.getOre(16), - FLUORIDES.FLUORITE.getOre(8), - FLUORIDES.FLUORITE.getOre(8), FLUORIDES.FLUORITE.getOre(8), + FLUORIDES.FLUORITE.getOre(4), + FLUORIDES.FLUORITE.getOre(4), + FLUORIDES.FLUORITE.getOre(4), }, new FluidStack[] { @@ -179,10 +180,10 @@ public class RECIPES_GREGTECH { FluidUtils.getAir(12000) }, new ItemStack[] { - FLUORIDES.FLUORITE.getOre(8), - FLUORIDES.FLUORITE.getOre(4), - FLUORIDES.FLUORITE.getOre(4), FLUORIDES.FLUORITE.getOre(4), + FLUORIDES.FLUORITE.getOre(2), + FLUORIDES.FLUORITE.getOre(2), + FLUORIDES.FLUORITE.getOre(2), }, new FluidStack[] { @@ -260,6 +261,26 @@ public class RECIPES_GREGTECH { 20 * 300, MaterialUtils.getVoltageForTier(4), 4); + + // Modify Sapling into Pine Sapling + CORE.RA.addChemicalPlantRecipe( + new ItemStack[] { + CI.getNumberedBioCircuit(6), + ItemUtils.getSimpleStack(Blocks.sapling, 32) + }, + new FluidStack[] { + FluidUtils.getFluidStack("fluid.geneticmutagen", 2000), + FluidUtils.getDistilledWater(8000) + }, + new ItemStack[] { + ItemUtils.getSimpleStack(BOP_Block_Registrator.sapling_Pine, 16) + }, + new FluidStack[] { + + }, + 120 * 20, + 64, + 2); } |
