Merge remote-tracking branch 'origin/development' into development

This commit is contained in:
Alexander Yakovlev 2024-01-13 13:23:11 +07:00
commit fcf7af2f0b
2 changed files with 9 additions and 8 deletions

View file

@ -1,6 +1,7 @@
# author: Oreolek # author: Oreolek
# title: chargen # title: chargen
INCLUDE increments.ink INCLUDE increments.ink
INCLUDE pronouns.ink
VAR ifid = "fill this pls" VAR ifid = "fill this pls"
VAR background = "back.png" VAR background = "back.png"
@ -88,7 +89,7 @@ Select your name.
Select your Mystery Flavor. Select your Mystery Flavor.
+ Egg -> step1 + Egg -> step_pronouns
+ (Back) -> step_name + (Back) -> step_name
=== step1 === step1

View file

@ -12,7 +12,7 @@ CONST GEN_SHE = "she"
CONST GEN_IT = "it" CONST GEN_IT = "it"
CONST GEN_THEY = "they" CONST GEN_THEY = "they"
VAR pronoun = pronouns.he VAR pronoun = pronouns.he
// Choose a random pronoun - useful when we're skipping the intro. // Choose a random pronoun - useful when we're skipping the choice.
~ pronoun = LIST_RANDOM(pronouns) ~ pronoun = LIST_RANDOM(pronouns)
=== function me === === function me ===
@ -32,22 +32,22 @@ VAR pronoun = pronouns.he
} }
// You(), you(), Yours(), yours(), spnoun() and splural() are unused in English. // You(), you(), Yours(), yours(), spnoun() and splural() are unused in English.
=== choose_pronouns === === step_pronouns ===
Choose your pronouns: Choose your pronouns:
* He/him * He/him
~ pronoun = pronouns.he ~ pronoun = pronouns.he
->intro ->step1
* She/her * She/her
~ pronoun = pronouns.she ~ pronoun = pronouns.she
->intro ->step1
* It/they * It/they
~ pronoun = pronouns.it ~ pronoun = pronouns.it
->intro ->step1
* They/they (singular) * They/they (singular)
~ pronoun = pronouns.they_singular ~ pronoun = pronouns.they_singular
->intro ->step1
* They/they (plural) * They/they (plural)
~ pronoun = pronouns.they_plural ~ pronoun = pronouns.they_plural
->intro ->step1