diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index 44ed435ac4..fa0ba761b7 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -814,7 +814,7 @@ export class DefaultConfig implements Config { const maxTroops = player.type() === PlayerType.Human && this.hasInfiniteTroopsFor(player) ? 1_000_000_000 - : 2 * (Math.pow(player.numTilesOwned(), 0.7) * 1000 + 50000) + + : 2 * (Math.pow(player.numTilesOwned(), 0.8) * 170 + 50000) + player .units(UnitType.City) .filter((u) => !u.isUnderConstruction()) @@ -847,7 +847,7 @@ export class DefaultConfig implements Config { troopIncreaseRate(player: Player): number { const max = this.maxTroops(player); - let toAdd = 10 + Math.pow(player.troops(), 0.8) / 4; + let toAdd = 10 + Math.pow(player.troops(), 0.8) / 8; const ratio = 1 - player.troops() / max; toAdd *= ratio;