nerf bots

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