summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--npc/functions/barber.txt12
1 files changed, 8 insertions, 4 deletions
diff --git a/npc/functions/barber.txt b/npc/functions/barber.txt
index ceba8fd8..03ce9a53 100644
--- a/npc/functions/barber.txt
+++ b/npc/functions/barber.txt
@@ -11,7 +11,7 @@ function script Barber {
L_Style:
menu
"Bald", -,
- "Ponytail", -,
+ "Flat ponytail", -,
"Bowl cut", -,
"Combed back", -,
"Emo", -,
@@ -23,12 +23,15 @@ L_Style:
"Pigtails", -,
"Long and curly", -,
"Parted", -,
- "Supprise me", -,
+ "Perky ponytail", -,
+ "Wave", -,
+ "Mane", -,
+ "Bun", -,
"Nah, I'm fine", L_Done;
L_Process_Style:
set @style, @menu - 1;
- if (@style == 13) set @style, rand(13);
+ if (@style == 17) set @style, rand(17);
setlook 1, @style;
return;
@@ -44,10 +47,11 @@ L_Color:
"Light red", -,
"Blue", -,
"Dark purple", -,
+ "Black", -,
"Supprise me", -,
"Nah, I'm fine", L_Done;
set @color, @menu - 1;
- if (@color == 10) set @color, rand(10);
+ if (@color == 11) set @color, rand(11);
setlook 6, @color;
return;