make impossible harder

This commit is contained in:
Evan
2025-02-13 15:19:54 -08:00
parent 240808c8de
commit a82c47776d
+2 -2
View File
@@ -368,9 +368,9 @@ export class DefaultConfig implements Config {
case Difficulty.Medium:
return 5_000 * (playerInfo?.nation?.strength ?? 1);
case Difficulty.Hard:
return 15_000 * (playerInfo?.nation?.strength ?? 1);
case Difficulty.Impossible:
return 20_000 * (playerInfo?.nation?.strength ?? 1);
case Difficulty.Impossible:
return 50_000 * (playerInfo?.nation?.strength ?? 1);
}
}
return this.creativeMode() ? 1_000_000 : 25_000;