From f273bc13152d80ed40976d34d29e93ff08a45e6b Mon Sep 17 00:00:00 2001 From: Evan Date: Wed, 9 Apr 2025 22:17:40 -0700 Subject: [PATCH] give more attack bonus larger attack. --- src/core/configuration/DefaultConfig.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/configuration/DefaultConfig.ts b/src/core/configuration/DefaultConfig.ts index 75291af8b..724aea00e 100644 --- a/src/core/configuration/DefaultConfig.ts +++ b/src/core/configuration/DefaultConfig.ts @@ -474,7 +474,7 @@ export class DefaultConfig implements Config { if (defender.isPlayer()) { const ratio = within( - Math.pow(defender.troops() / attackTroops, 0.2), + Math.pow(defender.troops() / attackTroops, 0.4), 0.1, 10, );