From e2185b62221e26c6df76d4bb8f69a87124480220 Mon Sep 17 00:00:00 2001 From: Evan Date: Sun, 23 Feb 2025 20:40:53 -0800 Subject: [PATCH] make ports cheaper to encourage more trades, reduce large territory attack bonus to prevent snowballing --- 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 2e26256e0..8ed8a9d61 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -135,7 +135,7 @@ export class DefaultConfig implements Config { Math.pow( 2, p.unitsIncludingConstruction(UnitType.Port).length, - ) * 250_000, + ) * 125_00, ), territoryBound: true, constructionDuration: this.creativeMode() ? 0 : 2 * 10, @@ -319,8 +319,8 @@ export class DefaultConfig implements Config { } let largeModifier = 1; - if (attacker.numTilesOwned() > 35_000) { - largeModifier = Math.sqrt(35_000 / attacker.numTilesOwned()); + if (attacker.numTilesOwned() > 50_000) { + largeModifier = Math.sqrt(50_000 / attacker.numTilesOwned()); } if (defender.isPlayer()) {