diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index 985397d3d..c3cd57da6 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -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; }