summaryrefslogtreecommitdiff
path: root/npc/024-8/nurse.txt
blob: 222667aa6a650c8fc01b04bf8868d996f12317ef (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
// TMW2 scripts.
// Authors:
//    Jesusalva
// Description:
//    Nurse.

024-3,33,28,0	script	Frostia's Nurse	NPC_ELF_F,{
    Nurse(.name$, 10, 5);
    close;

OnInit:
    .@npcId = getnpcid(.name$);
    setunitdata(.@npcId, UDT_HEADBOTTOM, CottonSkirt);
    setunitdata(.@npcId, UDT_HEADMIDDLE, TneckSweater);
    setunitdata(.@npcId, UDT_HEADTOP, NPCEyes);
    setunitdata(.@npcId, UDT_HAIRSTYLE, 12);
    setunitdata(.@npcId, UDT_HAIRCOLOR, 14);

    .sex = G_FEMALE;
    .distance = 5;
    end;
}