54 lines
1.8 KiB
Plaintext
54 lines
1.8 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:
|
||
|
|
||
|
scene bg room
|
||
|
|
||
|
show yuuka happy:
|
||
|
xalign 0.2
|
||
|
yalign 0.99
|
||
|
|
||
|
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 incredibly overqualified for, to idiots younger than you but still very much like you."
|
||
|
|
||
|
yuuka "But enough of the customary ribbing and 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."
|
||
|
|
||
|
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 through out this presentation. I will be brief."
|
||
|
|
||
|
return
|