2942 lines
97 KiB
Plaintext
2942 lines
97 KiB
Plaintext
# What is left?
|
||
# TEXT STAGE VAR
|
||
# introduction Y Y Y
|
||
# icebreakers Y Y Y
|
||
# hands-on lecture Y N Y
|
||
# consultation Y N Y
|
||
# exam Y N Y
|
||
# side convos N N N
|
||
# sunflower talk Y N Y
|
||
# present. endings N N N
|
||
|
||
default persistent.pixelfont = True
|
||
default persistent.laozi = False
|
||
default persistent.playeranswer1 = ""
|
||
default persistent.playeranswer2 = ""
|
||
default persistent.playeranswer3 = ""
|
||
default persistent.playeranswer4 = ""
|
||
default persistent.playeranswer5 = ""
|
||
|
||
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 janitor = Character("Totally Normal Janitor", callback = name_callback, cb_name = "yumemi")
|
||
define narrator = Character(callback = name_callback, cb_name = None)
|
||
|
||
define longfade = Fade(0, 0.5, 3)
|
||
# Camera flash - quickly fades to white, then back to the scene.
|
||
define flash = Fade(0.1, 0.0, 0.5, color="#fff")
|
||
define longflash = Fade(0.1, 1, 1, color="#fff")
|
||
|
||
init python:
|
||
def truncate(n, decimals=0):
|
||
multiplier = 10 ** decimals
|
||
return int(n * multiplier) / multiplier
|
||
|
||
# inventory system taken from a deranged reddit post
|
||
# https://www.reddit.com/r/RenPy/comments/wanes3/how_to_do_an_inventory_system/ii2vp6i/
|
||
screen inventory_display_toggle:
|
||
zorder 200
|
||
frame:
|
||
background "#0000008c"
|
||
xalign 0.0
|
||
yalign 0.0
|
||
|
||
textbutton "INV":
|
||
action ToggleScreen("inventory_item_description")
|
||
|
||
on "hide" action Hide("inventory_item_description")
|
||
|
||
# inventory item descriptions
|
||
|
||
default item_descriptions = {"Chococlate" : "Yum!"}
|
||
default inventory_items = []
|
||
default item_description = ""
|
||
|
||
init python:
|
||
def GetItemDescription(item):
|
||
if item in item_descriptions:
|
||
return item_descriptions.get(item)
|
||
else:
|
||
return item_description
|
||
|
||
# style inv_button is frame:
|
||
# xsize 200
|
||
# ysize 100
|
||
|
||
style inv_button_text:
|
||
xalign 0.5
|
||
yalign 0.5
|
||
|
||
screen inventory_item_description:
|
||
# use this based on your preference
|
||
modal True
|
||
window:
|
||
background "#0000008c"
|
||
xsize 600
|
||
ysize 150
|
||
xalign 0.5
|
||
yalign 0.1
|
||
text item_description:
|
||
xfill True
|
||
yfill True
|
||
|
||
window:
|
||
background "#0000008c"
|
||
xsize 1290
|
||
ysize 600
|
||
xalign 0.5
|
||
yalign 0.7
|
||
hbox:
|
||
box_wrap True
|
||
box_wrap_spacing 10
|
||
spacing 10
|
||
xoffset 20
|
||
yoffset 20
|
||
style_prefix "inv"
|
||
for item in inventory_items:
|
||
textbutton item:
|
||
action SetVariable("item_description", GetItemDescription(item))
|
||
selected False
|
||
|
||
|
||
on "hide" action SetVariable("item_description", "")
|
||
|
||
label splashscreen:
|
||
scene movie1
|
||
scene black
|
||
|
||
python:
|
||
import time
|
||
|
||
if persistent.secretKey is None:
|
||
persistent.secretKey = truncate(time.time() * 666, 12)
|
||
|
||
renpy.save_persistent()
|
||
|
||
show text "Hit Shift-A to replace the font and change text scaling."
|
||
with Pause(7)
|
||
|
||
hide text with fade
|
||
$ renpy.pause(1.0)
|
||
|
||
show text "This is a fan-made video game not affiliated\nwith or endorsed by the original creators.\n\n{color=e63d3c}Touhou Project{/color} original concept, characters, and elements are property of {color=e63d3c}ZUN{/color} and {color=e63d3c}Team Shanghai Alice{/color}. Please support the official series."
|
||
with Pause(7)
|
||
|
||
hide text with fade
|
||
$ renpy.pause(1.0)
|
||
|
||
nvl clear
|
||
|
||
return
|
||
|
||
transform damaged:
|
||
yalign 0.5
|
||
xalign 0.5
|
||
ease .08 xoffset 40
|
||
ease .08 xoffset -40
|
||
ease .07 xoffset 30
|
||
ease .07 xoffset -30
|
||
ease .06 xoffset 20
|
||
ease .06 xoffset -20
|
||
ease .05 xoffset 15
|
||
ease .05 xoffset -15
|
||
ease .04 xoffset 10
|
||
ease .04 xoffset -10
|
||
ease .03 xoffset 5
|
||
ease .03 xoffset -5
|
||
ease .02 xoffset 2
|
||
ease .02 xoffset -2
|
||
ease .01 xoffset 0
|
||
|
||
transform thrown_offscreen:
|
||
ease .5 xoffset 100 yoffset -100
|
||
ease .4 xoffset 200 yoffset -200
|
||
ease .3 xoffset 400 yoffset -400
|
||
ease .3 xoffset 800 yoffset -800
|
||
ease .2 xoffset 1600 yoffset -1600
|
||
ease .2 xoffset 3200 yoffset -3200
|
||
ease .1 xoffset 6400 yoffset -6400
|
||
|
||
transform flip:
|
||
xzoom -1.0
|
||
|
||
transform unflip:
|
||
xzoom 1.0
|
||
|
||
transform idle_vertical:
|
||
yoffset 0
|
||
ease 0.06
|
||
yoffset 1
|
||
ease 0.08
|
||
yoffset 2
|
||
ease 0.10
|
||
yoffset 3
|
||
ease 0.12
|
||
yoffset 4
|
||
ease 0.14
|
||
yoffset 5
|
||
ease 0.16
|
||
yoffset 6
|
||
ease 0.18
|
||
yoffset 7
|
||
ease 0.20
|
||
yoffset 8
|
||
ease 0.22
|
||
yoffset 9
|
||
ease 0.48
|
||
yoffset 10
|
||
ease 0.22
|
||
yoffset 9
|
||
ease 0.20
|
||
yoffset 8
|
||
ease 0.18
|
||
yoffset 7
|
||
ease 0.16
|
||
yoffset 6
|
||
ease 0.14
|
||
yoffset 5
|
||
ease 0.12
|
||
yoffset 4
|
||
ease 0.10
|
||
yoffset 3
|
||
ease 0.08
|
||
yoffset 2
|
||
ease 0.06
|
||
yoffset 1
|
||
ease 0.04
|
||
repeat
|
||
|
||
transform idle_horizontal:
|
||
xoffset 0
|
||
ease 0.06
|
||
xoffset 1
|
||
ease 0.08
|
||
xoffset 2
|
||
ease 0.10
|
||
xoffset 3
|
||
ease 0.12
|
||
xoffset 4
|
||
ease 0.14
|
||
xoffset 5
|
||
ease 0.16
|
||
xoffset 6
|
||
ease 0.18
|
||
xoffset 7
|
||
ease 0.20
|
||
xoffset 8
|
||
ease 0.22
|
||
xoffset 9
|
||
ease 0.48
|
||
xoffset 10
|
||
ease 0.22
|
||
xoffset 9
|
||
ease 0.20
|
||
xoffset 8
|
||
ease 0.18
|
||
xoffset 7
|
||
ease 0.16
|
||
xoffset 6
|
||
ease 0.14
|
||
xoffset 5
|
||
ease 0.12
|
||
xoffset 4
|
||
ease 0.10
|
||
xoffset 3
|
||
ease 0.08
|
||
xoffset 2
|
||
ease 0.06
|
||
xoffset 1
|
||
ease 0.04
|
||
repeat
|
||
|
||
transform spin:
|
||
around (.5, .5)
|
||
alignaround (.5, .5) xalign .5 yalign .5
|
||
rotate 0
|
||
linear 1 rotate 360
|
||
|
||
around (.5, .5)
|
||
alignaround (.5, .5)
|
||
rotate 0
|
||
linear 0.75 rotate 360
|
||
|
||
around (.5, .5)
|
||
alignaround (.5, .5)
|
||
rotate 0
|
||
linear 0.5 rotate 360
|
||
|
||
around (.5, .5)
|
||
alignaround (.5, .5)
|
||
rotate 0
|
||
linear 0.25 rotate 360
|
||
|
||
around (.5, .5)
|
||
alignaround (.5, .5)
|
||
rotate 0
|
||
linear 0.125 rotate 360
|
||
|
||
around (.5, .5)
|
||
alignaround (.5, .5)
|
||
rotate 0
|
||
linear 0.125 rotate 360
|
||
|
||
around (.5, .5)
|
||
alignaround (.5, .5)
|
||
rotate 0
|
||
linear 0.125 rotate 360
|
||
|
||
around (.5, .5)
|
||
alignaround (.5, .5)
|
||
rotate 0
|
||
linear 0.125 rotate 360
|
||
|
||
around (.5, .5)
|
||
alignaround (.5, .5)
|
||
rotate 0
|
||
linear 0.125 rotate 360
|
||
|
||
around (.5, .5)
|
||
alignaround (.5, .5)
|
||
rotate 0
|
||
linear 0.125 rotate 360
|
||
|
||
around (.5, .5)
|
||
alignaround (.5, .5)
|
||
rotate 0
|
||
linear 0.125 rotate 360
|
||
|
||
around (.5, .5)
|
||
alignaround (.5, .5)
|
||
rotate 0
|
||
linear 0.125 rotate 360
|
||
|
||
around (.5, .5)
|
||
alignaround (.5, .5)
|
||
rotate 0
|
||
linear 0.125 rotate 360
|
||
|
||
around (.5, .5)
|
||
alignaround (.5, .5)
|
||
rotate 0
|
||
linear 0.125 rotate 360
|
||
|
||
around (.5, .5)
|
||
alignaround (.5, .5)
|
||
rotate 0
|
||
linear 0.125 rotate 360
|
||
|
||
image yuuka amused:
|
||
"yuuka amused.png"
|
||
function SpriteFocus('yuuka')
|
||
|
||
image yuuka happy:
|
||
"yuuka happy.png"
|
||
function SpriteFocus('yuuka')
|
||
|
||
image yuuka irritated:
|
||
"yuuka irritated.png"
|
||
function SpriteFocus('yuuka')
|
||
|
||
image yuuka looking eyes:
|
||
"yuuka looking eyes.png"
|
||
function SpriteFocus('yuuka')
|
||
|
||
image yuuka looking:
|
||
"yuuka looking.png"
|
||
function SpriteFocus('yuuka')
|
||
|
||
image yuuka neutral:
|
||
"yuuka neutral.png"
|
||
function SpriteFocus('yuuka')
|
||
|
||
image yuuka rage:
|
||
"yuuka rage.png"
|
||
function SpriteFocus('yuuka')
|
||
|
||
image reimu angry:
|
||
"reimu angry.png"
|
||
function SpriteFocus('reimu')
|
||
|
||
image reimu concerned:
|
||
"reimu concerned.png"
|
||
function SpriteFocus('reimu')
|
||
|
||
image reimu happy:
|
||
"reimu happy.png"
|
||
function SpriteFocus('reimu')
|
||
|
||
image reimu neutral:
|
||
"reimu neutral.png"
|
||
function SpriteFocus('reimu')
|
||
|
||
image reimu serious:
|
||
"reimu serious.png"
|
||
function SpriteFocus('reimu')
|
||
|
||
image reimu sleepy:
|
||
"reimu sleepy.png"
|
||
function SpriteFocus('reimu')
|
||
|
||
image reimu surprise:
|
||
"reimu surprise.png"
|
||
function SpriteFocus('reimu')
|
||
|
||
image yumemi disguise:
|
||
"yumemi disguise.png"
|
||
function SpriteFocus('yumemi')
|
||
|
||
image yumemi glasses:
|
||
"yumemi glasses.png"
|
||
function SpriteFocus('yumemi')
|
||
|
||
image yumemi happy:
|
||
"yumemi happy.png"
|
||
function SpriteFocus('yumemi')
|
||
|
||
image yumemi neutral:
|
||
"yumemi neutral.png"
|
||
function SpriteFocus('yumemi')
|
||
|
||
image yumemi serious:
|
||
"yumemi serious.png"
|
||
function SpriteFocus('yumemi')
|
||
|
||
image yumemi wistful:
|
||
"yumemi wistful.png"
|
||
function SpriteFocus('yumemi')
|
||
|
||
image marisa concerned:
|
||
"marisa concerned.png"
|
||
function SpriteFocus('marisa')
|
||
|
||
image marisa defiant:
|
||
"marisa defiant.png"
|
||
function SpriteFocus('marisa')
|
||
|
||
image marisa happy:
|
||
"marisa happy.png"
|
||
function SpriteFocus('marisa')
|
||
|
||
image marisa laugh:
|
||
"marisa laugh.png"
|
||
function SpriteFocus('marisa')
|
||
|
||
image marisa neutral:
|
||
"marisa neutral.png"
|
||
function SpriteFocus('marisa')
|
||
|
||
image marisa serious:
|
||
"marisa serious.png"
|
||
function SpriteFocus('marisa')
|
||
|
||
image marisa surprise:
|
||
"marisa surprise.png"
|
||
function SpriteFocus('marisa')
|
||
|
||
image alice angry:
|
||
"alice angry.png"
|
||
function SpriteFocus('alice')
|
||
|
||
image alice happy:
|
||
"alice happy.png"
|
||
function SpriteFocus('alice')
|
||
|
||
image alice neutral:
|
||
"alice neutral.png"
|
||
function SpriteFocus('alice')
|
||
|
||
image alice surprise:
|
||
"alice surprise.png"
|
||
function SpriteFocus('alice')
|
||
|
||
image alice worried:
|
||
"alice worried.png"
|
||
function SpriteFocus('alice')
|
||
|
||
screen devModeButtons1():
|
||
grid 3 12:
|
||
$ i = 0
|
||
for labelName in sorted(list(renpy.get_all_labels()))[:36]:
|
||
textbutton labelName action Jump(labelName)
|
||
$ i += 1
|
||
hbox:
|
||
spacing 20
|
||
xpos 0
|
||
ypos 950
|
||
textbutton "(1*)":
|
||
action Jump("DevModePage1")
|
||
textbutton "(2)":
|
||
action Jump("DevModePage2")
|
||
textbutton "(3)":
|
||
action Jump("DevModePage3")
|
||
textbutton "(H)":
|
||
action Jump("DevModeHide")
|
||
textbutton "+D":
|
||
action Jump("IncreaseDay")
|
||
textbutton "-D":
|
||
action Jump("DecreaseDay")
|
||
|
||
screen devModeButtons2():
|
||
grid 3 12:
|
||
$ i = 0
|
||
for labelName in sorted(list(renpy.get_all_labels()))[36:72]:
|
||
textbutton labelName action Jump(labelName)
|
||
$ i += 1
|
||
hbox:
|
||
spacing 20
|
||
xpos 0
|
||
ypos 950
|
||
textbutton "(1)":
|
||
action Jump("DevModePage1")
|
||
textbutton "(2*)":
|
||
action Jump("DevModePage2")
|
||
textbutton "(3)":
|
||
action Jump("DevModePage3")
|
||
textbutton "(H)":
|
||
action Jump("DevModeHide")
|
||
textbutton "+D":
|
||
action Jump("IncreaseDay")
|
||
textbutton "-D":
|
||
action Jump("DecreaseDay")
|
||
|
||
screen devModeButtons3():
|
||
grid 3 12:
|
||
$ i = 0
|
||
for labelName in sorted(list(renpy.get_all_labels()))[72:]:
|
||
textbutton labelName action Jump(labelName)
|
||
$ i += 1
|
||
hbox:
|
||
spacing 20
|
||
xpos 0
|
||
ypos 950
|
||
textbutton "(1)":
|
||
action Jump("DevModePage1")
|
||
textbutton "(2)":
|
||
action Jump("DevModePage2")
|
||
textbutton "(3*)":
|
||
action Jump("DevModePage3")
|
||
textbutton "(H)":
|
||
action Jump("DevModeHide")
|
||
textbutton "+D":
|
||
action Jump("IncreaseDay")
|
||
textbutton "-D":
|
||
action Jump("DecreaseDay")
|
||
|
||
screen devModeButtons4():
|
||
hbox:
|
||
spacing 20
|
||
xpos 0
|
||
ypos 950
|
||
textbutton "(1)":
|
||
action Jump("DevModePage1")
|
||
textbutton "(2)":
|
||
action Jump("DevModePage2")
|
||
textbutton "(3)":
|
||
action Jump("DevModePage3")
|
||
textbutton "(H*)":
|
||
action Jump("DevModeHide")
|
||
textbutton "+D":
|
||
action Jump("IncreaseDay")
|
||
textbutton "-D":
|
||
action Jump("DecreaseDay")
|
||
|
||
init python:
|
||
# 0 means intro
|
||
# 1 means icebreaker onwards
|
||
# 2 means hands-on lecture onwards
|
||
# 3 means consultation onwards
|
||
# 4 means exam onwards
|
||
day = 0
|
||
next_label = ""
|
||
|
||
# CHOICE VARIABLES #
|
||
attacked_student = False
|
||
garden_of_the_sun_lecture = False
|
||
janitor_talks = 0
|
||
revolution = 0 # 1 means students incited, 2 means students and teachers incited
|
||
exam_cancelled = False
|
||
investigation_progress = 0
|
||
reimu_progress = 0
|
||
alice_progress = 0
|
||
marisa_progress = 0
|
||
yumemi_progress = 0
|
||
|
||
label start:
|
||
|
||
label laozi:
|
||
scene bg black
|
||
stop music
|
||
$ renpy.pause(1.5)
|
||
|
||
if(persistent.laozi):
|
||
if config.developer == True:
|
||
jump devMode
|
||
else:
|
||
jump presentation_begins
|
||
|
||
$ persistent.laozi = True
|
||
$ renpy.save_persistent()
|
||
# show text " {font=m3x6.ttf}For this reason the great man dwells in the thick, and does not rest with the thin.{/font}\n{font=m6x11.ttf}He dwells in the {color=#cc2222}fruit{/color}, and does not rest with the {color=#ffff00}flower{/font}{/color}.\n {font=m3x6.ttf}- Laozi, Tao Te Ching{/font}" at truecenter
|
||
show text "{alpha=0.2}For this reason the great man dwells in the thick, and does not rest with the thin.{/alpha}\nHe dwells in the {color=#cc2222}fruit{/color}, and does not rest with the {color=#ffff00}flower{/color}.\n {alpha=0.6}- Laozi, Tao Te Ching{/alpha}" at truecenter
|
||
with dissolve
|
||
$ renpy.pause(6)
|
||
hide text
|
||
with dissolve
|
||
|
||
# camera:
|
||
# perspective True
|
||
# linear 3.0 zpos 500
|
||
|
||
if config.developer == True:
|
||
jump devMode
|
||
else:
|
||
jump presentation_begins
|
||
|
||
### DEV MODE: EXPLORE THE JUNGLE ###
|
||
|
||
label devMode:
|
||
$ numOfLabels = len(renpy.get_all_labels())
|
||
$ renpy.say(narrator, "There are currently " + str(numOfLabels) + " unique labels in this project.")
|
||
|
||
label IncreaseDay:
|
||
$ day += 1
|
||
$ renpy.notify(day)
|
||
jump DevModePage1
|
||
|
||
label DecreaseDay:
|
||
$ day -= 1
|
||
$ renpy.notify(day)
|
||
jump DevModePage1
|
||
|
||
label DevModePage1:
|
||
hide screen devModeButtons2
|
||
hide screen devModeButtons3
|
||
show screen devModeButtons1
|
||
hide screen devModeButtons4
|
||
$ ui.saybehavior()
|
||
$ ui.interact()
|
||
|
||
label DevModePage2:
|
||
hide screen devModeButtons1
|
||
hide screen devModeButtons3
|
||
show screen devModeButtons2
|
||
hide screen devModeButtons4
|
||
$ ui.saybehavior()
|
||
$ ui.interact()
|
||
|
||
label DevModePage3:
|
||
hide screen devModeButtons1
|
||
hide screen devModeButtons2
|
||
show screen devModeButtons3
|
||
hide screen devModeButtons4
|
||
$ ui.saybehavior()
|
||
$ ui.interact()
|
||
|
||
label DevModeHide:
|
||
hide screen devModeButtons1
|
||
hide screen devModeButtons2
|
||
hide screen devModeButtons3
|
||
hide screen devModeButtons4
|
||
|
||
label presentation_begins:
|
||
# TODO
|
||
# TEXT Y
|
||
# STAGE Y
|
||
# VAR Y
|
||
|
||
image audi_front:
|
||
"bg auditorium front.png"
|
||
|
||
image yuuka_look:
|
||
"yuuka looking eyes.png"
|
||
|
||
image chills:
|
||
"chills.png"
|
||
|
||
show audi_front zorder 150
|
||
|
||
show bg auditorium back behind audi_front
|
||
|
||
$ renpy.pause(2)
|
||
|
||
show yuuka neutral behind yuuka_look
|
||
with fade
|
||
|
||
python: # <- Remove
|
||
'''
|
||
show reimu happy:
|
||
xalign 0.8
|
||
yalign 0.99
|
||
'''
|
||
|
||
yuuka "Good evening."
|
||
|
||
show yuuka_look
|
||
|
||
yuuka "You all may know me as the substitute this past week for Professor Okazaki."
|
||
|
||
# show screen inventory_display_toggle
|
||
# $ inventory_items.append("Chocolate")
|
||
|
||
hide yuuka_look
|
||
show yuuka irritated
|
||
|
||
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}"
|
||
|
||
show yuuka amused
|
||
|
||
yuuka "But enough of the customary good-natured teasing, I am here because Professor Okazaki is returning today."
|
||
|
||
show yuuka_look
|
||
|
||
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."
|
||
|
||
show yuuka happy
|
||
|
||
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."
|
||
|
||
label intro:
|
||
# TODO
|
||
# TEXT Y
|
||
# STAGE Y
|
||
# VAR Y
|
||
|
||
play music tension if_changed
|
||
|
||
scene bg ruinedfield with fade
|
||
|
||
$ renpy.pause(2)
|
||
|
||
show yuuka rage:
|
||
xalign 0.5
|
||
yalign 0.99
|
||
with dissolve
|
||
|
||
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?"
|
||
|
||
yuuka "{i}Spring. It was the season for blooming petals, and I had come to one of my second-favorite flower fields in Gensokyo.{/i}" (cb_name="")
|
||
|
||
yuuka "This used to be a gorgeous field of sunflowers, flowering red buckwheat, growing ever so softly towards the sky blue."
|
||
|
||
show yuuka irritated unmarked:
|
||
ease 1.8 ypos 1180
|
||
|
||
yuuka "Tell me fallen fauna, by whose footsoles were you trampled?"
|
||
|
||
window hide
|
||
$ renpy.pause(1.5)
|
||
# play a wind sound
|
||
|
||
show yuuka irritated unmarked:
|
||
ease 1.6 ypos 1080
|
||
|
||
yuuka "Sent by a scientist you say? I think I might know who this is."
|
||
|
||
yuuka "Very well, then."
|
||
|
||
yuuka "I will have to wait until the next spring to enjoy your company, young flowers."
|
||
|
||
show yuuka happy:
|
||
ease 1.6 ypos 1080
|
||
|
||
yuuka "In the meantime, I think that woman's {sc}bones{/sc} would make for good fertilizer."
|
||
|
||
# TODO: Check if we can remove this because its only here for devmode to fix a softlock
|
||
if config.developer:
|
||
$ day = 0
|
||
|
||
label entrance:
|
||
scene bg entrance with fade
|
||
if day == 0:
|
||
# TODO
|
||
# TEXT Y
|
||
# STAGE N
|
||
# VAR N
|
||
|
||
yuuka "{i}When I first laid eyes on the school, I found its exterior to be less than appealing to me.{/i}" (cb_name="")
|
||
|
||
yuuka "What?"
|
||
|
||
yuuka "{i}Now I'm no stranger to different architectural sensibilities, I've had the privilege of owning mansion myself, but we all ought to admit...{/i}" (cb_name="")
|
||
|
||
yuuka "The hell am I looking at?"
|
||
|
||
yuuka "{i}This school is very out of place for Gensokyo.{/i}" (cb_name="")
|
||
|
||
yuuka "Gaudiness aside, this is absolutely where that outsider is."
|
||
|
||
yuuka "Now, to call her out here."
|
||
|
||
"Student" "Miss!"
|
||
|
||
yuuka "?"
|
||
|
||
"Student" "It's a good thing you're here, on time! Do you need directions?"
|
||
|
||
yuuka "I think you have the wrong person, dear."
|
||
|
||
"Student" "You're the subsitute teacher right? I can show you to your class."
|
||
|
||
menu:
|
||
"What will Yuuka do?"
|
||
|
||
"Make an entrance":
|
||
# TODO
|
||
# TEXT Y
|
||
# STAGE N
|
||
# VAR Y
|
||
|
||
$ attacked_student = True
|
||
|
||
show yuuka irritated unmarked:
|
||
xalign 0.0
|
||
yalign 0.5
|
||
with easeinleft
|
||
|
||
yuuka "That won't be necessary, after all..."
|
||
|
||
show yuuka happy:
|
||
xalign 0.0
|
||
yalign 0.5
|
||
|
||
yuuka "I've got a landmark don't I?"
|
||
|
||
narrator "A sunflower, each petal the size of a desk, grew out from beneath the stunned student and lifted thme into the air."
|
||
|
||
narrator "The flower tilted to one side and the student rolled off, falling onto the soft grass, as the sunflower grew to eclipse the building."
|
||
|
||
yuuka "Run along then. Save your drivel for someone who cares."
|
||
|
||
show marisa neutral:
|
||
xalign 1.0
|
||
yalign 0.5
|
||
with easeinright
|
||
|
||
show yuuka irritated:
|
||
xalign 0.0
|
||
yalign 0.5
|
||
|
||
marisa "I care!"
|
||
|
||
yuuka "Always with the jokes."
|
||
|
||
show marisa laugh:
|
||
xalign 1.0
|
||
yalign 0.5
|
||
|
||
marisa "Can't help it when the situation's smelling funny."
|
||
|
||
yuuka "You'd know about smelling funny, little miss thief."
|
||
|
||
show marisa surprise:
|
||
xalign 1.0
|
||
yalign 0.5
|
||
|
||
marisa "Thief? I can't believe you'd try to slander me like that!"
|
||
|
||
show marisa happy:
|
||
xalign 1.0
|
||
yalign 0.5
|
||
|
||
marisa "I prefer to be called Robin Hood."
|
||
|
||
show yuuka amused:
|
||
xalign 0.0
|
||
yalign 0.5
|
||
|
||
yuuka "Because you take from the rich and dress poor?"
|
||
|
||
show marisa surprise:
|
||
xalign 1.0
|
||
yalign 0.5
|
||
|
||
marisa "Ack! How you wound me."
|
||
|
||
show marisa happy:
|
||
xalign 1.0
|
||
yalign 0.5
|
||
|
||
marisa "Though given you were living it up in a mansion before, not wrong about the first half."
|
||
|
||
show yuuka irritated:
|
||
xalign 0.0
|
||
yalign 0.5
|
||
|
||
yuuka "Cut to chase, Marisa. I need to see that scientist friend of yours."
|
||
|
||
show marisa neutral:
|
||
xalign 1.0
|
||
yalign 0.5
|
||
|
||
marisa "Oh I'd tell you where Yumemi is, if I knew. But she's not here."
|
||
|
||
yuuka "And I'm to believe you're not lying when you've lied about who you got your oh-so-original Master Spark from?"
|
||
|
||
show marisa serious:
|
||
xalign 1.0
|
||
yalign 0.5
|
||
|
||
marisa "Uh, yeah. Because I'm not lying."
|
||
|
||
menu:
|
||
"Does Yuuka believe her?"
|
||
|
||
"No, obviously.":
|
||
|
||
stop music
|
||
|
||
show yuuka neutral:
|
||
xalign 0.0
|
||
yalign 0.5
|
||
|
||
yuuka "..."
|
||
|
||
marisa "..."
|
||
|
||
show marisa neutral:
|
||
xalign 1.0
|
||
yalign 0.5
|
||
|
||
marisa "So does that mean..."
|
||
|
||
show yuuka rage:
|
||
easeout_expo 1.0 xpos 2700
|
||
yalign 0.5
|
||
|
||
$ renpy.pause(0.85, hard=True)
|
||
|
||
play sound "bowling.mp3"
|
||
|
||
show marisa surprise at damaged, spin, thrown_offscreen:
|
||
xalign 1.0
|
||
yalign 0.5
|
||
|
||
yuuka "{i}Then I hit her really hard.{/i}" (cb_name="")
|
||
|
||
marisa ":O"
|
||
|
||
yuuka "From the earth you came, to the dirt you'll bite."
|
||
|
||
show bg black with fade
|
||
|
||
yuuka "{i}Then she was gone, just like that.{nw=2.5}{/i}" (cb_name="")
|
||
|
||
hide bg black
|
||
scene bg entrance
|
||
|
||
show yuuka happy:
|
||
xalign 0.0
|
||
yalign 0.5
|
||
|
||
show marisa serious:
|
||
xalign 1.0
|
||
yalign 0.5
|
||
|
||
yuuka "{i}Is what I want to say happened, but we do have spellcard rules for a reason.{/i}" (cb_name="")
|
||
|
||
yuuka "Fine then. If you're not going to concede her, shall we duel?"
|
||
|
||
show marisa concerned:
|
||
xalign 1.0
|
||
yalign 0.5
|
||
|
||
marisa "Every spellcard duel begins with a misunderstanding, they say."
|
||
|
||
show marisa defiant:
|
||
xalign 1.0
|
||
yalign 0.5
|
||
|
||
marisa "I'm not gonna even try to explain myself then! Let the bullets do the talking!"
|
||
|
||
show yuuka irritated unmarked:
|
||
xalign 0.0
|
||
yalign 0.5
|
||
|
||
yuuka "Lets."
|
||
|
||
# TODO: lots of blasty sfx and explosions
|
||
|
||
yuuka "{i}Of course, the scientist really wasn't there.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}And by the time our battle ended, I had taken much of my anger out on the blonde punching bag.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}I vowed to return.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Justice would come back around for the field one way or another, and I had long term plans to make Yumemi pay.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}But in the meantime, it was just me and a field that needed nurturing and healing now.{/i}" (cb_name="")
|
||
|
||
# TODO: return to presentation
|
||
|
||
yuuka "{i}But that didn't really happen, otherwise I wouldn't be here to talk to you all would I?{/i}" (cb_name="")
|
||
|
||
yuuka "{i}And yet here I am.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}I don't understand how or why.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}I hope you can, in time.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Best of luck.{/i}" (cb_name="")
|
||
|
||
if long_term.has():
|
||
"Long Term already has been completed. Consider finding a different ending."
|
||
|
||
$ long_term.grant()
|
||
|
||
jump ending
|
||
|
||
"...yes. Marisa can be trusted.":
|
||
|
||
stop music fadeout 2.0
|
||
|
||
show yuuka neutral:
|
||
xalign 0.0
|
||
yalign 0.5
|
||
|
||
yuuka "..."
|
||
|
||
marisa "..."
|
||
|
||
show marisa neutral:
|
||
xalign 1.0
|
||
yalign 0.5
|
||
|
||
marisa "So does that mean..."
|
||
|
||
show yuuka irritated unmarked:
|
||
xalign 0.0
|
||
yalign 0.5
|
||
|
||
yuuka "Fine, so she's not here?"
|
||
|
||
show marisa neutral:
|
||
xalign 1.0
|
||
yalign 0.5
|
||
|
||
marisa "No, but I'm figuring out where she went. "
|
||
|
||
show yuuka neutral:
|
||
xalign 0.0
|
||
yalign 0.5
|
||
|
||
yuuka "I see. Any leads?"
|
||
|
||
show marisa concerned:
|
||
xalign 1.0
|
||
yalign 0.5
|
||
|
||
marisa "Well, I was trailing your fan until..."
|
||
|
||
narrator "{i}The student was crawling to their feet, awe-struck gaze at Yuuka's newly grown sunflower.{/i}"
|
||
|
||
"Student" "Wow, miss! You're incredible! What kind of magic is that?"
|
||
|
||
yuuka "The fool doesn't realize who I am?"
|
||
|
||
marisa "We're pretty sure all the humans in this school aren't from Gensokyo."
|
||
|
||
marisa "I'll leave the two of you to it then."
|
||
|
||
show marisa serious:
|
||
xalign 1.0
|
||
yalign 0.5
|
||
|
||
marisa "Don't mess this up, teach."
|
||
|
||
show yuuka irritated:
|
||
xalign 0.0
|
||
yalign 0.5
|
||
|
||
yuuka "Don't call me tha- and she's gone."
|
||
|
||
narrator "{i}The student approached Yuuka, only slightly rattled.{/i}"
|
||
|
||
"Student" "I hope we haven't gotten off on the wrong foot, teach! Would you still like me to show the way?"
|
||
|
||
jump icebreakers
|
||
|
||
"Go along with it":
|
||
# TODO
|
||
# TEXT Y
|
||
# STAGE N
|
||
# VAR Y
|
||
|
||
show yuuka amused:
|
||
xalign 0.0
|
||
yalign 0.5
|
||
with easeinleft
|
||
|
||
jump icebreakers
|
||
|
||
label icebreakers:
|
||
|
||
stop music fadeout 2.0
|
||
|
||
show yuuka amused:
|
||
xalign 0.0
|
||
yalign 0.5
|
||
|
||
yuuka "Yes, that would be very helpful."
|
||
|
||
narrator "{i}Led by the student, Yuuka entered the building.{/i}"
|
||
|
||
scene bg hallway with fade
|
||
|
||
show yuuka amused:
|
||
xalign 0.0
|
||
yalign 0.5
|
||
with easeinleft
|
||
|
||
yuuka "It's very..."
|
||
|
||
"Student" "Modern, isn't it?"
|
||
|
||
scene bg classroom with fade
|
||
|
||
play sound "classroom.mp3" loop
|
||
|
||
show yuuka amused:
|
||
xalign -0.2
|
||
yalign 0.5
|
||
with easeinleft
|
||
|
||
narrator "{i}The student, leading Yuuka to her class, held the door open for her, letting her get a peek inside.{/i}"
|
||
|
||
if not attacked_student:
|
||
yuuka "Oh, would you look at that? I think there's somewhere else I need to be, th-"
|
||
|
||
"Student" "The substitute's here!"
|
||
|
||
"Various Students" "Oh finally. I don't think there's enough time even for a quiz.{nw=1}"
|
||
|
||
"Various Students" "I thought we're excused if they're late?{nw=1}"
|
||
|
||
"Various Students" "She's kind of fugly with that weird outfit.{nw=1}"
|
||
|
||
"Various Students" "Huh, what's happening? Is it a test?{nw=1}"
|
||
|
||
if not attacked_student:
|
||
yuuka "{sc}Amusing{/sc} as a misunderstanding this is, I really should be..."
|
||
|
||
show yuuka irritated:
|
||
xalign -0.2
|
||
yalign 0.5
|
||
|
||
show marisa happy:
|
||
xalign 0.8
|
||
yalign -0.5
|
||
with easeinbottom
|
||
|
||
marisa "Hey teach, how about we get a move on before lunch's on!"
|
||
|
||
if attacked_student:
|
||
yuuka "{i}It was at this moment that I shot a glare at Marisa then took the time actually pick out individual faces from the crowd.{/i}" (cb_name="")
|
||
else:
|
||
yuuka "{i}It was at this moment that I took the time actually pick out individual faces from the crowd.{/i}" (cb_name="")
|
||
|
||
show yuuka neutral:
|
||
xalign 0.0
|
||
yalign 0.5
|
||
with ease
|
||
|
||
if attacked_student:
|
||
yuuka "{i}There was Marisa Kirisame, cooled down from our earlier encounter.{/i}" (cb_name="")
|
||
else:
|
||
yuuka "{i}There was Marisa Kirisame, irritance, thief, and perpetual child as per usual.{/i}" (cb_name="")
|
||
|
||
show alice neutral:
|
||
xalign 1.0
|
||
yalign -0.5
|
||
with easeinbottom
|
||
|
||
yuuka "{i}Sitting next to her was Alice Margatroid, hatchling spawn from Makai, and the relatively reasonable one of the three.{/i}" (cb_name="")
|
||
|
||
show reimu serious:
|
||
xalign 1.2
|
||
yalign -0.5
|
||
with easeinbottom
|
||
|
||
yuuka "{i}Last was Reimu Hakurei, sitting in the back, with a glint in her eye staring back at me.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}She seemed to be itching for a fight. That or the stupidity of her face got to me. One of the two.{/i}" (cb_name="")
|
||
|
||
if not attacked_student:
|
||
reimu "A misunderstanding?" (cb_name="")
|
||
|
||
yuuka "{i}While I was and forever will be confident in my ability to subdue our militant shrine maiden,{/i}" (cb_name="")
|
||
|
||
show yuuka happy:
|
||
xalign 0.0
|
||
yalign 0.5
|
||
|
||
yuuka "{i}I am a person who can play along. It makes encounters more interesting. I put on my most polite smile and...{/i}" (cb_name="")
|
||
|
||
if not attacked_student:
|
||
yuuka "Yes, class! I'm afraid there will be no tests or lectures today."
|
||
else:
|
||
yuuka "I'm afraid there will be no tests or lectures today, class."
|
||
|
||
narrator "{i}Barely contained cheering erupted throughout the room.{/i}"
|
||
|
||
yuuka "Instead we'll be having an {sc}icebreaker{/sc}."
|
||
|
||
narrator "{i}Barely contained sighs and groans erupted throughout the room.{/i}"
|
||
|
||
hide marisa
|
||
hide alice
|
||
with easeoutbottom
|
||
|
||
show reimu surprise:
|
||
xalign 1.2
|
||
yalign -0.5
|
||
|
||
stop sound fadeout 2.0
|
||
|
||
yuuka "You there, in the red and white! Introduce yourself and tell us an interesting fact about yourself."
|
||
|
||
yuuka "{i}I could be patient as long as it meant seeing these three flounder.{/i}" (cb_name="")
|
||
|
||
reimu "I... uh, what?"
|
||
|
||
show yuuka amused:
|
||
xalign 0.0
|
||
yalign 0.5
|
||
|
||
narrator "{i}Yuuka's smile grew just that bit wider.{/i}"
|
||
|
||
yuuka "You heard me."
|
||
|
||
show marisa laugh:
|
||
xalign 0.8
|
||
yalign -0.5
|
||
with easeinbottom
|
||
|
||
narrator "{i}There were barely stifled giggles from Marisa's seat as Reimu gaped.{/i}"
|
||
|
||
hide marisa surprised
|
||
with easeoutbottom
|
||
|
||
narrator "{i}Her hand went to her gohei and glare to Marisa before she realized the class had its eyes on her.{/i}"
|
||
|
||
show reimu concerned:
|
||
xalign 1.2
|
||
yalign -0.5
|
||
|
||
reimu "Well, I'm Reimu Hakurei. I'm a shrine maiden."
|
||
|
||
reimu "Uh, interesting facts..."
|
||
|
||
show yuuka amused:
|
||
xalign 0.1
|
||
yalign 0.5
|
||
with ease
|
||
|
||
yuuka "Stand up first, make sure the class can see you, Miss Hakurei."
|
||
|
||
show reimu angry:
|
||
xalign 1.0
|
||
yalign 0.5
|
||
with ease
|
||
|
||
reimu "Tch."
|
||
|
||
show yuuka happy:
|
||
xalign 0.2
|
||
yalign 0.5
|
||
with ease
|
||
|
||
yuuka "What was that now?"
|
||
|
||
show reimu serious:
|
||
xalign 1.0
|
||
yalign 0.5
|
||
|
||
reimu "Nothing."
|
||
|
||
narrator "{i}A lull fell for a moment as Reimu collected her thoughts.{/i}"
|
||
|
||
show yuuka amused:
|
||
xalign 0.2
|
||
yalign 0.5
|
||
|
||
yuuka "We haven't got all day, Ms. Hakurei."
|
||
|
||
show reimu concerned:
|
||
xalign 1.0
|
||
yalign 0.5
|
||
|
||
reimu "Well that's... I guess I'm ambidextrous?"
|
||
|
||
show yuuka amused:
|
||
xalign 0.0
|
||
yalign 0.5
|
||
with ease
|
||
|
||
show marisa laugh:
|
||
xalign 0.8
|
||
yalign -0.5
|
||
with easeinbottom
|
||
|
||
show alice worried:
|
||
xalign 1.0
|
||
yalign -0.5
|
||
with easeinbottom
|
||
|
||
hide reimu
|
||
|
||
show reimu angry:
|
||
xalign 1.2
|
||
yalign -0.5
|
||
with ease
|
||
|
||
narrator "{i}Marisa then broke out into laughter, unfazed by Alice's glance, and Reimu's melting glare.{/i}"
|
||
|
||
marisa "I-I can't, she's really the teacher? They hired HER?"
|
||
|
||
show yuuka irritated:
|
||
xalign 0.0
|
||
yalign 0.5
|
||
|
||
yuuka "You're up next, blondie."
|
||
|
||
show marisa surprise:
|
||
xalign 0.8
|
||
yalign -0.5
|
||
|
||
marisa "Oh, crap."
|
||
|
||
scene bg black with fade
|
||
|
||
yuuka "{i}The rest of our time left in the class went swimmingly.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Some of you may think I was overly hostile, judgemental, and sadistic on my first day.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}To that I will say: That's all? A sign of my excellent restraint.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Afterwards, the trio pulled me aside.{/i}" (cb_name="")
|
||
|
||
scene bg hallway with fade
|
||
|
||
# four way arrangement of characters with yuuka slightly separated
|
||
|
||
show yuuka amused:
|
||
xalign -0.25
|
||
yalign 0.5
|
||
|
||
show reimu serious:
|
||
xalign 0.4
|
||
yalign 0.5
|
||
|
||
show marisa neutral:
|
||
xalign 0.75
|
||
yalign 0.5
|
||
|
||
show alice neutral:
|
||
xalign 1.10
|
||
yalign 0.5
|
||
|
||
reimu "What do you think you're doing, exactly, Yuuka?"
|
||
|
||
yuuka "I think you'll find I'm doing exactly as people ought to expect of me."
|
||
|
||
reimu "Terrorizing and intimidating the young and innocent?"
|
||
|
||
marisa "Invading Gensokyo?"
|
||
|
||
alice "Standing in the middle of a field for hours at a time?"
|
||
|
||
yuuka "I've not done those since this morning. You know how routines get."
|
||
|
||
show yuuka happy
|
||
|
||
yuuka "I'm merely here to take a debt owed."
|
||
|
||
yuuka "You?"
|
||
|
||
reimu "Hm, this school just showed up earlier today. Apparently it's Yumemi's from what the students keep saying."
|
||
|
||
show marisa laugh
|
||
|
||
marisa "Been a long time since that huh? The scramble for a wish, exploring those ruins..."
|
||
|
||
yuuka "{i}Marisa glanced back and forth between all of us.{/i}" (cb_name="")
|
||
|
||
alice "I wasn't there."
|
||
|
||
yuuka "Neither was I."
|
||
|
||
show marisa neutral
|
||
|
||
marisa "Great times."
|
||
|
||
reimu "Right, anyways we're just here to find her. There've been noise complaints from the Human Village about what they're getting up to here."
|
||
if not attacked_student:
|
||
show marisa surprise
|
||
marisa "Plus, all of the students? They're not from the village. They don't even know they're in Gensokyo!"
|
||
else:
|
||
show marisa surprise
|
||
marisa "Plus, all of the students? Like I said, they're not from the village."
|
||
marisa "They don't even know they're in Gensokyo!"
|
||
|
||
show marisa serious
|
||
|
||
marisa "We're thinking this is a major breach of the barrier."
|
||
|
||
reimu "Except the barrier's entirely untouched."
|
||
|
||
alice "But, there's otherwise no evidence of anything done other than some disturbances caused by this school."
|
||
|
||
show yuuka rage
|
||
|
||
yuuka "{i}A flicker of something worse nearly escaped me. I paused. I was angry. I was here for retribution.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}But I'd do no wrong to anyone who didn't deserve it. I would not lash out needlessly.{/i}" (cb_name="")
|
||
|
||
show yuuka irritated
|
||
|
||
yuuka "Other than the flower field they destroyed?"
|
||
|
||
show reimu surprise
|
||
|
||
reimu "That's new."
|
||
|
||
show yuuka neutral
|
||
yuuka "It's how I found out about this wretched place."
|
||
|
||
show reimu serious
|
||
|
||
reimu "In any case, we'll keep it in mind. We're going to keep attending as students until we figure this out."
|
||
|
||
show yuuka looking
|
||
|
||
yuuka "Good, and I will be looking for Yumemi."
|
||
|
||
show yuuka neutral
|
||
|
||
show marisa laugh
|
||
|
||
narrator "{i}Marisa chuckled.{/i}"
|
||
|
||
marisa "Yuuka, who do you think you were substituting for?"
|
||
|
||
yuuka "...huh?"
|
||
|
||
show marisa happy
|
||
|
||
marisa "She's out for the week. No one told you, {bt}professor{/bt}?"
|
||
|
||
show yuuka rage
|
||
|
||
show alice surprise
|
||
|
||
show reimu surprise:
|
||
xalign 0.5
|
||
yalign 0.5
|
||
show marisa surprise:
|
||
xalign 0.85
|
||
yalign 0.5
|
||
with ease
|
||
|
||
narrator "{i}Yuuka snarled. Marisa and Reimu stepped back instinctively.{/i}"
|
||
|
||
show yuuka irritated at flip
|
||
|
||
yuuka "This charade is absurd and I've apparently no reason to be here. Good day to you all."
|
||
|
||
hide yuuka
|
||
with easeoutleft
|
||
|
||
hide alice
|
||
with easeoutleft
|
||
|
||
hide reimu
|
||
hide marisa
|
||
with easeoutright
|
||
|
||
yuuka "{i}I stomped my way back through the hallway.{/i}" (cb_name="")
|
||
|
||
show yuuka irritated at left
|
||
show alice worried at right
|
||
with dissolve
|
||
|
||
yuuka "{i}I was turning the corner before Alice caught up to me.{/i}" (cb_name="")
|
||
|
||
alice "Don't you think you're missing an opportunity?"
|
||
|
||
yuuka "An opportunity to what?"
|
||
|
||
alice "If you stick around, which by the way would be easy given the students have already accepted the fact that you're their teacher,"
|
||
|
||
alice "You can just sit tight for a week and Yumemi will walk right into you. No messy incidents, no plotting."
|
||
|
||
show yuuka neutral
|
||
|
||
yuuka "I could lay a trap."
|
||
|
||
alice "Exactly."
|
||
|
||
show yuuka irritated
|
||
|
||
yuuka "A tempting offer, but I don't think I'll need any tricks to deal with that lout. I'll find her myself."
|
||
|
||
show yuuka irritated at flip
|
||
|
||
yuuka "{i}Once more I turned away, and...{/i}" (cb_name="")
|
||
|
||
show alice angry
|
||
|
||
alice "Oh for Shinki's sake, are you scared of something?"
|
||
|
||
show yuuka neutral at unflip
|
||
|
||
yuuka "What?"
|
||
|
||
alice "You talk to humans less than I do and I live in a poisonous swamp of a forest."
|
||
|
||
alice "You've barely talked to anyone other than us three after leaving your mansion in Mugenkan years ago."
|
||
|
||
show yuuka amused
|
||
|
||
yuuka "They're beneath me."
|
||
|
||
show yuuka neutral
|
||
|
||
yuuka "Besides, I talk with Medicine."
|
||
|
||
alice "She's one kid. That hardly proves anything."
|
||
|
||
show alice worried
|
||
|
||
alice "Look, this is the first time I've seen you talk with humans without it being some kind of underlying threat or overlying threat. This could be good for you."
|
||
|
||
yuuka "I..."
|
||
|
||
alice "Before anything else, it's a week. Just a week. At least come in tomorrow and give it a shot?"
|
||
|
||
yuuka "..."
|
||
|
||
yuuka "I do not agree with your points, Alice."
|
||
|
||
show yuuka amused
|
||
|
||
yuuka "But I consider you to know me better than most."
|
||
|
||
yuuka "Very well, I'll play along."
|
||
|
||
show alice happy
|
||
|
||
alice "Thank you. That's all I'm asking."
|
||
|
||
show yuuka neutral at flip
|
||
|
||
yuuka "I'll be back tomorrow. Goodbye Alice."
|
||
|
||
alice "Goodbye."
|
||
|
||
$ day = 1
|
||
|
||
$ next_label = "classroom"
|
||
jump day_transition
|
||
elif day == 1:
|
||
# TODO
|
||
# TEXT N
|
||
# STAGE N
|
||
# VAR N
|
||
window show # placeholder
|
||
return
|
||
elif day == 2:
|
||
# TODO
|
||
# TEXT N
|
||
# STAGE N
|
||
# VAR N
|
||
window show # placeholder
|
||
return
|
||
elif day == 3:
|
||
# TODO
|
||
# TEXT N
|
||
# STAGE N
|
||
# VAR N
|
||
window show # placeholder
|
||
return
|
||
elif day == 4:
|
||
# TODO
|
||
# TEXT N
|
||
# STAGE N
|
||
# VAR N
|
||
window show # placeholder
|
||
return
|
||
else:
|
||
"Day is currently set to [day]. This should be impossible. You've likely encountered a bug."
|
||
return
|
||
|
||
label classroom:
|
||
# Day 0 excluded
|
||
if day == 1:
|
||
# TODO
|
||
# TEXT Y
|
||
# STAGE N
|
||
# VAR Y
|
||
label lecture_intro:
|
||
scene bg entrance with fade
|
||
|
||
yuuka "I'm back here again."
|
||
|
||
yuuka "Alice may be a busybody but she means well enough."
|
||
|
||
yuuka "The only question is if I'm actually going along with this or... if I should at least get some fun out of this?"
|
||
|
||
yuuka "And after all, I should get something in return for what I give them."
|
||
|
||
menu:
|
||
"What does Yuuka give them?"
|
||
|
||
"Sunflowers {i}(matter-of-fact){/i}":
|
||
yuuka "Oh fine then. Alice is so insistent on me interacting with humans? Sure, no problems here."
|
||
|
||
yuuka "But what am I even teaching?"
|
||
|
||
scene bg classroom with fade
|
||
|
||
jump lecture
|
||
|
||
"Sunflowers {i}(scheming){/}":
|
||
yuuka "Oh fine then. Alice is so insistent on me interacting with weaklings? Sure, no problems here."
|
||
|
||
yuuka "Especially, if I get a chance to shut them up."
|
||
|
||
$ garden_of_the_sun_lecture = True
|
||
|
||
scene bg garden with fade
|
||
|
||
jump lecture
|
||
|
||
label lecture:
|
||
yuuka "Good morning, class."
|
||
|
||
marisa "Uh, teach-"
|
||
|
||
yuuka "Teacher. It's teacher, not teach."
|
||
|
||
if garden_of_the_sun_lecture:
|
||
marisa "Right... so teacher, why are we here?"
|
||
|
||
yuuka "I don't see why not? It's a perfectly nice place to have our class today."
|
||
|
||
narrator "{i}Marisa took a look at the students around her, confused but unaware they were on the territory of a dangerous, powerful youkai.{/i}"
|
||
|
||
marisa "...sure."
|
||
|
||
yuuka "Now, let's begin shall we?"
|
||
|
||
yuuka "I'd like for us to go over some botany."
|
||
|
||
if attacked_student:
|
||
"Various Students" "She's really good at that! She made a giant flower bloom yesterday!{nw=1}"
|
||
"Various Students" "We know, it's still there.{nw=1}"
|
||
"Various Students" "Isn't it magic not botany?{nw=1}"
|
||
|
||
yuuka "Tsk, tsk. You'd think Professor Okazaki would've taught you better."
|
||
|
||
yuuka "Botany is the study of plants and though we might call some things we do as being magic, that doesn't mean it can't be both."
|
||
|
||
yuuka "Ket's talk about one kind of plant in specific actually."
|
||
|
||
yuuka "The sunflower."
|
||
|
||
if garden_of_the_sun_lecture:
|
||
yuuka "{i}I sweeped my arms around to gesture at the garden, each sunflower standing tall.{/i}" (cb_name="")
|
||
else:
|
||
yuuka "{i}I brought out a potted sunflower I had prepared for today.{/i}" (cb_name="")
|
||
|
||
yuuka "We all know that plants grow facing towards the sun, seeking sustenance, seeking the good source of life."
|
||
|
||
yuuka "But were you aware they also react to other things?"
|
||
|
||
if garden_of_the_sun_lecture:
|
||
yuuka "{i}The sunflowers around us began to turn their faces towards my lecture.{/i}" (cb_name="")
|
||
else:
|
||
yuuka "{i}The sunflower began to turn its face towards my students.{/i}" (cb_name="")
|
||
|
||
yuuka "Chemicals, sounds, temperature changes..."
|
||
|
||
yuuka "{i}The students began to react, gasping, pointing.{/i}" (cb_name="")
|
||
|
||
yuuka "...disease, infection, {sc}parasites{/sc}."
|
||
|
||
if garden_of_the_sun_lecture:
|
||
yuuka "{i}You could hear the chill going down their backs when they heard that.{/i}" (cb_name="")
|
||
|
||
yuuka "And here you are. A group of {sc}flower-trampling, clumsy-limbed mouth-breathers who trample where they please{/sc}."
|
||
|
||
yuuka "A question for participation points: who are the parasites here?"
|
||
|
||
yuuka "{i}Alice got up, worried as she usually is.{/i}" (cb_name="")
|
||
|
||
alice "Hold on, Yuuka. You can't-"
|
||
|
||
yuuka "Do not waste the time of the class, Miss Margatroid. Answer the question or sit down."
|
||
|
||
narrator "{cps=1}...{/cps}"
|
||
|
||
yuuka "If no one will answer the question, then let me give a hands-on demonstration."
|
||
|
||
yuuka "{i}The sunflowers rushed, rapidly surrounding the students, stems twisting towards the sky.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}The students seemed to be getting the picture by then, the situation dawning on their gaping faces.{/i}" (cb_name="")
|
||
|
||
reimu "Stop it!"
|
||
|
||
yuuka "Oh, does one of our own have an answer?"
|
||
|
||
reimu "Save it for the spellcards, Yuuka."
|
||
|
||
yuuka "Fine then. Shall we duel?"
|
||
|
||
reimu "Three spell cards. Don't touch any of the students or I'll {sc}exterminate{/sc} you."
|
||
|
||
yuuka "But of course. It was just a demonstration."
|
||
|
||
# TODO: lots of blasty sfx and explosions
|
||
|
||
yuuka "{i}By the time our battle ended, I had taken much of my anger out on the shrine maiden.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}But the human students seemed to understand by then, instinctively, what kind of being I am.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}They didn't have to wait for my permission to start running away.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}That, of course, ended my brief teaching career.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}My retribution on Yumemi would have to wait for another opportunity.{/i}" (cb_name="")
|
||
|
||
####
|
||
|
||
yuuka "{i}But that didn't really happen, otherwise I wouldn't be here to talk to you all would I?{/i}" (cb_name="")
|
||
|
||
yuuka "{i}And yet here I am.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}I don't understand how or why.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}I hope you can, in time.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Best of luck.{/i}" (cb_name="")
|
||
|
||
if scare_tactics.has():
|
||
"Scare Tactics already has been completed. Consider finding a different ending."
|
||
|
||
$ scare_tactics.grant()
|
||
|
||
jump ending
|
||
|
||
else:
|
||
yuuka "{i}They took to my \"sense of humor\" well enough, earning one or two chuckles, if stressed ones.{/i}" (cb_name="")
|
||
|
||
yuuka "They are living things just like any of you, smarter, more articulate than you could imagine."
|
||
|
||
yuuka "Has anyone here heard of the language of flowers?"
|
||
|
||
narrator "{i}One or two hands went up.{/i}"
|
||
|
||
yuuka "In the back row."
|
||
|
||
"Student" "It's the use of flowers as symbolism in poetry and letters: telling things without saying them directly."
|
||
|
||
yuuka "Not entirely wrong but it extends past use OF flowers. Rather, it is the language that flowers themselves use."
|
||
|
||
yuuka "Today, I'll be teaching you all to learn to listen, not just to me, but to the flowers. If you can learn to hear their voices, there may be hope for you yet."
|
||
|
||
yuuka "{i}And really, I was staking Alice's plea on this.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}A week of my time is a valuable thing, so unless there were results, I would not wait.{/i}" (cb_name="")
|
||
|
||
yuuka "Split off into groups of three, pick your members yourself you're old enough not to need to be babied."
|
||
|
||
yuuka "I've brought one sunflower for each group and I want you all to try and discern what your flower is telling you."
|
||
|
||
"Various Students" "This is crazy.{nw=1.0}"
|
||
"Various Students" "We're listening to flowers talk now?{nw=1.0}"
|
||
"Various Students" "Well, we are learning magic aren't we?{nw=1.0}"
|
||
"Various Students" "Magic that can't be understood is indistinguishable from...{nw=1.0}"
|
||
"Various Students" "It's CAN be understood not CAN'T, you dolt.{nw=1.0}"
|
||
|
||
yuuka "Do not harm any of the flowers. You {sc}WILL{/sc} pay your debt if you do."
|
||
|
||
narrator "Marisa, Alice, and Reimu shivered."
|
||
|
||
yuuka "Now get to it! We'll discuss the results in 15 minutes."
|
||
|
||
scene bg black with fade
|
||
|
||
$ renpy.pause(1.0)
|
||
|
||
marisa "Hey, teach! I think my flower's broken!"
|
||
|
||
alice "I'm not getting anywhere with this."
|
||
|
||
narrator "Reimu was the only one out of the three still taking the assignment seriously."
|
||
|
||
reimu "Listen to their voice..."
|
||
|
||
yuuka "{i}She was staring at her group's potted plant so hard you'd think she'd burn a hole.{/i}" (cb_name="")
|
||
|
||
marisa "I guess you'd be pretty used to this kind of thing, huh Reimu?"
|
||
|
||
alice "Marisa, shut up. Let her focus."
|
||
|
||
reimu "{cps=1}...{/cps}{nw}"
|
||
|
||
reimu "...{fast}I've got nothing."
|
||
|
||
yuuka "Let's wrap this up class! Return to your seats."
|
||
|
||
yuuka "{i}After that, the session continued on/ For the most part, no one felt they managed to hear the sunflowers' voices.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}But...{/i}" (cb_name="")
|
||
|
||
"Various Students" "But don't you think they're pretty? I wonder if they could sense radiation.{nw=1.0}"
|
||
|
||
"Various Students" "For your sake, I hope you don't test that out. I don't know how much our substitute was joking.{nw=1.0}"
|
||
|
||
"Various Students" "Actually, we can't just call her the substitute for the whole week right? What is her nam{nw}"
|
||
|
||
"Various Students" "I dunno about you guys but I think my sunflower can hear me.{nw=1.0}"
|
||
|
||
yuuka "{i}There was more enthusiasm than I had expected.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Still I had made my decision.{/i}" (cb_name="")
|
||
|
||
scene bg black with fade
|
||
|
||
jump hallway
|
||
return
|
||
elif day == 2:
|
||
# TODO
|
||
# TEXT N
|
||
# STAGE N
|
||
# VAR N
|
||
window show # placeholder
|
||
return
|
||
elif day == 3:
|
||
# TODO
|
||
# TEXT N
|
||
# STAGE N
|
||
# VAR N
|
||
window show # placeholder
|
||
return
|
||
elif day == 4:
|
||
# TODO
|
||
# TEXT N
|
||
# STAGE N
|
||
# VAR N
|
||
window show # placeholder
|
||
return
|
||
else:
|
||
"Day is currently set to [day]. This should be impossible. You've likely encountered a bug."
|
||
return
|
||
|
||
|
||
# side character stuff here
|
||
label hallway:
|
||
if day == 1:
|
||
# TODO
|
||
# TEXT Y
|
||
# STAGE N
|
||
# VAR Y
|
||
|
||
$ did_not_visit_faculty = True
|
||
|
||
$ did_not_visit_audiotorium = True
|
||
|
||
$ did_not_visit_classroom = True
|
||
|
||
yuuka "What a waste of time."
|
||
|
||
label hallway_navigation:
|
||
|
||
menu:
|
||
"Where does Yuuka go?"
|
||
|
||
"Exit school":
|
||
if did_not_visit_classroom:
|
||
yuuka "{i}And leave I did.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}I vowed to return.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Justice would come back around for the field one way or another, and I had long term plans to make Yumemi pay.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}But in the meantime, it was just me and a field that needed nurturing and healing now.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Admittedly, there might've been something akin to potential in those students.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}However, they failed my simplest of tasks.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}In truth, the flowers speak for everyone even if I'm the only one who can hear them.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Sad isn't it? To be heard by only one person in the world.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}...{/i}" (cb_name="")
|
||
|
||
yuuka "{i}But that didn't really happen, otherwise I wouldn't be here to talk to you all would I?{/i}" (cb_name="")
|
||
|
||
yuuka "{i}And yet here I am.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}I don't understand how or why.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}I hope you can, in time.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Best of luck.{/i}" (cb_name="")
|
||
|
||
if long_term.has():
|
||
"Long Term already has been completed. Consider finding a different ending."
|
||
|
||
$ long_term.grant()
|
||
jump ending
|
||
else:
|
||
|
||
yuuka "{i}I left the school not assuaged but...{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Feeling a little lighter.{/i}" (cb_name="")
|
||
|
||
$ day = 2
|
||
|
||
$ next_label = "faculty"
|
||
|
||
jump day_transition
|
||
|
||
"Go to the faculty room" if did_not_visit_faculty:
|
||
""
|
||
$ did_not_visit_faculty = False
|
||
|
||
"Faculty Member" "Ah, looking for something?"
|
||
|
||
# explains the exam thing
|
||
jump hallway_navigation
|
||
|
||
"Go to the audiotorium" if did_not_visit_audiotorium:
|
||
""
|
||
|
||
show screen inventory_display_toggle
|
||
$ inventory_items.append("Chocolate THIS IS A TEST")
|
||
|
||
$ did_not_visit_audiotorium = False
|
||
jump hallway_navigation
|
||
|
||
"Go to her classroom" if did_not_visit_classroom:
|
||
yuuka "{i}I walked over to the classroom, opening the door.{/i}" (cb_name="")
|
||
|
||
yuuka "Empty."
|
||
|
||
"???" "Lookin' for someone?"
|
||
|
||
# reimu appears
|
||
|
||
yuuka "Oh. It's you."
|
||
|
||
yuuka "{i}She rolled her eyes at that one.{/i}" (cb_name="")
|
||
|
||
reimu "I have a name you can use, you know."
|
||
|
||
yuuka "Most people do."
|
||
|
||
reimu "Yeah."
|
||
|
||
reimu "{cps=1}...{/cps}"
|
||
|
||
reimu "Are you looking for something?"
|
||
|
||
yuuka "Nothing in particular."
|
||
|
||
reimu "Mhm."
|
||
|
||
narrator "{cps=1}...{/cps}"
|
||
|
||
yuuka "I should go-{nw}"
|
||
|
||
reimu "When I said I had nothing, during the activity earlier."
|
||
|
||
reimu "I meant I didn't hear anything."
|
||
|
||
reimu "I did feel... something?"
|
||
|
||
yuuka "Is that so?"
|
||
|
||
reimu "It was a passing sensation, just an instant, nearly nothing really."
|
||
|
||
reimu "Still, I'm looking forward to you next class."
|
||
|
||
yuuka "...I see. Thank you for telling me that, Reimu."
|
||
|
||
yuuka "{i}And then I left without waiting for a response, her footsteps in the opposite direction from mine.{/i}" (cb_name="")
|
||
|
||
$ did_not_visit_classroom = False
|
||
$ reimu_progress += 1
|
||
jump hallway_navigation
|
||
|
||
"Wait here" if janitor_talks == 0:
|
||
|
||
$ janitor_talks += 1
|
||
|
||
yuuka "It's exhausting, hamming it up for so many people."
|
||
|
||
yuuka "{i}I stood there, learning against a wall, not sure what I was waiting for when a cup of tea with my name was at home.{/i}" (cb_name="")
|
||
|
||
"???" "Hm, you tha' new substitute teacher?"
|
||
|
||
yuuka "{i}I, of course, did not deign to turn my head to look at whoever was talking to me.{/i}" (cb_name="")
|
||
|
||
"???" "You younguns', tsk, tsk. No respect for 'ur elders."
|
||
|
||
# TODO: Yumemi in bad janitor disguise appears
|
||
|
||
janitor "Ya mind standin' somewhere else so I can clean?"
|
||
|
||
yuuka "..."
|
||
|
||
janitor "Suit 'urself, whippersnapper."
|
||
|
||
# janitor leaves
|
||
|
||
jump hallway_navigation
|
||
elif day == 2:
|
||
label hallway_navigation2:
|
||
|
||
menu:
|
||
"Where does Yuuka go?"
|
||
|
||
"Exit school":
|
||
""
|
||
$ next_label = "faculty"
|
||
jump day_transition
|
||
|
||
"Go to the faculty room" if did_not_visit_faculty:
|
||
""
|
||
jump hallway_navigation
|
||
|
||
"Go to the audiotorium" if did_not_visit_audiotorium:
|
||
""
|
||
jump hallway_navigation
|
||
|
||
"Go to her classroom" if did_not_visit_classroom:
|
||
""
|
||
jump hallway_navigation
|
||
|
||
"Wait here" if janitor_talks == 0:
|
||
""
|
||
jump hallway_navigation
|
||
elif day == 3:
|
||
label hallway_navigation3:
|
||
menu:
|
||
"Where does Yuuka go?"
|
||
|
||
"Exit school":
|
||
""
|
||
$ next_label = "penultimate_presentation"
|
||
jump day_transition
|
||
|
||
"Go to the faculty room" if did_not_visit_faculty:
|
||
""
|
||
jump hallway_navigation
|
||
|
||
"Go to the audiotorium" if did_not_visit_audiotorium:
|
||
""
|
||
jump hallway_navigation
|
||
|
||
"Go to her classroom" if did_not_visit_classroom:
|
||
""
|
||
jump hallway_navigation
|
||
|
||
"Wait here" if janitor_talks == 0:
|
||
""
|
||
jump hallway_navigation
|
||
elif day == 4:
|
||
label hallway_navigation4:
|
||
menu:
|
||
"Where does Yuuka go?"
|
||
|
||
"Exit school":
|
||
""
|
||
jump day_transition
|
||
|
||
"Go to the faculty room" if did_not_visit_faculty:
|
||
""
|
||
jump hallway_navigation
|
||
|
||
"Go to the audiotorium" if did_not_visit_audiotorium:
|
||
""
|
||
jump hallway_navigation
|
||
|
||
"Go to her classroom" if did_not_visit_classroom:
|
||
""
|
||
jump hallway_navigation
|
||
|
||
"Wait here" if janitor_talks == 0:
|
||
""
|
||
jump hallway_navigation
|
||
else:
|
||
"Day is currently set to [day]. This should be impossible. You've likely encountered a bug."
|
||
return
|
||
|
||
label faculty:
|
||
if day == 2:
|
||
# TODO
|
||
# TEXT N
|
||
# STAGE N
|
||
# VAR N
|
||
|
||
yuuka "{i}Next few days, actually.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}But I spent those days doing the same thing.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Teaching.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}I learnt that this wasn't necessarily a normal school with my time here.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Well normal as far as circumstances could allow.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}It was specifically a school merging Outside World education with magic.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Now, I've no experience with the former but when it comes to magic, I think of myself as being above average.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Things did get tense from time to time.{/i}" (cb_name="")
|
||
|
||
# cutaway
|
||
|
||
yuuka "Are you just dense or did your mother replace your brain with wool?"
|
||
|
||
# cutback
|
||
|
||
yuuka "{i}Yeah.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}The students kept attending, for the most part, which was a surprise.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Professor Okazaki was apparently equally eccentric as I was.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Part of what convinced people I was the real substitute.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Which only made it more odd that the real one never showed up, if there ever was one.{/i}" (cb_name="")
|
||
|
||
label additional_lecture:
|
||
# added to flesh out her teaching more and actually see the classroom setting
|
||
|
||
yuuka "The care of flowers should not only be to ensure their appearance, but to ensure they are fulfilled."
|
||
|
||
yuuka "To prolong the life, to let it bloom and thrive, to not..."
|
||
|
||
yuuka "..."
|
||
|
||
yuuka "To not allow harm to come to it."
|
||
|
||
if investigation_progress >= 2:
|
||
yuuka "{i}I had gotten some leads into the destruction of the field that precipitated my arrival here.{/i}" (cb_name="")
|
||
yuuka "{i}However, I had found just as many dead ends. Things didn't add up.{/i}" (cb_name="")
|
||
yuuka "{i}I don't think I could've seen it coming, but I made my decision all the same.{/i}" (cb_name="")
|
||
elif investigation_progress == 1:
|
||
yuuka "{i}I had only begun investigating the destruction of the field that precipatated my arrival here.{/i}" (cb_name="")
|
||
yuuka "{i}I should've set aside more time for that. I couldn't have known either way...{/i}" (cb_name="")
|
||
yuuka "{i}But it never hurts to be prepared.{/i}" (cb_name="")
|
||
else:
|
||
yuuka "{i}I had neglected to look into the the destruction of the field that precipatated my arrival here.{/i}" (cb_name="")
|
||
yuuka "{i}And for what reason should I have? It was obvious who was at fault.{/i}" (cb_name="")
|
||
yuuka "{i}Perhaps, I should've looked into it.{/i}" (cb_name="")
|
||
|
||
yuuka "Any questions class?"
|
||
|
||
narrator "A few hands went up, too many to get to all of them in the time left, though notably one of the hands belonged to Reimu."
|
||
|
||
menu:
|
||
# TODO: FILL OUT THE EXTRA CLASS
|
||
"Who does Yuuka answer a question from?"
|
||
|
||
"One of the normal students":
|
||
|
||
""
|
||
""
|
||
|
||
"Reimu":
|
||
$ reimu_progress += 1
|
||
""
|
||
""
|
||
|
||
yuuka "{i}Soon however, exams would come.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Now I'm talking about midterms, right?{/i}" (cb_name="")
|
||
|
||
yuuka "{i}No, it's not as dramatic a climax as final exams.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}But who would allow an untrained substitute that late into the semester to dictate the class?{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Especially one who has no idea what they're learning or even what subject she's taking over for.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}That's why it would've have made sense if it were midterms, but unfortunately Professor Okazaki is, again, very eccentric.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}The FINAL exams would come soon.{/i}" (cb_name="")
|
||
|
||
# faculty room
|
||
|
||
scene bg faculty
|
||
|
||
if attacked_student:
|
||
"Student" "Please, you've got to tell me how you did that giant sunflower!"
|
||
|
||
"Student" "I'd kill to know how, it'd impress so much!"
|
||
|
||
yuuka "{i}The final exams were to be a presentation of your best magic. Whether it be the most perfected, most flashy, most personal, most elegant.{/i}" (cb_name="")
|
||
|
||
yuuka "{b}Kill{/b}, you say?"
|
||
|
||
"Student" "That's right! So you see, I'm trying to get a good score in the Mass section of our rubric, based on last year's finals. As far as I can tell your magic is the most massive I've seen so far! Bar, Professor Okazaki's masterstroke, of course. On that, have you communicated with her? Are we still using last year's rubric or-{nw}"
|
||
else:
|
||
yuuka "{i}The final exams were to be a presentation of your best magic. Whether it be the most perfected, most flashy, most personal, most elegant.{/i}" (cb_name="")
|
||
|
||
yuuka "You say you wanted to ask me something?"
|
||
|
||
"Student" "That's right! So about our final exam, I was wondering about the rubric if we're following last year's system or if you'll be using your own? In which case, I'd like to ask what criteria are you using, are taking into account the student's participation in class because Professor Okazaki will attest that I-{nw}"
|
||
|
||
yuuka "Please close the mouth-shaped whole on your face."
|
||
|
||
"Student" "Okay.{w=1.0} Now what?"
|
||
|
||
yuuka "Now what, what?"
|
||
|
||
"Student" "Now what do you want me to do? If it means a good grade, I'll do anything!"
|
||
|
||
yuuka "...I'll need you to turn around."
|
||
|
||
"Student" "Sure, done."
|
||
|
||
yuuka "And walk outside the school. Find a nice meadow to relax. Don't come back until I've left the building."
|
||
|
||
"Student" "I will do everything you say down to the most minute detail."
|
||
|
||
yuuka "And that's why you're my favorite student."
|
||
|
||
yuuka "{i}She left soon after.{/i}" (cb_name="")
|
||
|
||
yuuka "Favorite to tricking into leaving."
|
||
|
||
"Faculty Member" "Having trouble with the kids, Miss... I don't believe I've gotten your name?"
|
||
|
||
yuuka "No, you haven't gotten it. And yes, I didn't expect consultations. I'd have thought the buggers, given how happy they are when class ends, wouldn't want more."
|
||
|
||
"Faculty Member" "Well, I'm sure they feel they need any advantage they can get this late into the semester."
|
||
|
||
"Faculty Member" "Has taking over Professor Okazaki's Magi-Physics class caused any issues?"
|
||
|
||
yuuka "Magi-what?{nw}"
|
||
|
||
yuuka "I mean, no, absolutely {sc}no{/sc} issues."
|
||
|
||
yuuka "{i}I soon realized an issue.{/i}" (cb_name="")
|
||
|
||
scene bg classroom with fade
|
||
|
||
yuuka "Class, given your final exam is literally in two days, I've come to a decision."
|
||
|
||
menu:
|
||
|
||
"What does Yuuka propose?"
|
||
|
||
"Revolution, obviously":
|
||
|
||
$ revolution += 1
|
||
|
||
yuuka "We are going to walk out on the upcoming exam. There will be no exam, so long as there are no teachers or students to take it."
|
||
|
||
"Various Students" "No exam? Let's gooooooooooooooooooooooooooooooooooo{nw}"
|
||
"Various Students" "But how will this affect the economy?{nw=1}"
|
||
"Various Students" "Who cares about the economy? Anarchy!{nw=1}"
|
||
"Various Students" "That's not what anarchy means. It literally means order without r{nw}"
|
||
"Various Students" "I am begging you all to shut up.{nw=1}"
|
||
"Various Students" "The teachers are in on this? Who exactly are we protesting then?{nw=1}"
|
||
"Various Students" "The principal, I guess. Do we have a principal?{nw=1}"
|
||
"Various Students" "I'd assume Professor Okazaki, isn't she the founder?{nw=1}"
|
||
"Various Students" "Yeah, but she was fired.{nw=1}"
|
||
"Various Students" "Huh, what's happening? Is it a test?{nw=1}"
|
||
"Various Students" "Dude, you ask that every time we have class. Stop staying up, playing League of{nw}"
|
||
"Various Students" "Dude, you ask that every time we have class. Stop staying up, playing {fast}Outlasting Maroon{nw=1.0}"
|
||
|
||
yuuka "Are we clear on this?"
|
||
|
||
"Various Students" "No!{nw=0.5}"
|
||
|
||
yuuka "Good."
|
||
|
||
alice "This is a terrible decision, Yuuka. Have you thought this out at all? You could tip Yumemi off that something's wrong."
|
||
|
||
marisa "Worse than that, this means no Libraonmics class at two-thirty!"
|
||
|
||
reimu "I thought you hated that class? You've never attended it."
|
||
|
||
marisa "Yes, but the timeslot is perfect since it's taught by the school's main librarian."
|
||
|
||
marisa "I'm in and out before the replacement can arrive. It's a way easier target than the Scarlets'"
|
||
|
||
alice "Could we bring this back to the topic at hand? You're creating chaos, the students are out of control!"
|
||
|
||
"Students teach students":
|
||
|
||
yuuka "Class, I'll be opening up student tutoring regarding Magi-Physics."
|
||
|
||
"Various Students" "It was weird we suddenly started doing Magi-Botany.{nw=1}"
|
||
"Various Students" "I took it in stride, this is easy shit in comparison.{nw=1}"
|
||
"Various Students" "We changed teachers?{nw=1}"
|
||
"Various Students" "How have you just now noticed? Professor Okazaki is bright red from hair to clothes, you'd have to be blind to confuse her and... uh, I know this... it was...{nw=1}"
|
||
"Various Students" "To be fair, I thought she could've just dyed her hair.{nw=1}"
|
||
|
||
yuuka "Are we clear on this?"
|
||
|
||
narrator "{i}A familiar hand went up.{/i}"
|
||
|
||
yuuka "Yes?"
|
||
|
||
"Student" "May I volunteer my friend, my inspiration, Ga{nw}"
|
||
|
||
"A Different Student" "You backstabber! You should be tutoring, you actually like this class!{nw=1.0}"
|
||
|
||
"Student" "Right, because you only like Professor Okazaki and her strawberry red hair, and her cape, so cool, and{nw}"
|
||
|
||
"Once Again, A Different Student" "Can it, you two! The only person who should be handling other students is someone with experience. That's why I think Li{nw}"
|
||
|
||
"Another Student Entirely, This Time" "You skunk! I taught you one time!{nw=1.0}"
|
||
|
||
yuuka "Wow, I've really imparted my values onto this class haven't I."
|
||
|
||
alice "That, for better or worse, you have."
|
||
|
||
marisa "Worse. Definitely worse."
|
||
|
||
reimu "Eh. It's about the same as how they'd react in the school in the Human Village."
|
||
|
||
alice "But those are kindergarteners?"
|
||
|
||
reimu "Exactly."
|
||
|
||
narrator "{i}Reimu pointed at the class, arguments in various small pockets melding into a cacophony of voices.{/i}"
|
||
|
||
reimu "Kindergarteners."
|
||
|
||
yuuka "I'm glad you all see it my way~"
|
||
|
||
marisa "Let's take this outside if we're actually going to talk. I'm getting a headache from listening to this."
|
||
|
||
scene bg hallway with fade
|
||
|
||
yuuka "So?"
|
||
|
||
alice "What do you mean, \"so\"?"
|
||
|
||
yuuka "Weren't you the one, Alice, that said I had to interact with humans more? I've been doing exactly that and see how it ended up."
|
||
|
||
yuuka "Chaos and rage directed at one another: treating each other like how they treat the rest of nature's providence."
|
||
|
||
yuuka "I simply let them be as they are."
|
||
|
||
$ renpy.pause(1.0)
|
||
|
||
alice "You know, what Yuuka?"
|
||
|
||
alice "I'm not even going to argue with you."
|
||
|
||
alice "You've determined you're right and that's all that matters to you."
|
||
|
||
alice "Not the students, not me, and certainly most of all: not the flowers you seem to act like you're a representative for."
|
||
|
||
yuuka "I quite literally am as a flower youkai."
|
||
|
||
alice "No, I don't think you are. You just took it up as a face for yourself."
|
||
|
||
alice "You don't seem to think of anything as different from playing with your food."
|
||
|
||
alice "And frankly, I'm done trying to work with you. I'm going to be working around you from here on."
|
||
|
||
yuuka "Is that a threat?"
|
||
|
||
alice "It is the opposite of one. You're not my concern anymore."
|
||
|
||
yuuka "Oh for your mother's sake, Alice. You know fully well what they've done, the thousands of lives beneath their feet, taken carelessly, thoughtlessly."
|
||
|
||
marisa "Should we really be here?" # talking to reimu
|
||
|
||
reimu "I say we stick to the sidelines for now."
|
||
|
||
yuuka "You keep telling me to be mindful, to be considerate. Why, when so few will give the plants, give me that same chance?"
|
||
|
||
yuuka "It's hypocrisy to demand of me so much when you don't speak the same way to those... children."
|
||
|
||
alice "..."
|
||
|
||
alice "I speak that way to you, Yuuka, because you are my friend."
|
||
|
||
alice "But I don't know if you feel the same way."
|
||
|
||
yuuka "..."
|
||
|
||
alice "..."
|
||
|
||
yuuka "What? Do you want me to give you some kind of bracelet?"
|
||
|
||
alice "..."
|
||
|
||
yuuka "{i}Alice sighed deeply then.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}To a degree I did, and still do, understand what she was getting at.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Stubborn as we could both be.{/i}" (cb_name="")
|
||
|
||
alice "It's not our problem if the students don't pass their class."
|
||
|
||
reimu "Only if it turns into trouble for the rest of Gensokyo."
|
||
|
||
marisa "And ya did kind of start a shouting match back there. That's noise disturbances at minimum."
|
||
|
||
yuuka "Humans could do with being quiet a bit more often."
|
||
|
||
reimu "Well, let's try and contain this before it erupts into something worse."
|
||
|
||
if revolution != 0:
|
||
|
||
yuuka "I was serious about there not being an exam."
|
||
|
||
yuuka "I've seen their curriculum, it's all useless, extraneous topics."
|
||
|
||
yuuka "Who would ever need to know how to file taxes when Gensokyo has no taxes?"
|
||
|
||
alice "Agreed. If only they taught more important things like geography and linear algebra."
|
||
|
||
marisa "Are we doing a bit? Who uses those things?"
|
||
|
||
alice "Me."
|
||
|
||
marisa "Why?"
|
||
|
||
alice "For making my dolls and... making my dolls. They're all named after cities, did you never notice?"
|
||
|
||
marisa "Well, you did name one of them Hourai."
|
||
|
||
alice "That's a mountain. The elixir is named after the mountain."
|
||
|
||
marisa "Ohhhhhhhhhh. Explains that, I thought it was just a funny name."
|
||
|
||
else:
|
||
|
||
yuuka "Would you all happen to be familiar with the Magi-physics that was previously taught?"
|
||
|
||
marisa "Yeah, I know magic and I know physics."
|
||
|
||
alice "Skilled as a practioner you are, you're hardly theoretician when it comes to magic, let alone physics, Marisa. Do you even know Netwon's three principles?"
|
||
|
||
marisa "Drop a ball from a tower and it falls, shoot someone with a spellcard and they fall. Same thing right?"
|
||
|
||
alice "That's Galileo."
|
||
|
||
marisa "I thought Newton invented gravity?"
|
||
|
||
yuuka "Do you actively try to be an idiot, Marisa?"
|
||
|
||
marisa "I don't have to try; skills just come naturally to me."
|
||
|
||
reimu "This is going nowhere."
|
||
|
||
reimu "Yuuka, you're clearly more invested in these students' education that your attitude lets on."
|
||
|
||
reimu "If you care about their exam, then do you have a plan? A next step?"
|
||
|
||
yuuka "Yes, I just need to ensure certain people are convinced the exam is unnecessary or that they would rather not go at all."
|
||
|
||
if revolution != 0:
|
||
menu:
|
||
"Who does Yuuka \"convince\"?"
|
||
|
||
"The faculty":
|
||
|
||
# DONE
|
||
|
||
$ revolution += 1
|
||
|
||
yuuka "I'll talk with the actual teachers, see if I can't twist their arms into dropping this exam buisiness entirely."
|
||
|
||
alice "Okay. Don't actually twist their arms."
|
||
|
||
yuuka "It's just a figure of speech."
|
||
|
||
# cuts to yuuka twisting their arms
|
||
|
||
scene bg faculty
|
||
|
||
yuuka "And repeat it back to me, slowly."
|
||
|
||
"Faculty Member" "Yes, yes! No exams, I get it! Now {sc}LET GO{/sc}!"
|
||
|
||
scene bg classroom
|
||
|
||
yuuka "I glad to report to you all that the other teachers and I have come to a consensus regarding your exams. There will be no final exams."
|
||
|
||
"Student" "I'm happy we have a substitute who's so forgiving, huh Alice?"
|
||
|
||
alice "Right, forgiving."
|
||
"The students":
|
||
|
||
yuuka "Thinking about it, I don't even need to talk to the teachers do I?"
|
||
|
||
yuuka "So long as there are no students, there's no one to fail."
|
||
|
||
alice "Then they'll just fail everyone."
|
||
|
||
yuuka "Does it mean anything at that point?"
|
||
|
||
alice "Well... yes. They'd held back a year."
|
||
|
||
yuuka "But so would everyone else."
|
||
|
||
marisa "And so nothing would change! Not a bad idea!"
|
||
|
||
alice "They'd still have to repeat a year?"
|
||
|
||
yuuka "We could use the same tactic to stop them from repeating a year."
|
||
|
||
reimu "That might actually work..."
|
||
|
||
alice "This all seems terribly planned out."
|
||
|
||
yuuka "Stick in a mud as usual, Alice. Don't worry, I'll handle everything."
|
||
else:
|
||
yuuka "I said what I said. The students are just going to have to teach each other."
|
||
|
||
yuuka "Besides didn't they have an entire semester to learn this, surely they know something about the topic they've taken up thus far."
|
||
|
||
yuuka "Students wouldn't be unprepared for an upcoming exam, would they?"
|
||
|
||
alice "No, surely not. They also would not procrastinate on their studies even if under a subsitute teacher."
|
||
|
||
yuuka "I'm glad we've got our thumbs to the beating heart of the students, Alice. Knowing that, it's probably best to assign them to each other than leave them to their own devices."
|
||
|
||
marisa "I am deeply uncomfortable with you saying you're holding the students' beating heart."
|
||
|
||
reimu "I got chills from that image."
|
||
|
||
scene bg black with fade
|
||
|
||
# then determine if the teachers quit or not, and if not do the exams still happen?
|
||
|
||
if revolution > 0:
|
||
$ exam_cancelled = True
|
||
|
||
if exam_cancelled:
|
||
yuuka "{i}As you all know, the exams were to be called off the next day.{/i}" (cb_name="")
|
||
|
||
if revolution >= 2:
|
||
yuuka "{i}Not just that, but the faculty of the school went on a walk out, in protest of what they called my \"heavy-handed approach\".{/i}" (cb_name="")
|
||
|
||
yuuka "{i}I became very popular with the students however.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}That's why as you're sitting in your seats, waiting for Professor Okazaki to sweep in and replace me, the menace you welcomed in,{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Just know that she won't be making it.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}I do hope I've made my distate of her clear by now?{/i}" (cb_name="")
|
||
|
||
narrator "{i}One or two nervous nods came in response.{/i}"
|
||
|
||
yuuka "{i}Yes? Good.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Then I'll let you imagine how I dealt with her.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}I hope you intend to complete your walk out by quitting, now, dearies.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}This is my school and my students from here on out.{/i}" (cb_name="")
|
||
|
||
if very_loud_quitting.has():
|
||
"Very Loud Quitting already has been completed. Consider finding a different ending."
|
||
|
||
$ very_loud_quitting.grant()
|
||
|
||
jump ending
|
||
else:
|
||
yuuka "{i}The students were estatic but the faculty were deeply worried.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Worry no longer, for you now know the truth.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Though it can never free you, at least you know.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}I ask not for sympathy. Just an understanding.{/i}" (cb_name="")
|
||
|
||
$ next_label = "exam"
|
||
$ day += 1
|
||
|
||
jump day_transition
|
||
else:
|
||
yuuka "{i}The students took to it well.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}We were correct that they had been prepared throughout the semester.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}And by that we mean they crammed like their lives depended on it.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}A sentiment that must be familiar to you all.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}The day fast approached and I had my own preparations to do...{/i}" (cb_name="")
|
||
|
||
yuuka "{i}Seeing them work hard (with the addition of an extreme pressure) meant I felt a bit generous.{/i}" (cb_name="")
|
||
|
||
yuuka "{i}It took a little bit of convincing but let me allow the results to speak for themselves in a moment.{/i}" (cb_name="")
|
||
|
||
$ next_label = "exam"
|
||
$ day += 1
|
||
|
||
jump day_transition
|
||
|
||
# current plans: after consultations determines if there'll be a final exam at all
|
||
|
||
elif day == 3:
|
||
# TODO
|
||
# TEXT N
|
||
# STAGE N
|
||
# VAR N
|
||
window show # placeholder
|
||
return
|
||
elif day == 4:
|
||
# TODO
|
||
# TEXT N
|
||
# STAGE N
|
||
# VAR N
|
||
window show # placeholder
|
||
return
|
||
else:
|
||
"Day is currently set to [day]. This should be impossible. You've likely encountered a bug."
|
||
return
|
||
|
||
label exam:
|
||
if day == 3:
|
||
# TODO
|
||
# TEXT Y
|
||
# STAGE N
|
||
# VAR Y
|
||
|
||
# This leads to the 7th ending
|
||
if exam_cancelled:
|
||
$ day += 1
|
||
jump finale
|
||
|
||
label exam_proper:
|
||
scene bg classroom with fade
|
||
# exam minigame thingy not really but based on the koakuma kiss comic making
|
||
# keep it simple, draw a form
|
||
|
||
# ----------------------------------- #
|
||
# Student's perspective
|
||
# slowly realizing that yuuka changed some questions to the exam
|
||
|
||
"Student" "Hey, Reimu!"
|
||
|
||
reimu "Huh, uh, yeah?"
|
||
|
||
"Student" "Did you review Professor Okazaki's research into the soul? I'm still confused by it, I was hoping you understood it better than I did."
|
||
|
||
reimu "Oh, you could explain what you know then, to make sure we're on the same page."
|
||
|
||
"Student" "Sure!"
|
||
|
||
"Student" "So the force of a magical attack is its mass measured in the weight of a soul times acceleration."
|
||
|
||
"Student" "That means we can derive the weight of a soul if we divide the force of a magical attack by its acceleration."
|
||
|
||
"Student" "Now, we need a way to measure the force of a-"
|
||
|
||
yuuka "Take your seats and put away anything that isn't a pen."
|
||
|
||
"Student" "Oh, uh, you measure it with a ballistic p-"
|
||
|
||
# something in between
|
||
|
||
# F = m × a becomes m = F/a
|
||
|
||
# reimu takes the exams
|
||
|
||
"What is the formula for the mass of a magical attack?"
|
||
|
||
show text "A. m = F / a\nB. m = a x m\nC. m = a / F\nD. m = F x m" at truecenter
|
||
|
||
if(persistent.playeranswer1 == ""):
|
||
|
||
$ msg = renpy.input("What is the formula for the mass of a magical attack?")
|
||
|
||
$ persistent.playeranswer1 = msg
|
||
$ renpy.save_persistent()
|
||
|
||
hide text
|
||
|
||
reimu "{i}I hope I got that right...{/i}"
|
||
else:
|
||
reimu "{i}It's [persistent.playeranswer1] right?{/i}"
|
||
|
||
#
|
||
|
||
"With what device do you measure the force of a magical attack?"
|
||
|
||
show text "A. Ballistic Perforator\nB. Ballistic Pendulum\nC. Ballast\nD. Ballistic Shell" at truecenter
|
||
|
||
if(persistent.playeranswer2 == ""):
|
||
|
||
$ msg = renpy.input("With what device do you measure the force of a magical attack?")
|
||
|
||
$ persistent.playeranswer2 = msg
|
||
$ renpy.save_persistent()
|
||
|
||
hide text
|
||
|
||
reimu "{i}I hope I got that right...{/i}"
|
||
else:
|
||
reimu "{i}It should be... [persistent.playeranswer2]. I think?{/i}"
|
||
|
||
#
|
||
|
||
"What flower is well-known for turning to face the sun?"
|
||
|
||
show text "A. Lotus Flower\nB. Hydrangea\nC. Rose\nD. Sunflower" at truecenter
|
||
|
||
if(persistent.playeranswer3 == ""):
|
||
|
||
$ msg = renpy.input("What flower is well-known for turning to face the sun?")
|
||
$ persistent.playeranswer3 = msg
|
||
$ renpy.save_persistent()
|
||
|
||
hide text
|
||
|
||
reimu "{i}That's a weird one but it seems pretty easy, no?{/i}"
|
||
else:
|
||
reimu "{i}That's a weird one but [persistent.playeranswer3], right? It seems easy compared to the others?{/i}"
|
||
|
||
#
|
||
|
||
"What is the language of flowers?"
|
||
|
||
show text "A. Written language on flower petals\nB. Poetic metaphors using flowers\nC. How flowers attract bees\nD. The voice the flowers speak in" at truecenter
|
||
|
||
if(persistent.playeranswer4 == ""):
|
||
|
||
$ msg = renpy.input("What is the language of flowers?")
|
||
|
||
$ persistent.playeranswer4 = msg
|
||
$ renpy.save_persistent()
|
||
|
||
hide text
|
||
|
||
reimu "{i}Hey wait a minute...{/i}"
|
||
else:
|
||
reimu "{i}[persistent.playeranswer4]. Hey wait a minute...{/i}"
|
||
|
||
#
|
||
|
||
"Who's gonna pass this exam?"
|
||
|
||
show text "A. You.\nB. Yes, you.\nC. Don't deny it.\nD. Isn't it obvious?" at truecenter
|
||
|
||
if(persistent.playeranswer5 == ""):
|
||
|
||
$ msg = renpy.input("Who's gonna pass this exam?")
|
||
|
||
$ persistent.playeranswer5 = msg
|
||
$ renpy.save_persistent()
|
||
|
||
hide text
|
||
|
||
reimu "{i}Did Yuuka change the exam questions?{/i}"
|
||
reimu "{i}Huh, that's... really nice of her. If she keeps this up I'll have to ask Akyuu to change her profile in the Gensokyo Chronicle.{/i}"
|
||
reimu "{i}Assuming this isn't just a plot of hers.{/i}"
|
||
reimu "{i}...I hope it isn't. Besides, she's more of the brute force type anyway.{/i}"
|
||
|
||
$ day += 1
|
||
|
||
jump penultimate_presentation
|
||
else:
|
||
"Day is currently set to [day]. This should be impossible. You've likely encountered a bug."
|
||
return
|
||
|
||
label penultimate_presentation:
|
||
if day == 4:
|
||
# TODO
|
||
# TEXT N
|
||
# STAGE N
|
||
# VAR N
|
||
window show # placeholder
|
||
return
|
||
else:
|
||
"Day is currently set to [day]. This should be impossible. You've likely encountered a bug."
|
||
return
|
||
|
||
label finale:
|
||
# the you finished enough of the game idgaf route
|
||
|
||
# it should happen in the garden of the sun
|
||
|
||
return
|
||
|
||
label day_transition:
|
||
scene bg black with fade
|
||
$ renpy.pause(1.0)
|
||
python:
|
||
if layout.yesno_prompt("none", "Do you want save your game?"):
|
||
try:
|
||
renpy.save("1-1", extra_info="auto-save")
|
||
renpy.say("", "Game saved.")
|
||
except:
|
||
renpy.say("", "Save failed.")
|
||
renpy.say("", "Proceeding without saving game.")
|
||
else:
|
||
renpy.say("", "Proceeding without saving game.")
|
||
narrator "{i}The next day...{/i}"
|
||
scene bg garden with fade
|
||
# sunflower talk
|
||
if day == 1:
|
||
|
||
play music "wind_atmo.mp3"
|
||
|
||
play sound "wind1.mp3"
|
||
$ renpy.pause(3.0, hard=True)
|
||
|
||
show yuuka looking with dissolve
|
||
|
||
yuuka "Good morning, my dears."
|
||
|
||
play sound "wind2.mp3"
|
||
$ renpy.pause(3.0)
|
||
|
||
yuuka "Indeed, quite a terrible act was inflicted on your brethren."
|
||
|
||
play sound "wind3.mp3"
|
||
$ renpy.pause(3.0)
|
||
|
||
yuuka "I have my plans. I do hope you eagerly await the fruits of my labor."
|
||
|
||
stop music
|
||
elif day == 2:
|
||
# TODO
|
||
# TEXT N
|
||
# STAGE N
|
||
# VAR N
|
||
|
||
play music "wind_atmo.mp3"
|
||
|
||
play sound "wind1.mp3"
|
||
$ renpy.pause(3.0, hard=True)
|
||
|
||
show yuuka looking with dissolve
|
||
|
||
yuuka "Good tidings, I believe I am planting seeds germinating in those miscreants."
|
||
|
||
play sound "wind2.mp3"
|
||
$ renpy.pause(3.0)
|
||
|
||
yuuka "In time, I will turn even Yumemi's own students against her."
|
||
|
||
play sound "wind3.mp3"
|
||
$ renpy.pause(3.0)
|
||
|
||
yuuka "I will take great pleasure in seeing her downfall, as well."
|
||
|
||
stop music
|
||
elif day == 3:
|
||
# TODO
|
||
# TEXT N
|
||
# STAGE N
|
||
# VAR N
|
||
|
||
play music "wind_atmo.mp3"
|
||
|
||
play sound "wind1.mp3"
|
||
$ renpy.pause(3.0, hard=True)
|
||
|
||
show yuuka looking with dissolve
|
||
|
||
yuuka "I'm sorry I haven't attended to you as much this past week. I've had other seedling taking up my time."
|
||
|
||
play sound "wind2.mp3"
|
||
$ renpy.pause(3.0)
|
||
|
||
yuuka "I'm sorry. There's just one more thing I have to do after this. I hope you'll understand."
|
||
|
||
play sound "wind3.mp3"
|
||
$ renpy.pause(3.0)
|
||
|
||
yuuka "...I really hope you'll understand."
|
||
|
||
stop music
|
||
elif day == 4:
|
||
# TODO
|
||
# TEXT N
|
||
# STAGE N
|
||
# VAR N
|
||
# $ investigation_progress
|
||
play music "wind_atmo.mp3"
|
||
|
||
play sound "wind1.mp3"
|
||
$ renpy.pause(3.0, hard=True)
|
||
|
||
"..."
|
||
|
||
play sound "wind2.mp3"
|
||
$ renpy.pause(3.0)
|
||
|
||
"..."
|
||
|
||
play sound "wind3.mp3"
|
||
$ renpy.pause(3.0)
|
||
|
||
"..."
|
||
|
||
stop music
|
||
return
|
||
else:
|
||
"Day is currently set to [day]. This should be impossible. You've likely encountered a bug."
|
||
return
|
||
|
||
$ renpy.jump(next_label)
|
||
|
||
label ending:
|
||
|
||
# $ long_term.grant()
|
||
# $ scare_tactics.grant()
|
||
# $ very_loud_quitting.grant()
|
||
# $ she_has_your_back.grant()
|
||
# $ they_have_your_back.grant()
|
||
# $ hedgehog_dilemma_solved.grant()
|
||
# $ retroactive.grant()
|
||
|
||
# if long_term.has():
|
||
# "Long Term already has been completed. Consider finding a different ending."
|
||
# if scare_tactics.has():
|
||
# "Scare Tactics already has been completed. Consider finding a different ending."
|
||
# if very_loud_quitting.has():
|
||
# "Very Loud Quitting already has been completed. Consider finding a different ending."
|
||
# if she_has_your_back.has():
|
||
# "She Has Your Back already has been completed. Consider finding a different ending."
|
||
# if they_have_your_back.has():
|
||
# "They Have Your Back already has been completed. Consider finding a different ending."
|
||
# if hedgehog_dilemma_solved.has():
|
||
# "Hedgehog Dilemma Solved already has been completed. Consider finding a different ending."
|
||
# if retroactive.has():
|
||
# "Retroactive already has been completed. Consider finding a different ending."
|
||
|
||
show screen ending_gallery
|
||
|
||
jump pause_loop
|
||
|
||
return
|
||
|
||
label pause_loop:
|
||
|
||
window hide
|
||
$ renpy.pause()
|
||
|
||
jump pause_loop |