61 lines
1.5 KiB
Plaintext
61 lines
1.5 KiB
Plaintext
|
# The script of the game goes in this file.
|
||
|
|
||
|
# Declare characters used by this game. The color argument colorizes the
|
||
|
# name of the character.
|
||
|
|
||
|
define o = Character("Oprah")
|
||
|
define j = Character("Jerry")
|
||
|
|
||
|
|
||
|
# The game starts here.
|
||
|
|
||
|
label start:
|
||
|
|
||
|
# Show a background. This uses a placeholder by default, but you can
|
||
|
# add a file (named either "bg room.png" or "bg room.jpg") to the
|
||
|
# images directory to show it.
|
||
|
|
||
|
scene bg apartment
|
||
|
|
||
|
# This shows a character sprite. A placeholder is used, but you can
|
||
|
# replace it by adding a file named "eileen happy.png" to the images
|
||
|
# directory.
|
||
|
|
||
|
"It was a sunny Taco Tuesday afternoon, and Oprah Winfrey was standing around in her friend Jerry Seinfeld's apartment."
|
||
|
|
||
|
# These display lines of dialogue.
|
||
|
|
||
|
o "Oh, Jerry. My soup is so hairy!"
|
||
|
|
||
|
show oprah happy
|
||
|
with dissolve
|
||
|
|
||
|
o "And let me tell you, Jerry. It absolutely reeks of garlic powder!"
|
||
|
|
||
|
"Jerry turns into a snail, but a snail that is capable of human speech."
|
||
|
|
||
|
hide oprah happy
|
||
|
|
||
|
show oprah happy at left
|
||
|
|
||
|
show jerry happy at right
|
||
|
with dissolve
|
||
|
|
||
|
j "Oprah, I love wafting the scent of this soup, even as this small but rotund snail!"
|
||
|
|
||
|
# This ends the game.
|
||
|
|
||
|
"Jerry was not lying this time."
|
||
|
|
||
|
hide oprah happy
|
||
|
|
||
|
hide jerry happy
|
||
|
|
||
|
scene black
|
||
|
|
||
|
"This would be the end of Jerry's life."
|
||
|
|
||
|
"He would be destroyed by Oprah in a magnificent moment of rage."
|
||
|
|
||
|
return
|