summaryrefslogtreecommitdiff
path: root/npc/functions/headstyles.txt
blob: c0aeee60d7442a1149f9fe9d5ef8ba09cf620105 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Hairstyle config
// set array of style and colors
-	script	hairstyle_config	NPC_HIDDEN,{
    end;

OnInit:
    setarray $@hairstyle$[0], "(none)", "Bald", "Flat Ponytail", "Bowl Cut", // 3
       "Combed back", "Emo", "Mohawk", "Pompadour", "Center parting", // 8
       "Long and Slick", "Short and Curly", "Pigtails", "Long and Curly", // 12
       "Parted", "Perky Ponytail", "Wave", "Mane", "Bun", // 17
       "Shoulder Length and Flick", "Fizzy", "Long and Clopped", "Bunches", // 21
       "Long Ponytail", "Indefinitely long";

    setarray $@haircolor$[0], "Light Brown", "Green", "Red",
       "Purple", "Gray", "Yellow", "Blue",
       "Light Red", "Light Blue", "Dark Purple", "Black",
       "Pink", "Brown", "Dark";

    setarray $@REFEXP[0], 400, 900, 2250, 6500, 15000;
    end;
}