We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdcc3bb commit 21f33f7Copy full SHA for 21f33f7
src/commands/battle.ts
@@ -291,7 +291,8 @@ async function simulateBattleStep(
291
narration = `🔥 **${attacker.name}** rises like a phoenix, healing for ${heal} HP!`;
292
} else {
293
damage = Math.floor(attacker.attack * 1.2);
294
- narration = `🔥 **${attacker.name}** strikes with phoenix fire!`;
+ attacker.defense += 1;
295
+ narration = `🔥 **${attacker.name}** strikes with phoenix fire, their flames hardening their resolve! (+1 DEF)`;
296
}
297
break;
298
case "Relic of Exo":
0 commit comments