nerf bots

This commit is contained in:
evanpelle
2025-08-13 11:51:01 -07:00
parent 87e3cf7e79
commit 56c9457421
+4 -1
View File
@@ -744,7 +744,7 @@ export class DefaultConfig implements Config {
this.cityTroopIncrease();
if (player.type() === PlayerType.Bot) {
return maxTroops / 2;
return maxTroops / 3;
}
if (player.type() === PlayerType.Human) {
@@ -796,6 +796,9 @@ export class DefaultConfig implements Config {
}
goldAdditionRate(player: Player): Gold {
if (player.type() === PlayerType.Bot) {
return 50n;
}
return 100n;
}