diff options
Diffstat (limited to 'npc/024-8')
-rw-r--r-- | npc/024-8/_import.txt | 1 | ||||
-rw-r--r-- | npc/024-8/nurse.txt | 23 |
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; +} + |