* Updated whitespace
* Refactored responses relying on random choices
This commit is contained in:
LoafyLemon 2023-03-28 18:47:52 +01:00
parent 7b18968627
commit 8341ddae35
3 changed files with 4251 additions and 4275 deletions

File diff suppressed because it is too large Load Diff

View File

@ -119,15 +119,12 @@ label too_much:
call her_walk(action="leave") call her_walk(action="leave")
$ _responses = [ random:
"(*Hmm*... I guess it was a little too soon for that.)", gen "(*Hmm*... I guess it was a little too soon for that.)" ("base", xpos="far_left", ypos="head")
"(Did I say something wrong...?)", gen "(Did I say something wrong...?)" ("base", xpos="far_left", ypos="head")
"(Welp, was worth a shot I guess.)", gen "(Welp, was worth a shot I guess.)" ("base", xpos="far_left", ypos="head")
"(Perhaps I should rethink my approach...)", gen "(Perhaps I should rethink my approach...)" ("base", xpos="far_left", ypos="head")
"(Judging by her reaction she's not yet ready for it...)" gen "(Judging by her reaction she's not yet ready for it...)" ("base", xpos="far_left", ypos="head")
]
$ renpy.say(m, renpy.random.choice(_responses))
$ her_mood += 6 $ her_mood += 6
@ -142,15 +139,12 @@ label too_much_public:
call her_walk(action="leave") call her_walk(action="leave")
$ _responses = [ random:
"(*Hmm*... Maybe I should start with some easier tasks to lower her reputation first.)", gen "(*Hmm*... Maybe I should start with some easier tasks to lower her reputation first.)" ("base", xpos="far_left", ypos="head")
"(I guess she still cares too much about her precious reputation.)", gen "(I guess she still cares too much about her precious reputation.)" ("base", xpos="far_left", ypos="head")
"(Silly girl still doesn't understand that her *reputation* isn't as important as she thinks.)", gen "(Silly girl still doesn't understand that her *reputation* isn't as important as she thinks.)" ("base", xpos="far_left", ypos="head")
"(Did I ask too much of her...?)", gen "(Did I ask too much of her...?)" ("base", xpos="far_left", ypos="head")
"(She doesn't seem to be ready for this just yet.)" gen "(She doesn't seem to be ready for this just yet.)" ("base", xpos="far_left", ypos="head")
]
$ renpy.say(m, renpy.random.choice(_responses))
$ her_mood += 6 $ her_mood += 6

View File

@ -247,7 +247,15 @@ label letter_delay:
with d5 with d5
pause.2 pause.2
$ renpy.say(g4, renpy.random.choice(["fuck off", "bug off", "get out", "get the hell out of here", "go away", "away with you", "don't you even dare shit on my floor"])+", you"+renpy.random.choice([" stupid", " silly", " annoying", "", " idiotic", " bloody"])+renpy.random.choice([" flying rat!", " bird!", " poor excuse for a pigeon!", " pigeon!", " idiot!"])) random:
gen "Bugger off, you poor excuse for a pigeon!" ("angry", xpos="far_left", ypos="head")
gen "Get out! Silly bird..." ("angry", xpos="far_left", ypos="head")
gen "Get the hell out of here!" ("angry", xpos="far_left", ypos="head")
gen "Go away you flying rat!" ("angry", xpos="far_left", ypos="head")
gen "Away with you!" ("angry", xpos="far_left", ypos="head")
gen "Shoo!" ("angry", xpos="far_left", ypos="head")
gen "Don't you dare shit on my floors!" ("angry", xpos="far_left", ypos="head")
pause.1 pause.1
call gen_chibi("rummage", 360, 429, flip=False) call gen_chibi("rummage", 360, 429, flip=False)