summaryrefslogtreecommitdiff
path: root/npc/functions/barber.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/barber.txt')
-rw-r--r--npc/functions/barber.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/npc/functions/barber.txt b/npc/functions/barber.txt
index 370285b7..cab5f101 100644
--- a/npc/functions/barber.txt
+++ b/npc/functions/barber.txt
@@ -108,3 +108,18 @@ function script BarberChangeColor {
return;
}
+
+function script BarberChangeGender {
+ mesn("Warning");
+ mes(b(l("Changing your gender will send you back to the character selection screen.")));
+ next();
+
+ mes(l("Please select the desired gender:"));
+ menuint(
+ l("Female"), GENDER_FEMALE,
+ l("Male"), GENDER_MALE,
+ l("Non-binary"), GENDER_NONBINARY);
+
+ Gender = @menuret;
+ return;
+}