File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-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.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!` ;
You can’t perform that action at this time.
0 commit comments