43 lines
1.3 KiB
Julia
43 lines
1.3 KiB
Julia
include("../lib/io-extra.jl")
|
|
|
|
# Stats (character names, character statistics etc)
|
|
character_name="You"
|
|
wrong_key_error = "That option is invalid"
|
|
|
|
# Text to be included in scenes
|
|
|
|
# GENERAL TEXTS
|
|
intro_text = "$character_name woke up thirsty, hankering for a delicious citrus beverage.\n"
|
|
|
|
|
|
# GENERAL OUTCOMES
|
|
|
|
|
|
intro_option2outcome_text = "In the fridge, you find a half-filled plastic 2 liter
|
|
bottle of delicious Sun Drop, a 40 oz King Cobra, and purple drink.\n"
|
|
|
|
fridge_option1outcome_text = "This does not satisfy your thirst, so you decide
|
|
you must go on The Quest For Bottled Sun Drop. \n"
|
|
|
|
fridge_option2outcome_text = "The Sun Drop in a plastic bottle makes you realize
|
|
it would be so much tastier in a glass bottle. You decide you must go on The Quest
|
|
for Bottled Sun Drop. \n"
|
|
|
|
|
|
car_option2outcome_text = "The shelf is bare! There is no glass-bottled Sun Drop
|
|
to be found here."
|
|
|
|
# ENDING OUTCOMES
|
|
|
|
fridge_option3outcome_text = "The cops immediately bust down your door and shoot
|
|
you for being black. \n"
|
|
|
|
car_option1outcome_text = "Oh no! There's a one day sale on meat. You get
|
|
trampled by a stampede of soccer moms. \n"
|
|
|
|
dui_car_option1 = "The cops pull you over and smell malt liquor on your breath.
|
|
You have gotten a DUI."
|
|
|
|
intro_option1outcome_text = "You die of dehydration.\n"
|
|
|
|
|