summaryrefslogtreecommitdiff
path: root/world/map/npc/magic/level1-lesser-heal.txt
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2018-11-11 17:18:14 -0500
committergumi <git@gumi.ca>2018-11-11 22:36:15 -0500
commit0e1a7f000ccdcf6f84ec66192b025f261772cdb3 (patch)
tree7367604274d14b0fdabae946985ef30fc71aa8de /world/map/npc/magic/level1-lesser-heal.txt
parent15e556361dabcee7d215cb6aeb2f157d30c0963a (diff)
downloadserverdata-0e1a7f000ccdcf6f84ec66192b025f261772cdb3.tar.gz
serverdata-0e1a7f000ccdcf6f84ec66192b025f261772cdb3.tar.bz2
serverdata-0e1a7f000ccdcf6f84ec66192b025f261772cdb3.tar.xz
serverdata-0e1a7f000ccdcf6f84ec66192b025f261772cdb3.zip
give unique ids to magic spell effects
Diffstat (limited to 'world/map/npc/magic/level1-lesser-heal.txt')
-rw-r--r--world/map/npc/magic/level1-lesser-heal.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/world/map/npc/magic/level1-lesser-heal.txt b/world/map/npc/magic/level1-lesser-heal.txt
index 3f312566..b2cd4741 100644
--- a/world/map/npc/magic/level1-lesser-heal.txt
+++ b/world/map/npc/magic/level1-lesser-heal.txt
@@ -17,13 +17,13 @@
delitem "Lifestone", 1;
callfunc "adjust_spellpower";
set Sp, Sp - 6;
- misceffect FX_MAGIC_WHITE, strcharinfo(0);
+ misceffect FX_MAGIC_HEAL_CAST, strcharinfo(0);
callfunc "magic_exp";
if (@target_id != BL_ID) goto L_NotMe;
goto L_Continue;
L_NotMe:
- misceffect FX_MAGIC_WHITE, @target_id;
+ misceffect FX_MAGIC_HEAL_HIT, @target_id;
if (get(Hp, @target_id) < 1) end;
void call("gain_heal_xp", min(200, (get(MaxHp, @target_id) - get(Hp, @target_id))), 1, 2, 2);
goto L_Continue;