diff options
Diffstat (limited to 'npc/magic')
-rw-r--r-- | npc/magic/level1-lesser-heal.txt | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/npc/magic/level1-lesser-heal.txt b/npc/magic/level1-lesser-heal.txt index bf515062..805b79ec 100644 --- a/npc/magic/level1-lesser-heal.txt +++ b/npc/magic/level1-lesser-heal.txt @@ -13,7 +13,15 @@ function script SK_Lum { // Kill the GM Event if (isequipped(MagicGMTopHat)) .@ok=false; - // Ailments cannot prevent this one because the Lifestione, so... + // Ailments cannot be bypassed nor healed until Lv 3 Life Magic + if (getstatus(SC_BLOODING)) + .@ok=false; + if (getstatus(SC_CURSE)) + .@ok=false; + if (getstatus(SC_POISON) && !getstatus(SC_SLOWPOISON)) + .@ok=false; + if (getstatus(SC_DPOISON) && !getstatus(SC_SLOWPOISON)) + .@ok=false; // Already dead if (Hp < 1) .@ok=false; |