From 9c96f819303cfb1e82f096468d5b5a0f49c739b8 Mon Sep 17 00:00:00 2001 From: Fiery36 <162788686+Fiery36@users.noreply.github.com> Date: Sat, 16 Mar 2024 04:58:44 -0400 Subject: [PATCH] Coffee Time (#797) Re-added the pyrolyse oven recipes for roasted coffee bean, making coffee now obtainable --- groovy/postInit/mod/GregTechFoodOption.groovy | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/groovy/postInit/mod/GregTechFoodOption.groovy b/groovy/postInit/mod/GregTechFoodOption.groovy index ad58da454..7f166667d 100755 --- a/groovy/postInit/mod/GregTechFoodOption.groovy +++ b/groovy/postInit/mod/GregTechFoodOption.groovy @@ -57,6 +57,7 @@ def CHEMICAL_BATH = recipemap('chemical_bath') def BCR = recipemap('bubble_column_reactor') def FLUIDIZEDBR = recipemap('fluidized_bed_reactor') def FBR = recipemap('fixed_bed_reactor') +def PYROLYSE_OVEN = recipemap('pyrolyse_oven'); FERMENTER.recipeBuilder() .fluidInputs(fluid('gtfo_red_grapes_must') * 8000) @@ -522,6 +523,23 @@ DISTILLERY.recipeBuilder() .EUt(8) .buildAndRegister() +//Re-added the roasted coffee bean recipes +PYROLYSE_OVEN.recipeBuilder() + .inputs(ore('gemChippedGradedCoffeeSmall')) + .outputs(item('gregtechfoodoption:gtfo_oredict_item:1018')) + .fluidOutputs(fluid('water') * 100) + .duration(40) + .EUt(120) + .buildAndRegister() + +PYROLYSE_OVEN.recipeBuilder() + .inputs(ore('gemChippedGradedCoffeeLarge')) + .outputs(item('gregtechfoodoption:gtfo_oredict_item:1019')) + .fluidOutputs(fluid('water') * 200) + .duration(80) + .EUt(120) + .buildAndRegister() + // Force GTFO skewers to be made with only long rods // Skewer * 16 mods.gregtech.lathe.removeByInput(200, [metaitem('stickTitanium')], null)