Skip to content

Commit

Permalink
Coffee Time (#797)
Browse files Browse the repository at this point in the history
Re-added the pyrolyse oven recipes for roasted coffee bean, making coffee now obtainable
  • Loading branch information
Fiery36 authored Mar 16, 2024
1 parent b548e26 commit 9c96f81
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions groovy/postInit/mod/GregTechFoodOption.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit 9c96f81

Please sign in to comment.