100 lines
2.9 KiB
Plaintext
100 lines
2.9 KiB
Plaintext
define yuuka = Character("Yuuka", callback = name_callback, cb_name = "yuuka")
|
|
define reimu = Character("Reimu", callback = name_callback, cb_name = "reimu")
|
|
define marisa = Character("Marisa", callback = name_callback, cb_name = "marisa")
|
|
define alice = Character("Alice", callback = name_callback, cb_name = "alice")
|
|
define yumemi = Character("Yumemi", callback = name_callback, cb_name = "yumemi")
|
|
define narrator = Character(callback = name_callback, cb_name = None)
|
|
|
|
image yuuka:
|
|
"yuuka.png"
|
|
function SpriteFocus('yuuka')
|
|
|
|
image yuuka happy:
|
|
"yuuka happy.png"
|
|
function SpriteFocus('yuuka')
|
|
|
|
image reimu:
|
|
"reimu.png"
|
|
function SpriteFocus('reimu')
|
|
|
|
image reimu happy:
|
|
"reimu happy.png"
|
|
function SpriteFocus('reimu')
|
|
|
|
label start:
|
|
|
|
label presentation_begins:
|
|
|
|
scene bg auditorium
|
|
|
|
show yuuka happy:
|
|
xalign 0.5
|
|
yalign 0.99
|
|
|
|
python: # <- Remove
|
|
'''
|
|
show reimu happy:
|
|
xalign 0.8
|
|
yalign 0.99
|
|
'''
|
|
|
|
yuuka "Good evening."
|
|
|
|
yuuka "You all may know me as the substitute this past week for Professor Okazaki."
|
|
|
|
yuuka "I've been teaching Botany, a topic on which I am {sc}incredibly{/sc} overqualified for, to idiots younger than you, but still very much similar to you."
|
|
|
|
narrator "{i}A few nervous chuckles break throughout the auditorium.{/i}"
|
|
|
|
yuuka "But enough of the customary good-natured teasing, I am here because Professor Okazaki is returning today."
|
|
|
|
yuuka "As is stated in the faculty handbook she wrote and doodled over, because clearly not even she could have handwriting THAT horrendous,"
|
|
|
|
yuuka "I must give a presentation to report to the faculty and administration exactly what I did as subsitute for Professor Okazaki."
|
|
|
|
yuuka "This is that presentation: a postmortem to my short time here, a retrospective of sorts."
|
|
|
|
yuuka "You might also be wondering why I've invited select students to attend this presentation."
|
|
|
|
yuuka "I will be getting to that, please do not leave your seats throughout this presentation. This will be brief."
|
|
|
|
jump intro
|
|
|
|
label intro:
|
|
scene bg entrance with fade
|
|
|
|
show yuuka happy:
|
|
xalign 0.5
|
|
yalign 0.99
|
|
|
|
yuuka "{i}There I was, one week ago, naive, unsure of what I was looking at.{/i}" (cb_name="")
|
|
|
|
yuuka "What the hell am I looking at?"
|
|
|
|
jump ending
|
|
|
|
label ending:
|
|
|
|
narrator "This is the part where the ending goes."
|
|
|
|
narrator "You understand?"
|
|
|
|
$ kicked_out.grant()
|
|
# $ scare_tactics.grant()
|
|
# $ very_loud_quitting.grant()
|
|
# $ she_has_your_back.grant()
|
|
# $ they_have_your_back.grant()
|
|
# $ hedgehog_dilemma_solved.grant()
|
|
|
|
show screen ending_gallery
|
|
|
|
jump pause_loop
|
|
|
|
return
|
|
|
|
label pause_loop:
|
|
|
|
window hide
|
|
$ renpy.pause()
|
|
|
|
jump pause_loop |