summaryrefslogtreecommitdiff
path: root/npc/magic/level1-lesser-heal.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/magic/level1-lesser-heal.txt')
-rw-r--r--npc/magic/level1-lesser-heal.txt10
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;