From f09801fe3e8733b2aac14104119a43166dc4c460 Mon Sep 17 00:00:00 2001 From: Evan Date: Wed, 2 Apr 2025 18:25:31 -0700 Subject: [PATCH] rebalance: MIRV 25M, city cap at 2M --- src/core/configuration/DefaultConfig.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index 88eb0c4cc..b11aa63ec 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -280,7 +280,7 @@ export class DefaultConfig implements Config { cost: (p: Player) => p.type() == PlayerType.Human && this.infiniteGold() ? 0 - : 20_000_000, + : 25_000_000, territoryBound: false, }; case UnitType.MIRVWarhead: @@ -334,7 +334,7 @@ export class DefaultConfig implements Config { p.type() == PlayerType.Human && this.infiniteGold() ? 0 : Math.min( - 1_000_000, + 2_000_000, Math.pow( 2, p.unitsIncludingConstruction(UnitType.City).length,