summaryrefslogtreecommitdiff
path: root/npc/magic
diff options
context:
space:
mode:
Diffstat (limited to 'npc/magic')
-rw-r--r--npc/magic/level1-grow-plants.txt3
-rw-r--r--npc/magic/level1-lesser-heal.txt3
2 files changed, 5 insertions, 1 deletions
diff --git a/npc/magic/level1-grow-plants.txt b/npc/magic/level1-grow-plants.txt
index c3a1a102..c3b21bad 100644
--- a/npc/magic/level1-grow-plants.txt
+++ b/npc/magic/level1-grow-plants.txt
@@ -16,6 +16,9 @@ function script SK_GrowPlants {
case SKILL_MODRILAX:
.@it = MauveHerb; .@mobId = MauvePlant; break;
}
+ // Consume reagents
+ delitem Root, 1;
+ delitem .@it, 1;
// Continue but with a special flag
SK_summon(.@mobId, 2, 1, false);
return;
diff --git a/npc/magic/level1-lesser-heal.txt b/npc/magic/level1-lesser-heal.txt
index 0f6c9f74..d7de0185 100644
--- a/npc/magic/level1-lesser-heal.txt
+++ b/npc/magic/level1-lesser-heal.txt
@@ -36,8 +36,9 @@ function script SK_Lum {
getunitdata(@skillTarget, UDT_HP);
}
- // No need for healing?
+ // No need for healing? Otherwise, take reagent
if (.@limit <= 0) return;
+ delitem Lifestone, 1;
// Real healing happens here
.@PW=90+(10*@skillLv);