Skip to content

Commit

Permalink
fix: actual food values for sorbets + make getting chocolate slightly…
Browse files Browse the repository at this point in the history
… less stupid
  • Loading branch information
bruberu committed Nov 29, 2024
1 parent 4efa1e2 commit a98a63b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions src/main/java/gregtechfoodoption/item/GTFOMetaItem.java
Original file line number Diff line number Diff line change
Expand Up @@ -1101,16 +1101,16 @@ public void registerSubItems() {

SORBET_PLAIN = addItem(345, "food.sorbet.plain").addComponents(new GTFOFoodStats(0, 0f, false, true)
.nutrients(0, 0f, 0f, 0f, 0f).setEatingDuration(12));
SORBET_APPLE = addItem(346, "food.sorbet.apple").addComponents(new GTFOFoodStats(0, 0f)
SORBET_APPLE = addItem(346, "food.sorbet.apple").addComponents(new GTFOFoodStats(4, 0.5f)
.nutrients(0, 1f, 0f, 0f, 0f).setEatingDuration(12));
SORBET_APRICOT = addItem(347, "food.sorbet.apricot").addComponents(new GTFOFoodStats(0, 0f)
SORBET_APRICOT = addItem(347, "food.sorbet.apricot").addComponents(new GTFOFoodStats(4, 0.5f)
.nutrients(0, 1f, 0f, 0f, 0f).setEatingDuration(12));
SORBET_CHORUS = addItem(348, "food.sorbet.chorus").addComponents(new GTFOFoodStats(0, 0f)
SORBET_CHORUS = addItem(348, "food.sorbet.chorus").addComponents(new GTFOFoodStats(4, 0.5f)
.nutrients(0, 0f, 0f, 0f, 1f).setEatingDuration(12)
.setPotionEffects(new RandomPotionEffect(EnhancedChorusPotion.INSTANCE, 600, 0, 100 - 80)));
SORBET_GRAPE = addItem(349, "food.sorbet.grape").addComponents(new GTFOFoodStats(0, 0f)
SORBET_GRAPE = addItem(349, "food.sorbet.grape").addComponents(new GTFOFoodStats(4, 0.5f)
.nutrients(0, 1f, 0f, 0f, 0f).setEatingDuration(12));
SORBET_LIME = addItem(350, "food.sorbet.lime").addComponents(new GTFOFoodStats(0, 0f)
SORBET_LIME = addItem(350, "food.sorbet.lime").addComponents(new GTFOFoodStats(4, 0.5f)
.nutrients(0, 1f, 0f, 0f, 0f).setEatingDuration(12));
SORBET_VIBRANT = addItem(351, "food.sorbet.vibrant").addComponents(new GTFOFoodStats(0, 0f)
.nutrients(0, 2f, 0f, 0f, 2f).setEatingDuration(12)
Expand Down
12 changes: 6 additions & 6 deletions src/main/java/gregtechfoodoption/recipe/chain/SmogusChain.java
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ public static void init() {

ASSEMBLER_RECIPES.recipeBuilder()
.inputs(GTFOMaterialHandler.CRACKER_GRAHAM_UNGRADED.getItemStack())
.notConsumable(MetaItems.SENSOR_HV.getStackForm())
.notConsumable(MetaItems.SENSOR_LV.getStackForm())
.chancedOutput(GRAHAM_CRACKER.getStackForm(), 7500, 100)
.EUt(340)
.EUt(30)
.duration(40)
.buildAndRegister();

Expand Down Expand Up @@ -145,7 +145,7 @@ public static void init() {
.fluidInputs(GTFOMaterialHandler.MoltenDarkChocolate.getFluid(864))
.fluidInputs(Milk.getFluid(288))
.fluidOutputs(GTFOMaterialHandler.MoltenMilkChocolate.getFluid(1152))
.EUt(500)
.EUt(120)
.duration(280)
.buildAndRegister();

Expand All @@ -162,7 +162,7 @@ public static void init() {
.fluidInputs(GTFOMaterialHandler.MarshmallowSyrupMixture.getFluid(1000))
.circuitMeta(1)
.fluidOutputs(GTFOMaterialHandler.MarshmallowFoam.getFluid(5000))
.EUt(240)
.EUt(30)
.duration(300)
.buildAndRegister();

Expand All @@ -176,7 +176,7 @@ public static void init() {
EXTRACTOR_RECIPES.recipeBuilder()
.input(OrePrefix.dust, Materials.Cocoa)
.fluidOutputs(GTFOMaterialHandler.MoltenUnsweetenedChocolate.getFluid(144))
.EUt(180)
.EUt(30)
.duration(20)
.buildAndRegister();

Expand Down Expand Up @@ -305,7 +305,7 @@ public static void init() {
.fluidInputs(Water.getFluid(1000))
.input(OrePrefix.dust, SodaAsh)
.fluidOutputs(GTFOMaterialHandler.SodiumCarbonateSolution.getFluid(1000))
.EUt(30)
.EUt(8)
.duration(40)
.buildAndRegister();

Expand Down

0 comments on commit a98a63b

Please sign in to comment.