diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-04-09 22:46:21 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-04-09 22:46:21 -0300 |
commit | b376c7433420d59afcc36c94cab1f9cb38192ff2 (patch) | |
tree | 157aa2310f91935f5a68b003e839c7bd71a2f6b0 /npc/magic/level1-magic-blade.txt | |
parent | a9cb0b4cf5273d5d84669dd916deb3e9a1e64b7a (diff) | |
download | serverdata-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-magic-blade.txt')
-rwxr-xr-x | npc/magic/level1-magic-blade.txt | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/npc/magic/level1-magic-blade.txt b/npc/magic/level1-magic-blade.txt deleted file mode 100755 index ab73cdc2..00000000 --- a/npc/magic/level1-magic-blade.txt +++ /dev/null @@ -1,54 +0,0 @@ -- script magic-blade NPC32767,{ - if(call("magic_checks")) end; - if (Sp < 9) end; - .@level = getskilllv(.school); - if (getskilllv(SKILL_MAGIC) < .level) end; - if (.@level <= 2 && countitem("SharpKnife") >= 1) set .@component$, "SharpKnife"; - elif (.@level <= 2 && countitem("Knife") >= 1) set .@component$, "Knife"; - elif (.@level <= 2) end; - if (.@component$ != "") delitem .@component$, 1; - set @_M_BLOCK, 1; // block casting, until the timer clears it - addtimer 500, "Magic Timer::OnClear"; // set the new debuff - callfunc "adjust_spellpower"; - Sp = Sp - 9; - misceffect FX_MAGIC_BLACK, strcharinfo(0); - setarray @chizaspell[0], - if_then_else(.@component$ == "Knife", 40, 60), // dmg - Str, // do not allow to equip light armor, cast, and then switch to heavy armor to get bonus str - (@spellpower/15) + 10, // charges - (((200 - Agi) * 1200) / 200), // delay - @spellpower; - - callfunc "magic_exp"; - goto L_FreeRecast; - -OnDischarge: - if (@chizaspell[2] < 1) end; - @chizaspell[2] = 0; - misceffect FX_FIRE_BURST, strcharinfo(0); - overrideattack; - end; - -OnAttack: - if (target(BL_ID, @target_id, 22) != 22) goto L_FreeRecast; // 0x10 | 0x02 | 0x04 - void call("melee_damage", @chizaspell[4], @target_id, (@chizaspell[0] + rand(@chizaspell[1] + 5))); - @chizaspell[2] = @chizaspell[2] - 1; - goto L_FreeRecast; - -L_FreeRecast: - if (@chizaspell[2] > 0) - addtimer 0, strnpcinfo(0) + "::OnSetRecast"; - end; - -OnSetRecast: - overrideattack @chizaspell[3], 1, ATTACK_ICON_GENERIC, 30, strnpcinfo(0)+"::OnAttack"; - end; - -OnInit: - .school = SKILL_MAGIC_WAR; - set .invocation$, chr(MAGIC_SYMBOL) + "chiza"; // used in npcs that refer to this spell - void call("magic_register"); - .level = 1; - .exp_gain = 1; - end; -} |