From 0d4f91a52aa39dab3e2372bb1d2b9f7ddd7d10d2 Mon Sep 17 00:00:00 2001 From: Evan Date: Fri, 14 Feb 2025 08:01:46 -0800 Subject: [PATCH] make h-bomb smaller, make mirv 15 million --- src/core/configuration/DefaultConfig.ts | 2 +- src/core/execution/NukeExecution.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index cbed881bb..ad21abb15 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -142,7 +142,7 @@ export class DefaultConfig implements Config { cost: (p: Player) => p.type() == PlayerType.Human && this.creativeMode() ? 0 - : 10_000_000, + : 15_000_000, territoryBound: false, }; case UnitType.MIRVWarhead: diff --git a/src/core/execution/NukeExecution.ts b/src/core/execution/NukeExecution.ts index 1dfda2eef..38f80a933 100644 --- a/src/core/execution/NukeExecution.ts +++ b/src/core/execution/NukeExecution.ts @@ -110,7 +110,7 @@ export class NukeExecution implements Execution { magnitude = { inner: 12, outer: 30 }; break; case UnitType.HydrogenBomb: - magnitude = { inner: 110, outer: 130 }; + magnitude = { inner: 80, outer: 100 }; break; }