make impossible harder

This commit is contained in:
Evan
2025-02-13 15:19:54 -08:00
parent 9dc326e06a
commit b859e5417b
+2 -2
View File
@@ -360,9 +360,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;