diff options
author | gumi <git@gumi.ca> | 2018-03-09 14:32:42 -0500 |
---|---|---|
committer | gumi <git@gumi.ca> | 2018-03-09 14:32:42 -0500 |
commit | 86fe713269e28ea8d042dc6f11279ffd8ebe08b4 (patch) | |
tree | 6de19ec73fecdf99a4dee24165a6f44f08cbc224 /world/map/npc/functions/headstyles.txt | |
parent | 4be65a96095c7ba93d941ace30131de253e6de0c (diff) | |
download | serverdata-86fe713269e28ea8d042dc6f11279ffd8ebe08b4.tar.gz serverdata-86fe713269e28ea8d042dc6f11279ffd8ebe08b4.tar.bz2 serverdata-86fe713269e28ea8d042dc6f11279ffd8ebe08b4.tar.xz serverdata-86fe713269e28ea8d042dc6f11279ffd8ebe08b4.zip |
HAIR ON SKELS!!!11
Diffstat (limited to 'world/map/npc/functions/headstyles.txt')
-rw-r--r-- | world/map/npc/functions/headstyles.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/world/map/npc/functions/headstyles.txt b/world/map/npc/functions/headstyles.txt index cd775eea..5369be34 100644 --- a/world/map/npc/functions/headstyles.txt +++ b/world/map/npc/functions/headstyles.txt @@ -33,10 +33,12 @@ function|script|getHeadStyles elif (Class == 3) goto L_Ifriton; elif (Class == 4) goto L_Gispaan; elif (Class == 5) goto L_Sparron; + elif (Class == 6) goto L_Headless; else set Class, 1; // we can not style custom classes, so reset when using the barber goto L_Talpan; L_Talpan: + set @species$, "Talpan"; setarray @HairStyles$[0], "Bald", "Flat ponytail", "Bowl cut", "Combed back", "Emo", "Mohawk", "Pompadour", "Center parting/Short and slick", "Long and slick", @@ -49,7 +51,22 @@ L_Talpan: "Brown";//, "(free slot)", "(free slot)"; return; +L_Headless: + if (Class == 6) set @species$, "Undead"; + setarray @HairStyles$[0], + "Plain", "Flat ponytail", "Bowl cut", "Combed back", "Emo", "Mohawk", + "Pompadour", "Center parting/Short and slick", "Long and slick", + "Short and curly", "Pigtails", "Long and curly", "Parted", + "Perky ponytail", "Wave", "Mane", "Bun", "Shoulder Length Flick", + "Fizzy", "Long and Clipped"; + setarray @HairColors$[0], + "Brunette", "Green", "Dark red", "Light purple", "Gray", "Blonde", + "Teal", "Light red", "Blue", "Dark purple", "Black", "Pink", + "Brown";//, "(free slot)", "(free slot)"; + return; + L_Tritan: + set @species$, "Tritan"; setarray @HairStyles$[0], "Finless", "Mohawk", "Dorsal", "Translucid", "Spiky", "Dual dorsal", "Intricate", "Lateral"; @@ -58,6 +75,7 @@ L_Tritan: return; L_Gispaan: + set @species$, "Gispaan"; setarray @HairStyles$[0], "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", @@ -70,6 +88,7 @@ L_Gispaan: return; L_Sparron: + set @species$, "Sparron"; setarray @HairStyles$[0], "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", @@ -82,6 +101,7 @@ L_Sparron: return; L_Ifriton: + set @species$, "Ifriton"; setarray @HairStyles$[0], "Plain", "Horny", "Kinky", "Fiendish", "Modest", "Spiky"; |