34 lines
1.2 KiB
Plaintext
34 lines
1.2 KiB
Plaintext
|
proc main
|
||
|
call nav_load("data/omori.vnn")
|
||
|
call proc_set("omori_1")
|
||
|
end
|
||
|
|
||
|
proc omori_1
|
||
|
s = "Sunny"
|
||
|
|
||
|
$(s) "There is something I have to tell you."
|
||
|
$(s) "It's about MARI."
|
||
|
$(s) "..."
|
||
|
$(s) "She didn't kill herself."
|
||
|
|
||
|
$(s) "It was the day of the recital."
|
||
|
$(s) "We had been rehearsing for hours, but no matter how much time we spent it was never good enough."
|
||
|
$(s) "I had just messed up a note when in my anger I stormed out."
|
||
|
$(s) "MARI was quick to follow me, just in time to see me throw the violin to the ground."
|
||
|
$(s) "We were at the top of the stairs when she finally managed to grab my arm."
|
||
|
$(s) "She was so calm... Not mad at all... Just disappointed."
|
||
|
$(s) "But I didn't want to be there. I didn't want her to be there. I just wanted to go away."
|
||
|
$(s) "Before I was able to run away again, she blocked my path and without thinking I pushed and..."
|
||
|
$(s) "...she fell."
|
||
|
$(s) "She fell down the stairs."
|
||
|
|
||
|
$(s) "That same day, BASIL happened to be visiting."
|
||
|
$(s) "He couldn't believe what he saw and in order to protect me..."
|
||
|
$(s) "...he and I staged MARI's suicide."
|
||
|
end
|
||
|
|
||
|
proc puzzle_test
|
||
|
$ "Can you beat the IMPOSSIBLE duck puzzle?"
|
||
|
call puzzle_15()
|
||
|
$ "Wow, you actually did it."
|
||
|
end
|