From 84bb9619a564c7f0dd731cd9a5e4b4eebbe245b6 Mon Sep 17 00:00:00 2001 From: notnotmelon Date: Wed, 10 Jan 2024 15:57:51 -0600 Subject: [PATCH] turd: fix some questionable balance decisions from last patch --- changelog.txt | 4 ++++ locale/en/techs.cfg | 2 +- prototypes/upgrades/compost.lua | 2 +- prototypes/upgrades/research.lua | 1 - prototypes/upgrades/scrondrix.lua | 4 +--- 5 files changed, 7 insertions(+), 6 deletions(-) diff --git a/changelog.txt b/changelog.txt index 2dc93291..f2a9dd5a 100644 --- a/changelog.txt +++ b/changelog.txt @@ -3,6 +3,10 @@ Version: 2.1.14 Date: ??? Changes: - Fixed that choosing a T.U.R.D. gave an error on new save files + - Fixed sulfur processing tech unlocking the gas processing unit twice (https://github.com/pyanodon/pybugreports/issues/366) + - Nerfed scrondrix path 1. No longer grants bonus cubs + - Buffed scrondrix path 2. Multiplies meat by 3x instead of 5x. No more -20% speed downgrade + - Nerfed composter path 1. Dried biomass amount reduced 12 -> 4 --------------------------------------------------------------------------------------------------- Version: 2.1.13 Date: 2024-1-8 diff --git a/locale/en/techs.cfg b/locale/en/techs.cfg index 9e6944aa..276c6c24 100644 --- a/locale/en/techs.cfg +++ b/locale/en/techs.cfg @@ -408,7 +408,7 @@ carbide-c=Carbide connection gs=Growth system zero=Total darkness icd=Integrated circulation drive -wire-netting=Dried out +wire-netting=Dried calk extra-water=NaCl irrigation crop-rotation=Crop rotation eye-out=Eyestalk ablation diff --git a/prototypes/upgrades/compost.lua b/prototypes/upgrades/compost.lua index 05d5ea86..fd9270c0 100644 --- a/prototypes/upgrades/compost.lua +++ b/prototypes/upgrades/compost.lua @@ -186,7 +186,7 @@ if data and not yafc_turd_integration then fine_powdered_biomass.energy_required = 3 fine_powdered_biomass.main_product = 'steam' FUN.add_result(fine_powdered_biomass, {type = 'fluid', name = 'steam', amount = 250, temperature = 250}) - FUN.add_result(fine_powdered_biomass, {type = 'item', name = 'dried-biomass', amount = 12}) + FUN.add_result(fine_powdered_biomass, {type = 'item', name = 'dried-biomass', amount = 4}) data:extend{fine_powdered_biomass} end diff --git a/prototypes/upgrades/research.lua b/prototypes/upgrades/research.lua index 98340e84..55f42ffd 100644 --- a/prototypes/upgrades/research.lua +++ b/prototypes/upgrades/research.lua @@ -42,7 +42,6 @@ return { ingredients = { {'automation-science-pack', 1}, {'logistic-science-pack', 1}, - {'chemical-science-pack', 1}, }, time = 45 } diff --git a/prototypes/upgrades/scrondrix.lua b/prototypes/upgrades/scrondrix.lua index a7226a79..030814e6 100644 --- a/prototypes/upgrades/scrondrix.lua +++ b/prototypes/upgrades/scrondrix.lua @@ -17,7 +17,6 @@ if data and not yafc_turd_integration then if i > 4 and i < 8 then recipe.localised_name = {'recipe-name.' .. recipe.name} end recipe.name = recipe.name .. '-boron' FUN.add_ingredient(recipe, {'boric-acid-barrel', FUN.remove_ingredient(recipe, 'water-barrel')}) - if i > 7 then FUN.add_result_amount(recipe, 'scrondrix-pup', i) end if i > 4 and i < 8 then recipe.results[1].probability = recipe.results[1].probability * 1.5 recipe.energy_required = recipe.energy_required * 0.75 @@ -40,7 +39,7 @@ if data and not yafc_turd_integration then }) do if i > 4 and i < 8 then recipe.localised_name = {'recipe-name.' .. recipe.name} end recipe.name = recipe.name .. '-vegan' - FUN.multiply_ingredient_amount(recipe, 'meat', 5) + FUN.multiply_ingredient_amount(recipe, 'meat', 3) FUN.remove_ingredient(recipe, 'fawogae') FUN.remove_ingredient(recipe, 'yotoi-leaves') FUN.remove_ingredient(recipe, 'raw-fiber') @@ -123,7 +122,6 @@ return { icon_size = 128, order = 'c-a', effects = { -- the effects the tech will have on the building. valid types: 'module-effects', 'unlock-recipe', 'recipe-replacement', 'machine-replacement' - {speed = -0.2, consumption = 2, type = 'module-effects'}, {old = 'Scrondrix cub 1', new = 'Scrondrix cub 1-vegan', type = 'recipe-replacement'}, {old = 'Scrondrix cub 2', new = 'Scrondrix cub 2-vegan', type = 'recipe-replacement'}, {old = 'Scrondrix cub 3', new = 'Scrondrix cub 3-vegan', type = 'recipe-replacement'},