diff options
author | Alkalus <Draknyte1@hotmail.com> | 2020-05-27 15:45:24 +0100 |
---|---|---|
committer | Alkalus <Draknyte1@hotmail.com> | 2020-05-27 15:45:24 +0100 |
commit | 1813051f41ff12ce33be373e956a2bcc3d439669 (patch) | |
tree | 59f49faa3884769339c5784551988dad0e30d8a7 /src | |
parent | 9520af3dfc8ac8c555922249a832a50a7a53478a (diff) | |
download | GT5-Unofficial-1813051f41ff12ce33be373e956a2bcc3d439669.tar.gz GT5-Unofficial-1813051f41ff12ce33be373e956a2bcc3d439669.tar.bz2 GT5-Unofficial-1813051f41ff12ce33be373e956a2bcc3d439669.zip |
+ Added advanced production method to obtain Fluorite.
Diffstat (limited to 'src')
-rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index 7fff2b09ba..67614ce18b 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -137,6 +137,62 @@ public class RECIPES_GREGTECH { 10 * 20, 480, 3); + + // Advanced recipe for Fluorine Production + CORE.RA.addChemicalPlantRecipe( + new ItemStack[] { + CI.getNumberedAdvancedCircuit(17), + CI.getPurpleCatalyst(0), + ItemUtils.getSimpleStack(Blocks.sandstone, 64), + ItemUtils.getSimpleStack(Blocks.sandstone, 64) + }, + new FluidStack[] { + FluidUtils.getFluidStack("nitricacid", 4000), + FluidUtils.getAir(8000) + }, + new ItemStack[] { + FLUORIDES.FLUORITE.getOre(16), + FLUORIDES.FLUORITE.getOre(8), + FLUORIDES.FLUORITE.getOre(8), + FLUORIDES.FLUORITE.getOre(8), + }, + new FluidStack[] { + + }, + new int[] { + 0, 2500, 2000, 1500 + }, + 10 * 20, + 1024, + 5); + + // Advanced recipe for Fluorine Production + CORE.RA.addChemicalPlantRecipe( + new ItemStack[] { + CI.getNumberedAdvancedCircuit(17), + CI.getPurpleCatalyst(0), + ItemUtils.getSimpleStack(Blocks.sand, 64), + ItemUtils.getSimpleStack(Blocks.sand, 64) + }, + new FluidStack[] { + FluidUtils.getFluidStack("nitricacid", 5000), + FluidUtils.getAir(12000) + }, + new ItemStack[] { + FLUORIDES.FLUORITE.getOre(8), + FLUORIDES.FLUORITE.getOre(4), + FLUORIDES.FLUORITE.getOre(4), + FLUORIDES.FLUORITE.getOre(4), + }, + new FluidStack[] { + + }, + new int[] { + 7500, 1500, 1000, 500 + }, + 10 * 20, + 1024, + 5); CORE.RA.addChemicalPlantRecipe( new ItemStack[] { |