Skip to content

Commit 21f33f7

Browse files
committed
chore: balance
1 parent fdcc3bb commit 21f33f7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/commands/battle.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,8 @@ async function simulateBattleStep(
291291
narration = `🔥 **${attacker.name}** rises like a phoenix, healing for ${heal} HP!`;
292292
} else {
293293
damage = Math.floor(attacker.attack * 1.2);
294-
narration = `🔥 **${attacker.name}** strikes with phoenix fire!`;
294+
attacker.defense += 1;
295+
narration = `🔥 **${attacker.name}** strikes with phoenix fire, their flames hardening their resolve! (+1 DEF)`;
295296
}
296297
break;
297298
case "Relic of Exo":

0 commit comments

Comments
 (0)