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