From fe1b8585dabc9351fcc1a665d6631b6219048d37 Mon Sep 17 00:00:00 2001 From: Pyritie Date: Sun, 14 Dec 2025 12:37:00 +0000 Subject: [PATCH] nerfed biomass from vanilla plants, changed honey to sugar to the extractor --- CHANGELOG.md | 4 +++- kubejs/server_scripts/tfg/food/recipes.biomass.js | 8 ++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2715dd668..c23a7f5ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,8 @@ ### Breaking Changes - The previous silicone rubber styrene butadiene rubber belts have been changed to a different item, so please break and recycle them before updating if you're using any. - Cleaning meal bag foil packs is now done in the chem bath instead of the ore washer. @Pyritie -- Syngas crafting in the Vacuum Chamber will now output into the chamber itself instead of the Basin, so it won't get mixed up with the creosote (#2378) +- Turning honey into sugar is now done in the extractor instead of the centrifuge. @Pyritie +- Syngas crafting in the Vacuum Chamber will now output into the chamber itself instead of the Basin, so it won't get mixed up with the creosote (#2378) @Pyritie ### Changes #### Hot or Not - Added "too cold to handle" and "too light to handle" for cold things and lighter-than-air things. Uses the same mechanic as tongs. Lighter-than-air things can also be negated with something Very Heavy in your inventory, and all effects (including "too hot to handle") are negated by super tanks/chests and cells, but *not* drums or buckets. Check the `#tfg:hot_protection_equipment`, `#tfg:cold_protection_equipment`, and `#tfg:floating_protection_equipment` tags for equipment that makes you immune to these effects. The equipment also protects against pipes! @Pyritie @@ -23,6 +24,7 @@ - Added a renderer to the electric greenhouse, so now you can visually see your crops grow! @RubenVerg - Added some distant horizons config options, for those who want to use it (#2406) @Mqrius - More animals now drop animal fat (#2367) @Pyritie +- Nerfed how much biomass and plant balls are produced from certain vanilla plants (#2361) @Pyritie ### Bug fixes - Fixed aged sake, vodka, and whiskey losing their buff effects, but for real this time @Pyritie - Fixed fries and cheese curds not being able to be put on burgers. @Redeix diff --git a/kubejs/server_scripts/tfg/food/recipes.biomass.js b/kubejs/server_scripts/tfg/food/recipes.biomass.js index 65aeb4fcf..82455ef59 100644 --- a/kubejs/server_scripts/tfg/food/recipes.biomass.js +++ b/kubejs/server_scripts/tfg/food/recipes.biomass.js @@ -70,14 +70,14 @@ function registerTFGBiomassRecipes(event) { event.recipes.gtceu.brewery('biomass_from_minecraft_plants') .itemInputs('#createaddition:plants') .inputFluids("#tfc:any_water 20") - .outputFluids(Fluid.of('gtceu:biomass', 100)) + .outputFluids(Fluid.of('gtceu:biomass', 20)) .duration(100) .EUt(3) event.recipes.gtceu.brewery('biomass_from_wart_blocks') .itemInputs('#minecraft:wart_blocks') .inputFluids("#tfc:any_water 20") - .outputFluids(Fluid.of('gtceu:biomass', 50)) + .outputFluids(Fluid.of('gtceu:biomass', 100)) .duration(100) .EUt(3) @@ -131,7 +131,7 @@ function registerTFGBiomassRecipes(event) { .EUt(2) event.recipes.gtceu.compressor('plant_ball_from_misc_plants') - .itemInputs('4x #createaddition:plants') + .itemInputs('10x #createaddition:plants') .itemOutputs('gtceu:plant_ball') .duration(300) .EUt(2) @@ -152,7 +152,7 @@ function registerTFGBiomassRecipes(event) { .duration(800) .EUt(6) - event.recipes.gtceu.centrifuge('sugar_from_honey') + event.recipes.gtceu.extractor('sugar_from_honey') .itemInputs('firmalife:raw_honey') .itemOutputs('minecraft:sugar') .duration(400)