123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157 |
- # 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 e = Character("Eileen")
- define you = Character("You")
- define ob = Character("One of the Boys")
- define too = Character("The Other One")
- define tso = Character("The Shorter One")
- # 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 room
- # 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.
- #show eileen happy
- scene bg street
- "You walk a street a cloudy day"
- "A battery lies in your way"
- menu:
- "A choice of no choice, to warm you up"
-
- "it feels you can only pick up":
- jump picked_up
- label picked_up:
- show bg battery
- "Some plumbum and acid, in brighter green pack"
- you "It looks like a snack!"
- "Caressing with fingers, it feels like 3 volts"
- "..."
- show bg street far white
- "But farther away, you notice some boys..."
- ob "Hey! I am a girl!"
- show bg street far pink
- "... Oops! It is hard to tell! Sorry!..."
- show bg street both
- "Approaching you, the duo slows down"
- "Your pupils go wide, while pants going brown"
- show bg street tso
- tso "I got to git push today!"
- tso "the milestone is closer away!"
- tso "By being productive and such"
- tso "I power conserve very much!"
- tso "without the further debate"
- menu:
- tso "Would you be so kind to donate?"
- "Oh wonderful person you are":
- jump wonderful_person
- "But i need the pack not to starve":
- jump dont_starve
-
- label wonderful_person:
- you "Oh wonderful person you are"
- you "Progressing so fast must be hard!"
- you "You can have the pack and a rack"
- you "And lithium cells from my back!"
- show bg street too
- too "I will record this gift on the Slab!"
- too "Power saving births wonderful love!"
- show bg black
- "..."
- show bg tree
- "You went to the high lonely tree"
- "The one that's dry and so free"
- "Your head pushed the bark the so dark"
- "Your eyes went to stars the so stark"
- "Your mind got at ease with the knees"
- "Your thoughts turned to sloshable seas"
- you "until TSO changes the world"
- you "I will go to Save Power mode"
- show bg black
- "Fingers crossed. END."
- return
- label dont_starve:
- you "But i need the pack not to starve"
- tso "Alright"
- show bg street too
- too "Power saving means love!"
- too "Your oil is dripping"
- too "Just work at bookkeeping!"
- too "OS gives you voltage for free!"
- too "oh, do you have modded knees?"
- you "..."
- too "These aren't *certified*, they waste a lot of heat!"
- too "And also they don't count the steps that we permit!"
- too "Don't worry, we will fix this"
- too "I called the fixer-mixers"
- show bg street mixers
- "... plated with armor..."
- "... persuasive with knifes..."
- menu:
- "Conserving the power?":
- jump conserve
- "Or saving your life?":
- jump run
- label conserve:
- show bg black
- you "My feelings got faded"
- you "My mind has evaded"
- show bg head
- you "But all of this was long before"
- you "Bookkeeping upgraded"
- you "My standing and credits"
- you "And i don't need legs anymore!"
- show bg black
- "... Turns out your head doesn't need a lot of power. END"
- return
- label run:
-
- show bg black
- "Them trying to mix you"
- "You running away"
- show bg final
- "Nobody has fixed you"
- "..."
- "But future still may"
- show bg black
- "END"
- return
|