Skip to content

Commit 3797d2a

Browse files
committed
chore: balancing
1 parent 94ae817 commit 3797d2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/deathbattle.ts

Lines changed: 2 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.25);
253+
const heal = Math.floor(attacker.maxHp * 0.3);
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;
@@ -321,7 +321,7 @@ async function simulateBattleStep(
321321
narration = `✈️ **${attacker.name}** calls in an airstrike from above, raining destruction!`;
322322
break;
323323
case "Divine Intervention":
324-
const divineHeal = Math.floor(attacker.maxHp * 0.2);
324+
const divineHeal = Math.floor(attacker.maxHp * 0.25);
325325
attacker.hp = Math.min(attacker.hp + divineHeal, attacker.maxHp);
326326
attacker.defense += 5;
327327
narration = `⭐ **${attacker.name}** receives the labyrinth's divine intervention, healing ${divineHeal} HP and gaining divine protection!`;

0 commit comments

Comments
 (0)