Skip to content

Commit 94ae817

Browse files
committed
chore: buffed some skills
1 parent a5f5540 commit 94ae817

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/commands/deathbattle.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ async function simulateBattleStep(
250250
narration = `👥 **${attacker.name}** creates shadow clones, striking from multiple angles!`;
251251
break;
252252
case "Healing Light":
253-
const heal = Math.floor(attacker.maxHp * 0.2);
253+
const heal = Math.floor(attacker.maxHp * 0.25);
254254
attacker.hp = Math.min(attacker.hp + heal, attacker.maxHp);
255255
narration = `✨ **${attacker.name}** bathes in the gracious healing light, restoring ${heal} HP!`;
256256
break;
@@ -290,7 +290,8 @@ async function simulateBattleStep(
290290
case "Cleansing":
291291
const cleanseHeal = Math.floor(attacker.maxHp * 0.15);
292292
attacker.hp = Math.min(attacker.hp + cleanseHeal, attacker.maxHp);
293-
narration = `🌿 **${attacker.name}** cleanses their body and soul, healing ${cleanseHeal} HP and purifying debuffs!`;
293+
attacker.speed += 5;
294+
narration = `🌿 **${attacker.name}** cleanses their body and soul, healing ${cleanseHeal} HP, and gaining swift energy! (+5 SPD)`;
294295
break;
295296
case "Raise the Dead":
296297
if (attacker.hp < attacker.maxHp * 0.25) {

0 commit comments

Comments
 (0)