summaryrefslogtreecommitdiff
path: root/npc/024-8
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-03-16 01:12:41 -0300
committerJesusaves <cpntb1@ymail.com>2019-03-16 01:12:41 -0300
commitbf736124b65dde540c9065be12f6faa89fba2ca3 (patch)
tree577d1e8071d30f511fe5bdf31bada7c01dfa9d86 /npc/024-8
parentfdfe72f2707634323226f8097dc1060f511eba1b (diff)
downloadserverdata-bf736124b65dde540c9065be12f6faa89fba2ca3.tar.gz
serverdata-bf736124b65dde540c9065be12f6faa89fba2ca3.tar.bz2
serverdata-bf736124b65dde540c9065be12f6faa89fba2ca3.tar.xz
serverdata-bf736124b65dde540c9065be12f6faa89fba2ca3.zip
Frostia Town is now working.
Diffstat (limited to 'npc/024-8')
-rw-r--r--npc/024-8/_import.txt1
-rw-r--r--npc/024-8/nurse.txt23
2 files changed, 24 insertions, 0 deletions
diff --git a/npc/024-8/_import.txt b/npc/024-8/_import.txt
index 5d1c1aac0..447477f77 100644
--- a/npc/024-8/_import.txt
+++ b/npc/024-8/_import.txt
@@ -1,3 +1,4 @@
// Map 024-8: Frostia Indoors
// This file is generated automatically. All manually added changes will be removed when running the Converter.
"npc/024-8/_warps.txt",
+"npc/024-8/nurse.txt",
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;
+}
+