From f788ff1e3e73da13711d5cefc7ae676a65997b23 Mon Sep 17 00:00:00 2001 From: Alexander Yakovlev Date: Sat, 13 Jan 2024 09:13:33 +0600 Subject: [PATCH] pronoun choice --- game/game.ink | 3 ++- game/pronouns.ink | 14 +++++++------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/game/game.ink b/game/game.ink index ae4d637..b892d41 100644 --- a/game/game.ink +++ b/game/game.ink @@ -1,6 +1,7 @@ # author: Oreolek # title: chargen INCLUDE increments.ink +INCLUDE pronouns.ink VAR ifid = "fill this pls" VAR background = "back.png" @@ -88,7 +89,7 @@ Select your name. Select your Mystery Flavor. -+ Egg -> step1 ++ Egg -> step_pronouns + (Back) -> step_name === step1 diff --git a/game/pronouns.ink b/game/pronouns.ink index 4bc607c..3fc9f10 100644 --- a/game/pronouns.ink +++ b/game/pronouns.ink @@ -12,7 +12,7 @@ CONST GEN_SHE = "she" CONST GEN_IT = "it" CONST GEN_THEY = "they" 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) === function me === @@ -32,22 +32,22 @@ VAR pronoun = pronouns.he } // You(), you(), Yours(), yours(), spnoun() and splural() are unused in English. -=== choose_pronouns === +=== step_pronouns === Choose your pronouns: * He/him ~ pronoun = pronouns.he - ->intro + ->step1 * She/her ~ pronoun = pronouns.she - ->intro + ->step1 * It/they ~ pronoun = pronouns.it - ->intro + ->step1 * They/they (singular) ~ pronoun = pronouns.they_singular - ->intro + ->step1 * They/they (plural) ~ pronoun = pronouns.they_plural - ->intro + ->step1