summaryrefslogtreecommitdiff
path: root/npc/config/hairstyle_config.txt
blob: 04b73b119d20c305de04d18ce7b0a3d348ecdc9a (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
24
25
26
27
28
// Hairstyle config
// set array of style and colors
// Author: Omatt

-	script	hairstyle_config	NPC_HIDDEN,{

    end;

OnInit:
    setarray $@hairstyle$[0], "(none)", "Bald", "Bowl cut", "Combed back",
       "Emo", "Mohawk", "Pompadour", "Center parting", "Long and slick",
       "Short and curly", "Pigtails", "Long and curly", "Parted",
       "Perky ponytail", "Wave", "Mane", "Bun", "Wavy", "Bunches",
       "Long ponytail", "Infinitely long", "Choppy", "Wild", "Punk",
       "Imperial", "Side strand", "Messy", "Flat ponytail",
       "Tapered Nape";

    setarray $@haircolor$[0], "Off black", "Ash brown", "Dark brown",
       "Dark copper", "Auburn brown", "Honey brown", "Copper blonde",
       "Golden blonde", "Pure platinum", "Cherry blossom", "Pinky pink",
       "Fire red", "Light violet", "Purple plum", "Navy blue",
       "Lagoon blue", "Twisted teal", "Spring Green", "Forest Green",
       "Silver Grey", "Imperial Blue";

    setarray $@allraces$[0], "Human", "Human", "Human", "Elf", "Orc",
        "Raijin", "Tritan", "Ukar", "Redy", "Savior";
    end;
}