From 2637e47a162092274313a45858666202008e6bea Mon Sep 17 00:00:00 2001 From: danielmartin0 Date: Fri, 13 Sep 2024 12:39:09 +0100 Subject: [PATCH] tweak --- maps/pirates/balance.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maps/pirates/balance.lua b/maps/pirates/balance.lua index e33d6a8d..de824e37 100644 --- a/maps/pirates/balance.lua +++ b/maps/pirates/balance.lua @@ -109,7 +109,7 @@ Public.EEI_stages = { --multipliers function Public.scripted_biters_pollution_cost_multiplier() local early_game_factor = 1 + 1.2 / ((1 + (Common.overworldx() / 40)) ^ (1.5 + Common.difficulty_scale())) -- the complicated factor makes the early-game easier; in particular the first island, but on easier difficulties the next few islands as well - local factor_accounting_for_new_damage_upgrades = 0.98 ^ (Common.overworldx() / 40) + local factor_accounting_for_new_damage_upgrades = 0.985 ^ (Common.overworldx() / 40) return (1.1 / Math.sloped(Common.difficulty_scale(), 0.7)) * early_game_factor * factor_accounting_for_new_damage_upgrades end