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

View File

@ -247,7 +247,15 @@ label letter_delay:
with d5
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
call gen_chibi("rummage", 360, 429, flip=False)