summaryrefslogtreecommitdiff
path: root/npc/009-4
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-06-23 13:11:49 -0300
committerJesusaves <cpntb1@ymail.com>2018-06-23 13:11:49 -0300
commit8cc519e552c1b812c3170d8b63311e3088e73bc6 (patch)
treec3a77a405adf3d55748f9e0186511cde6e56f405 /npc/009-4
parentc272dcb128037a647692a02721d02acd51d26002 (diff)
downloadserverdata-8cc519e552c1b812c3170d8b63311e3088e73bc6.tar.gz
serverdata-8cc519e552c1b812c3170d8b63311e3088e73bc6.tar.bz2
serverdata-8cc519e552c1b812c3170d8b63311e3088e73bc6.tar.xz
serverdata-8cc519e552c1b812c3170d8b63311e3088e73bc6.zip
Halinarzo Hospital. Also adds a nurse.
Diffstat (limited to 'npc/009-4')
-rw-r--r--npc/009-4/_import.txt3
-rw-r--r--npc/009-4/_warps.txt3
-rw-r--r--npc/009-4/nurse.txt23
3 files changed, 29 insertions, 0 deletions
diff --git a/npc/009-4/_import.txt b/npc/009-4/_import.txt
new file mode 100644
index 000000000..9703549e1
--- /dev/null
+++ b/npc/009-4/_import.txt
@@ -0,0 +1,3 @@
+// Map 009-4: Halinarzo Hospital
+// This file is generated automatically. All manually added changes will be removed when running the Converter.
+"npc/009-4/_warps.txt",
diff --git a/npc/009-4/_warps.txt b/npc/009-4/_warps.txt
new file mode 100644
index 000000000..247d1db43
--- /dev/null
+++ b/npc/009-4/_warps.txt
@@ -0,0 +1,3 @@
+// This file is generated automatically. All manually added changes will be removed when running the Converter.
+// Map 009-4: Halinarzo Hospital warps
+009-4,48,54,0 warp #009-4_48_54 0,0,009-1,33,63
diff --git a/npc/009-4/nurse.txt b/npc/009-4/nurse.txt
new file mode 100644
index 000000000..2d3dd0dbd
--- /dev/null
+++ b/npc/009-4/nurse.txt
@@ -0,0 +1,23 @@
+// TMW-2 Script
+// Author:
+// Jesusalva
+
+009-4,39,46,0 script Halinarzo's Nurse NPC_FEMALE,{
+ Nurse(.name$, 10, 5);
+ close;
+
+OnInit:
+ .@npcId = getnpcid(0, .name$);
+ // I am too lazy to dress every NPC I add >.<
+ setunitdata(.@npcId, UDT_HEADTOP, NPCEyes);
+ setunitdata(.@npcId, UDT_HEADMIDDLE, MiniSkirt);
+ setunitdata(.@npcId, UDT_HEADBOTTOM, ShortTankTop);
+ setunitdata(.@npcId, UDT_HAIRSTYLE, 12);
+ setunitdata(.@npcId, UDT_HAIRCOLOR, 9);
+
+ .sex = G_FEMALE;
+ .distance = 5;
+ end;
+
+}
+