summaryrefslogtreecommitdiff
path: root/npc/magic/level0-discharge.txt
blob: 986ccf621b8924b4b211a07c3972f02b12c35ce7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-	script	discharge spell	NPC32767,{
    if(call("magic_checks")) end;
    callfunc "magic_exp";

    // tell the spells they were discharged
    // XXX: maybe we could make it do area damage when you discharge (release your energy all of a sudden)
    addtimer 0, "::OnDischarge"; // seeks OnDischarge in ALL npcs
    end;

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