meta: make tribes slightly weaker to speed up the early game

This commit is contained in:
evanpelle
2026-05-02 09:36:44 -06:00
parent f850bdb605
commit 1be197229a
+4 -9
View File
@@ -683,16 +683,11 @@ export class DefaultConfig implements Config {
mag = 0;
}
if (
attacker.type() === PlayerType.Human &&
(attacker.type() === PlayerType.Human ||
attacker.type() === PlayerType.Nation) &&
defender.type() === PlayerType.Bot
) {
mag *= 0.8;
}
if (
attacker.type() === PlayerType.Nation &&
defender.type() === PlayerType.Bot
) {
mag *= 0.8;
mag *= 0.7;
}
}
@@ -864,7 +859,7 @@ export class DefaultConfig implements Config {
toAdd *= ratio;
if (player.type() === PlayerType.Bot) {
toAdd *= 0.6;
toAdd *= 0.5;
}
if (player.type() === PlayerType.Nation) {