summaryrefslogtreecommitdiff
path: root/npc/magic/level1-transmute-wood.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-04-09 22:46:21 -0300
committerJesusaves <cpntb1@ymail.com>2021-04-09 22:46:21 -0300
commitb376c7433420d59afcc36c94cab1f9cb38192ff2 (patch)
tree157aa2310f91935f5a68b003e839c7bd71a2f6b0 /npc/magic/level1-transmute-wood.txt
parenta9cb0b4cf5273d5d84669dd916deb3e9a1e64b7a (diff)
downloadserverdata-b376c7433420d59afcc36c94cab1f9cb38192ff2.tar.gz
serverdata-b376c7433420d59afcc36c94cab1f9cb38192ff2.tar.bz2
serverdata-b376c7433420d59afcc36c94cab1f9cb38192ff2.tar.xz
serverdata-b376c7433420d59afcc36c94cab1f9cb38192ff2.zip
Remove magic directory (would need a reimplementation anyway)
Diffstat (limited to 'npc/magic/level1-transmute-wood.txt')
-rwxr-xr-xnpc/magic/level1-transmute-wood.txt36
1 files changed, 0 insertions, 36 deletions
diff --git a/npc/magic/level1-transmute-wood.txt b/npc/magic/level1-transmute-wood.txt
deleted file mode 100755
index 8645b208..00000000
--- a/npc/magic/level1-transmute-wood.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-- script spell-transmute-wood NPC32767,{
- if(call("magic_checks")) end;
- if (Sp < 5) end;
- if (getskilllv(SKILL_MAGIC) < .level) end;
- if (countitem("RawLog") >= 1) delitem "RawLog", 1; else end;
- set @_M_BLOCK, 1; // block casting, until the timer clears it
- addtimer 4000, "Magic Timer::OnClear"; // set the new debuff
- callfunc "adjust_spellpower";
- Sp = Sp - 5;
- misceffect FX_MAGIC_RED, strcharinfo(0);
- if (@args$ == "boo") goto L_Mouboo;
- elif (@args$ == "lurk") goto L_Skytlurk;
- else message strcharinfo(0), "Magic : ##3##BYou do not know how to transmute wood into this kind of animal."; // FIXME: write a better sentence
- end;
-
-L_Mouboo:
- setarray @create_params[0], 1, 40;
- setarray @create_items$[0], "MoubooFigurine", "WarpedLog";
- callfunc "magic_create_item";
- callfunc "magic_exp";
- end;
-
-L_Skytlurk:
- if (rand(2) == 1) getitem "Iten", 1;
- else getitem "WarpedLog", 1;
- message strcharinfo(0), "Magic : ##3##BYou have no idea what a Skrytlurk looks like.";
- end;
-
-OnInit:
- .school = SKILL_MAGIC_TRANSMUTE;
- set .invocation$, chr(MAGIC_SYMBOL) + "parum"; // used in npcs that refer to this spell
- void call("magic_register");
- .level = 1;
- .exp_gain = 1;
- end;
-}