From 12e6b8bd92815764490efba8d24f1f05f9e02dcb Mon Sep 17 00:00:00 2001 From: 1brucben <1benjbruce@gmail.com> Date: Fri, 9 May 2025 02:28:19 +0200 Subject: [PATCH] speed adjustment again --- src/core/configuration/DefaultConfig.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index 081d6d162..7cf6bc768 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -512,11 +512,11 @@ export class DefaultConfig implements Config { (defender.isTraitor() ? this.traitorDefenseDebuff() : 1), defenderTroopLoss: defenderdensity, tilesPerTickUsed: - 26 * + 23 * within(defenderdensity, 3, 100) ** 0.2 * (10_000 / attackTroops) ** 0.1 * speed * - within(attackratio, 0.1, 20) ** 0.3, + within(attackratio, 0.1, 20) ** 0.4, }; } else { return { @@ -591,7 +591,7 @@ export class DefaultConfig implements Config { player.units(UnitType.City).length * this.cityPopulationIncrease(); if (player.type() == PlayerType.Bot) { - return maxPop / 3; + return maxPop / 2; } if (player.type() == PlayerType.Human) {