diff options
-rw-r--r-- | npc/026-7/boss.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/026-7/boss.txt b/npc/026-7/boss.txt index cfcca6566..a46953716 100644 --- a/npc/026-7/boss.txt +++ b/npc/026-7/boss.txt @@ -286,6 +286,7 @@ OnTimer10000: if (.@hp <= 2 && .start_time < gettimetick(2) + 180) { unittalk(.MK, "Death touch!"); maptimer2("026-7", 10, "Impregnable#B7F::OnDeathTouch"); + .mana += 5; // Replenish the skill mana cost .start_time = gettimetick(2) + 180 + 60; // This only happens once } } @@ -531,9 +532,9 @@ OnDeathTouch: SC_Bonus(15, SC_CURSE, 1); // Consume some mana if (islegendary()) - percentheal 0, -15; + percentheal -2, -15; else - percentheal 0, -25; + percentheal -2, -25; // If you ran out of MP, consume 1/3 HP (Death Touch) if (Sp < 10) { dispbottom l("Death grazes your soul (-%s HP)", fnum(Hp*3/10)); |