summaryrefslogtreecommitdiff
path: root/world/map/npc/magic/level1-magic-blade.txt
blob: 53ab8572acde41c64d0a3e724077f77071dee462 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
-|script|magic-blade|32767
{
    if(call("magic_checks")) end;
    if (Sp < 9) end;
    set .@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
    sc_start SC_COOLDOWN, 500, 0, BL_ID;
    callfunc "adjust_spellpower";
    set Sp, Sp - 9;
    set CASTS, CASTS + 1;
    if (CASTS < 0) set CASTS, 1; // overflow
    misceffect FX_MAGIC_BLADE_CAST, 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+Agi2)) * 1200) / 200), // delay
        @spellpower;

    callfunc "magic_exp";
    goto L_FreeRecast;

OnDischarge:
    if (@chizaspell[2] < 1) end;
    set @chizaspell[2], 0;
    misceffect FX_MAGIC_DISCHARGE, 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)));
    set @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, OVERRIDE_BLADE, strnpcinfo(0)+"::OnAttack", @chizaspell[2];
    end;

OnInit:
    set .school, SKILL_MAGIC_WAR;
    set .invocation$, chr(MAGIC_SYMBOL) + "chiza"; // used in npcs that refer to this spell
    void call("magic_register");
    set .level, 1;
    set .exp_gain, 1;
    end;
}