4 Commits

Author SHA1 Message Date
0b5ffe4bbd fuckforgotavariable 2022-08-05 00:55:59 -04:00
320a3757c3 scriptupdate 2022-08-05 00:52:54 -04:00
04ee962708 test 2022-08-04 23:09:43 -04:00
a1a5a2f449 test 2022-08-04 22:45:26 -04:00
4 changed files with 90 additions and 24 deletions

BIN
game/images/cg19.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

BIN
game/images/cglewd.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 MiB

View File

@ -159,10 +159,17 @@ label replayStart:
". . ."
#>>speak from the heart
#>>think it through with extra care
python:
#menu item text then label to jump into
choices = [('Speak from the heart', 'fromtheheart'), #[] is list, () is tuple
('Think it through with extra care', 'thinkitthrough')]
#narrator("", interact=False)
renpy.jump(renpy.display_menu(randomize_choices(choices)))
#>>speak from the heart (+1 to score)
label fromtheheart:
pause .5
$ Lyra += 1
C "Actually, Lyra, I'd been wanting to ask you something..."
@ -193,9 +200,10 @@ label replayStart:
"I catch a hint of a blush. An antenna twitches. A good sign?"
#>>
jump secondchoice
#>>think it through with extra care
label thinkitthrough:
pause .5
C "Actually, Lyra, I'd been wanting to ask you something..."
@ -226,9 +234,10 @@ label replayStart:
L "Uhh, I think I get it though!"
#>>
jump secondchoice
#>>
label secondchoice:
pause .5
L "That's real sweet of you, Clodius."
@ -531,10 +540,15 @@ label replayStart:
"I think it's something like..."
#>>Lyra's new agenda is kidnapping civilians and replacing them with replicants to sow dissent among the population to distract from financial abnormalities!
#>>I don't really get it, but I'll nod along. (+1 to score)
python:
#menu item text then label to jump into
choices = [('Lyra\'s new agenda is kidnapping civilians and replacing them with replicants to sow dissent among the population to distract from financial abnormalities!', 'schizo'), #[] is list, () is tuple
('I don\'t really get it, but I\'ll nod along.', 'nodalong')]
#narrator("", interact=False)
renpy.jump(renpy.display_menu(randomize_choices(choices)))
#>>Lyra's new agenda is kidnapping civilians and replacing them with replicants to sow dissent among the population to distract from financial abnormalities!
label schizo:
pause .5
L "Wh-WHAT?!"
@ -582,9 +596,12 @@ label replayStart:
L "God Clodius. Next time I'll use a simpler code, okay?"
#>>
jump thirdchoice
#>>I don't really get it, but I'll nod along. (+1 to score)
label nodalong:
pause .5
$ Lyra += 1
"I get the gist that she's proud of whatever she's working on."
@ -618,9 +635,10 @@ label replayStart:
"But as the seconds pass by, her eyes soften, and her lips begin to quiver. It's not long before she's covering her mouth with her hand in order to stifle back some laughter."
#>>
jump thirdchoice
#>>
label thirdchoice:
pause .5
"Before I can really finish forming my thoughts, there is a knock on the door."
@ -809,10 +827,15 @@ label replayStart:
"..."
#>>Thank her.
#>>Keep trying. (+1 to score)
python:
#menu item text then label to jump into
choices = [('Thank her.', 'thankher'), #[] is list, () is tuple
('Keep trying.', 'keeptrying')]
#narrator("", interact=False)
renpy.jump(renpy.display_menu(randomize_choices(choices)))
#>>Thank her.
label thankher:
pause .5
"Damn my feeble nerves."
@ -870,9 +893,12 @@ label replayStart:
L "Don't say that."
#>>
jump endingcheck
#>>Keep trying. (+1 to score)
label keeptrying:
pause .5
$ Lyra += 1
C "I don't care about sounding awkward."
@ -912,7 +938,6 @@ label replayStart:
"Lyra simply shakes her head and smiles."
"A brilliantly bright smile that spreads from cheek to cheek."
L "You finally said it."
@ -940,9 +965,18 @@ label replayStart:
L "Yes. I'll be your girlfriend, Clodius."
#>>
jump endingcheck
#>>Bad end
label endingcheck:
if Lyra <= 1:
jump badend
elif Lyra == 2:
jump neutralend
elif Lyra == 3:
jump goodend
label badend:
#pause ?
"I feel like more and more a certain gloom has started to seep in tonight."
@ -1078,7 +1112,11 @@ label replayStart:
"..."
#>>Neutral ending
$ persistent.b_end = True
jump playAgain
label neutralend:
#pause ?
"..."
@ -1186,7 +1224,11 @@ label replayStart:
"..."
#>>Good ending
$ persistent.n_end = True
jump playAgain
label goodend:
#pause ?
"Hearing her say it so easily, they ring sincerely in my ears and leave me stunned for a few seconds as those words of hers sink in."
@ -1264,9 +1306,17 @@ label replayStart:
"What a way to kick off this new phase of our relationship..."
$ persistent.g_end = True
if persistent.b_end and persistent.n_end and persistent.g_end:
jump bonusScene
else:
window auto hide
pause 1
jump playAgain
#Bonus scene: Lyra and Clodius are out sometime a few weeks/months later, lyra had convinced clodius to start wearing more casual wear.
label bonusScene:
"End of the semester, finally."
@ -1335,3 +1385,18 @@ label replayStart:
L "Oh, you'll be Observing some new stars tonight, Astronomer..."
"..."
label playAgain:
"Would you like to play again?{w=.5}{nw}"
menu:
"Would you like to play again?{fast}"
"I do not want to play again":
"Thank you for your time!"
$ renpy.quit()
"I would like to play again":
window auto hide
pause .5
jump replayStart

1
oawashere.txt Normal file
View File

@ -0,0 +1 @@
hello