summaryrefslogtreecommitdiff
path: root/npc/024-8/nurse.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/024-8/nurse.txt')
-rw-r--r--npc/024-8/nurse.txt23
1 files changed, 23 insertions, 0 deletions
diff --git a/npc/024-8/nurse.txt b/npc/024-8/nurse.txt
new file mode 100644
index 000000000..222667aa6
--- /dev/null
+++ b/npc/024-8/nurse.txt
@@ -0,0 +1,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;
+}
+