Skip to content

Commit

Permalink
Add back gorgonzola chain
Browse files Browse the repository at this point in the history
  • Loading branch information
bruberu committed Oct 21, 2023
1 parent 3c960df commit 905a2a2
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 22 deletions.
5 changes: 5 additions & 0 deletions src/main/java/gregtechfoodoption/GTFOMaterialHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,11 @@ public class GTFOMaterialHandler {
.color(0x371040)
.build();

public static final Material FungalRennetSolution = fluidBuilder(21620, "fungal_rennet_solution")
.color(0x2a7b5a)
.build();


public static final Material SweetenedDilutedCaneSyrupMixture = fluidBuilder(21970, "sweetened_diluted_cane_syrup_mixture")
.color(0xdedcc8)
.build();
Expand Down
37 changes: 15 additions & 22 deletions src/main/java/gregtechfoodoption/recipe/chain/CheeseChain.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import static gregtech.api.recipes.RecipeMaps.*;
import static gregtech.api.unification.material.Materials.*;
import static gregtech.api.unification.ore.OrePrefix.*;
import static gregtech.common.items.MetaItems.SHAPE_MOLD_CYLINDER;
import static gregtechfoodoption.GTFOMaterialHandler.*;
import static gregtechfoodoption.item.GTFOMetaItem.*;
import static gregtechfoodoption.recipe.GTFORecipeMaps.SLICER_RECIPES;
Expand Down Expand Up @@ -133,29 +134,22 @@ public static void init() {
.outputs(RICOTTA.getStackForm(2))
.fluidOutputs(Whey.getFluid(856))
.buildAndRegister();
/*
BIO_REACTOR_RECIPES.recipeBuilder().EUt(500).duration(360)
.inputs(CLEAN_CULTURE.getStackForm())
.input(dust, Calcite)
.fluidInputs(FungalGrowthMedium.getFluid(1000))
.outputs(PENICILLIUM_ROQUEFORTI_CULTURE.getStackForm())
.buildAndRegister();
BIO_REACTOR_RECIPES.recipeBuilder().EUt(500).duration(200)
.inputs(PENICILLIUM_ROQUEFORTI_CULTURE.getStackForm())
.fluidInputs(FungalGrowthMedium.getFluid(1000))
.outputs(PenicilliumRoqueforti.getItemStack())
.outputs(CONTAMINATED_PETRI_DISH.getStackForm())
.fluidOutputs(DepletedGrowthMedium.getFluid(1000))
.buildAndRegister();
BIO_REACTOR_RECIPES.recipeBuilder().EUt(500).duration(50)
.inputs(PenicilliumRoqueforti.getItemStack())
.fluidInputs(FungalGrowthMedium.getFluid(250))
.outputs(PenicilliumRoqueforti.getItemStack(2))
.fluidOutputs(DepletedGrowthMedium.getFluid(250))

FERMENTING_RECIPES.recipeBuilder().EUt(500).duration(1000)
.fluidInputs(ColdMoistAir.getFluid(8000))
.outputs(PenicilliumRoqueforti.getItemStack(1))
.buildAndRegister();

if (!GTFOConfig.gtfoChainsConfig.makeChainsHarder) {
ASSEMBLER_RECIPES.recipeBuilder().duration(1000).EUt(32)
.inputs(GORGONZOLA_WHEEL.getStackForm())
.notConsumable(stick, StainlessSteel)
.outputs(PUNCTURED_GORGONZOLA_WHEEL.getStackForm())
.buildAndRegister();
}
MIXER_RECIPES.recipeBuilder().EUt(110).duration(120)
.inputs(Yeast.getItemStack())
.inputs(PenicilliumRoqueforti.getItemStack())
.fluidInputs(LacticAcidBacteria.getFluid(1))
.fluidInputs(CrudeRennetSolution.getFluid(250))
.fluidOutputs(FungalRennetSolution.getFluid(250))
.buildAndRegister();
Expand All @@ -173,7 +167,7 @@ public static void init() {
.input(dust, Salt)
.outputs(SALTED_GORGONZOLA_WHEEL.getStackForm())
.buildAndRegister();
RecipeUtils.chemicalDehydratorProxy().recipeBuilder().duration(460).EUt(24)
GTFOUtils.chemicalDehydratorProxy().recipeBuilder().duration(460).EUt(24)
.inputs(SALTED_GORGONZOLA_WHEEL.getStackForm())
.outputs(SLIGHTLY_AGED_GORGONZOLA_WHEEL.getStackForm())
.fluidOutputs(Whey.getFluid(35))
Expand All @@ -193,7 +187,6 @@ public static void init() {
.notConsumable(SLICER_BLADE_OCTAGONAL)
.outputs(GORGONZOLA_TRIANGULAR_SLICE.getStackForm(16))
.buildAndRegister();
*/

LATHE_RECIPES.recipeBuilder().EUt(72).duration(360)
.input(block, StainlessSteel)
Expand Down

0 comments on commit 905a2a2

Please sign in to comment.