Skip to content

Commit c8d6225

Browse files
authored
chore: abilities balance
1 parent 857fade commit c8d6225

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/commands/battle.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ async function simulateBattleStep(
256256
narration = `💥 **${attacker.name}** channels their alter ego for a devastating burst attack!`;
257257
break;
258258
case "Ego Shield":
259-
attacker.defense += 3;
259+
attacker.defense += 4;
260260
narration = `🛡️ **${attacker.name}** raises an ego shield, increasing their defense!`;
261261
break;
262262
case "Shadow Clone":
@@ -269,12 +269,12 @@ async function simulateBattleStep(
269269
narration = `✨ **${attacker.name}** bathes in the gracious healing light, restoring ${heal} HP!`;
270270
break;
271271
case "Berserker Rage":
272-
attacker.attack += 3;
272+
attacker.attack += 5;
273273
attacker.defense = Math.max(1, attacker.defense - 2);
274274
narration = `😡 **${attacker.name}** enters a berserker rage! (+3 ATK, -2 DEF)`;
275275
break;
276276
case "Time Slow":
277-
attacker.speed += 3;
277+
attacker.speed += 5;
278278
narration = `⏰ **${attacker.name}** manipulates time, increasing their speed!`;
279279
break;
280280
case "Soul Strike":
@@ -346,8 +346,8 @@ async function simulateBattleStep(
346346
narration = `👑 **${attacker.name}** channels their great will, converting their wounds into raw power!`;
347347
break;
348348
case "Toxic Fumes":
349-
attacker.defense += 5;
350-
attacker.speed += 5;
349+
attacker.defense += 3;
350+
attacker.speed += 3;
351351
narration = `☣️ **${attacker.name}** injects themself with Toxic Gunner's fumes, enhancing their reflexes and durability! (+5 DEF, +5 SPD)`;
352352
break;
353353
}

0 commit comments

Comments
 (0)