summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2020-05-27 16:12:44 -0300
committerJesusaves <cpntb1@ymail.com>2020-06-17 00:46:29 +0000
commit995fec8b6ecc977f0a15db2649e56fda0d664a5f (patch)
treece4cbc0b538288b78371bd7d6c67bcca24c6c4ec
parent04b2a61948f613b5a834cfba775495b8b2c06503 (diff)
downloadserverdata-995fec8b6ecc977f0a15db2649e56fda0d664a5f.tar.gz
serverdata-995fec8b6ecc977f0a15db2649e56fda0d664a5f.tar.bz2
serverdata-995fec8b6ecc977f0a15db2649e56fda0d664a5f.tar.xz
serverdata-995fec8b6ecc977f0a15db2649e56fda0d664a5f.zip
Deprecate gender in favor of body types.
Right now they are called: Tanky, Boobed and Neutral.
-rw-r--r--npc/001-2-41/edouard.txt2
-rw-r--r--npc/commands/debug-look.txt16
-rw-r--r--npc/commands/gender.txt6
-rw-r--r--npc/functions/barber.txt10
-rw-r--r--npc/functions/gender.txt4
5 files changed, 19 insertions, 19 deletions
diff --git a/npc/001-2-41/edouard.txt b/npc/001-2-41/edouard.txt
index 2a3fd4cc..40d53085 100644
--- a/npc/001-2-41/edouard.txt
+++ b/npc/001-2-41/edouard.txt
@@ -131,7 +131,7 @@ OnChair:
l("What is my current hairstyle and hair color?"),
l("I'd like to get a different style."),
l("Can you do something with my color?"),
- l("How about changing my gender?"),
+ l("How about changing my body type?"),
l("What's your story again?"),
l("I'm fine for now, thank you.");
diff --git a/npc/commands/debug-look.txt b/npc/commands/debug-look.txt
index 23acc4da..cf63a207 100644
--- a/npc/commands/debug-look.txt
+++ b/npc/commands/debug-look.txt
@@ -2,15 +2,15 @@ function script BarberDebug {
function setGender {
clear();
- setnpcdialogtitle(l("Appearance Debug - Gender Change"));
- mes(l("Warning: changing your gender will send you back to the character selection screen."));
+ setnpcdialogtitle(l("Appearance Debug - Body Type Change"));
+ mes(l("Warning: changing your body type will send you back to the character selection screen."));
mes("");
- mes(l("Please choose the desired gender:"));
+ mes(l("Please choose the desired body type:"));
next();
menuint(
- l("Male"), GENDER_MALE,
- l("Female"), GENDER_FEMALE,
- l("Non-binary"), GENDER_HIDDEN);
+ l("Tanky"), GENDER_MALE,
+ l("Boobed"), GENDER_FEMALE,
+ l("Neutral"), GENDER_HIDDEN);
Gender = @menuret;
return;
@@ -54,7 +54,7 @@ function script BarberDebug {
mes "";
mes "---";
- mes l("Gender") + ": " + genderToString(Gender);
+ mes l("Body Type") + ": " + genderToString(Gender);
mes l("Hair style") + ": " + getlook(LOOK_HAIR);
mes l("Hair color") + ": " + getlook(LOOK_HAIR_COLOR);
mes l("Race") + ": " + Class + " (" + get_race() + ")";;
@@ -63,7 +63,7 @@ function script BarberDebug {
next;
mes l("What do you want to change?");
select
- menuimage("actions/edit", l("Gender") + " [" + l("Requires logout") + "]"),
+ menuimage("actions/edit", l("Body Type") + " [" + l("Requires logout") + "]"),
menuimage("actions/edit", l("Hair style")),
menuimage("actions/edit", l("Hair color")),
menuimage("actions/edit", l("Race")),
diff --git a/npc/commands/gender.txt b/npc/commands/gender.txt
index b852beb0..9ba2c9a4 100644
--- a/npc/commands/gender.txt
+++ b/npc/commands/gender.txt
@@ -6,17 +6,17 @@
OnCall:
if (.@atcmd_parameters$[0] == "") {
- dispbottom("Your current gender is " + genderToString());
+ dispbottom("Your current body type is " + genderToString());
end;
}
.@desired = stringToGender(.@atcmd_parameters$[0]);
if (.@desired == Gender) {
- dispbottom("Your gender is already " + genderToString());
+ dispbottom("Your body type is already " + genderToString());
} else {
Gender = .@desired;
- dispbottom("Gender changed to " + genderToString());
+ dispbottom("Body Type changed to " + genderToString());
}
end;
diff --git a/npc/functions/barber.txt b/npc/functions/barber.txt
index 1df0a307..b88c4399 100644
--- a/npc/functions/barber.txt
+++ b/npc/functions/barber.txt
@@ -111,14 +111,14 @@ function script BarberChangeColor {
function script BarberChangeGender {
mesn("Warning");
- mes(b(l("Changing your gender will send you back to the character selection screen.")));
+ mes(b(l("Changing your body type will send you back to the character selection screen.")));
next();
- mes(l("Please select the desired gender:"));
+ mes(l("Please select the desired body type:"));
menuint(
- l("Female"), GENDER_FEMALE,
- l("Male"), GENDER_MALE,
- l("Non-binary"), GENDER_HIDDEN);
+ l("Boobed"), GENDER_FEMALE,
+ l("Tanky"), GENDER_MALE,
+ l("Neutral"), GENDER_HIDDEN);
Gender = @menuret;
return;
diff --git a/npc/functions/gender.txt b/npc/functions/gender.txt
index 0f153c53..209dcc37 100644
--- a/npc/functions/gender.txt
+++ b/npc/functions/gender.txt
@@ -8,6 +8,6 @@ function script stringToGender {
function script genderToString {
.@gender = getarg(0, Gender);
- return .@gender == GENDER_FEMALE ? l("female") :
- .@gender == GENDER_MALE ? l("male") : l("non-binary");
+ return .@gender == GENDER_FEMALE ? l("boobed") :
+ .@gender == GENDER_MALE ? l("tanky") : l("neutral");
}