diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index fcb06fa33..7acbbd5c2 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -28,7 +28,7 @@ export abstract class DefaultConfig implements Config { } falloutDefenseModifier(): number { - return 2 + return 5 } defensePostRange(): number { diff --git a/src/core/execution/NukeExecution.ts b/src/core/execution/NukeExecution.ts index 39f5c04ad..14a87a081 100644 --- a/src/core/execution/NukeExecution.ts +++ b/src/core/execution/NukeExecution.ts @@ -64,7 +64,7 @@ export class NukeExecution implements Execution { } private detonate() { - const magnitude = this.type == UnitType.AtomBomb ? { inner: 20, outer: 40 } : { inner: 160, outer: 180 } + const magnitude = this.type == UnitType.AtomBomb ? { inner: 15, outer: 40 } : { inner: 140, outer: 160 } const rand = new PseudoRandom(this.mg.ticks()) const tile = this.mg.tile(this.cell) const toDestroy = bfs(tile, (n: Tile) => {