Skip to content

Commit

Permalink
turd: fix some questionable balance decisions from last patch
Browse files Browse the repository at this point in the history
  • Loading branch information
notnotmelon committed Jan 10, 2024
1 parent 0e99272 commit 84bb961
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion locale/en/techs.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion prototypes/upgrades/compost.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
1 change: 0 additions & 1 deletion prototypes/upgrades/research.lua
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ return {
ingredients = {
{'automation-science-pack', 1},
{'logistic-science-pack', 1},
{'chemical-science-pack', 1},
},
time = 45
}
Expand Down
4 changes: 1 addition & 3 deletions prototypes/upgrades/scrondrix.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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')
Expand Down Expand Up @@ -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'},
Expand Down

0 comments on commit 84bb961

Please sign in to comment.