File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments