From 9837401a1b435ee38b6c50588847a51a318c2e46 Mon Sep 17 00:00:00 2001 From: Evan Date: Fri, 4 Apr 2025 17:02:19 -0700 Subject: [PATCH] make atom bombs 500k --- src/core/configuration/DefaultConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index 0fa8f52b1..7d2d7b99c 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -268,7 +268,7 @@ export class DefaultConfig implements Config { case UnitType.AtomBomb: return { cost: (p: Player) => - p.type() == PlayerType.Human && this.infiniteGold() ? 0 : 750_000, + p.type() == PlayerType.Human && this.infiniteGold() ? 0 : 500_000, territoryBound: false, }; case UnitType.HydrogenBomb: