diff options
author | Andrei Karas <akaras@inbox.ru> | 2020-11-10 15:35:56 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2020-11-13 06:49:35 +0300 |
commit | c4ad7a2bdcfc30e72df5c733221fa07a8d37c1ce (patch) | |
tree | 63b6ad7665e76ffb359f111abc9c1320e786bf6a /npc/001-2-41/edouard.txt | |
parent | 5838c6001f2bf57c9cbe5753d3a667ac5a8ab984 (diff) | |
download | serverdata-genderfix.tar.gz serverdata-genderfix.tar.bz2 serverdata-genderfix.tar.xz serverdata-genderfix.zip |
Change body type back to gendergenderfix
Diffstat (limited to 'npc/001-2-41/edouard.txt')
-rw-r--r-- | npc/001-2-41/edouard.txt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/npc/001-2-41/edouard.txt b/npc/001-2-41/edouard.txt index abb764b7..126ccf6e 100644 --- a/npc/001-2-41/edouard.txt +++ b/npc/001-2-41/edouard.txt @@ -30,7 +30,7 @@ function script EdouardCheckChair { EdouardCheckChair .map$, .x, .y; OnInit: - .bodytype = BODYTYPE_1; + .sex = GENDER_FEMALE; .distance = 1; end; } @@ -40,7 +40,7 @@ OnInit: EdouardCheckChair .map$, .x, .y; OnInit: - .bodytype = BODYTYPE_1; + .sex = GENDER_FEMALE; .distance = 1; end; } @@ -50,7 +50,7 @@ OnInit: EdouardCheckChair .map$, .x, .y; OnInit: - .bodytype = BODYTYPE_1; + .sex = GENDER_FEMALE; .distance = 1; end; } @@ -60,7 +60,7 @@ OnInit: EdouardCheckChair .map$, .x, .y; OnInit: - .bodytype = BODYTYPE_1; + .sex = GENDER_FEMALE; .distance = 1; end; } @@ -70,7 +70,7 @@ OnInit: EdouardCheckChair .map$, .x, .y; OnInit: - .bodytype = BODYTYPE_1; + .sex = GENDER_FEMALE; .distance = 1; end; } @@ -80,7 +80,7 @@ OnInit: EdouardCheckChair .map$, .x, .y; OnInit: - .bodytype = BODYTYPE_1; + .sex = GENDER_FEMALE; .distance = 1; end; } @@ -137,7 +137,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 body type?"), + l("How about changing my gender?"), l("What's your story again?"), l("I'm fine for now, thank you."); @@ -159,7 +159,7 @@ OnChair: l("Anything else?"); break; case 4: - BarberChangeBodyType(); + BarberChangeGender(); speech S_FIRST_BLANK_LINE | S_LAST_NEXT, l("You look fantastic."), l("Anything else?"); @@ -176,7 +176,7 @@ OnChair: } while (1); OnInit: - .bodytype = BODYTYPE_3; + .sex = GENDER_HIDDEN; .distance = 2; end; } |