cwisbg

taylorMade adventure

May 22nd, 2012
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.57 KB | None | 0 0
  1. import sys
  2.  
  3. print("Welcome to your story.  Choose wisely, or else you may die... \n")
  4. print("""
  5.     Your journey begins at Taylor's house.  
  6.     You and he were working on a project late into the night.
  7.     """)
  8.  
  9. print("What type of project were you working on?")
  10. project = input("> ")
  11.  
  12. print("""
  13.     This was a bad idea, as the {} project was an utter failure.
  14.     Taylor forgot to turn off the soldering gun and it melted
  15.     through one of the key wires leading to the ventilation system...
  16.     """.format(project))
  17. print("Brandon wakes up with a start.  What does he say?")
  18. print("""
  19.     1: "Holy shit, my head."
  20.     2: "What is that smell?"
  21.     3: "Mommy!
  22.     """)
  23.  
  24. say1 = input("> ")
  25. choice = 0
  26.  
  27. if say1 == "1":
  28.     print("\"Holy shit, my head hurts so bad.  What the hell happened?\"")
  29.     print("There was no reply.  Brandon stumbled upstairs, his vision swimming.")
  30.     print("\"Why does my head hurt so bad?  Taylor, where are you?")
  31.     choice = 1
  32. elif say1 == "2":
  33.     print("\"Uhhg.... Why does it smell like the inside of a rotten fetus in here?\"")
  34.     print("Brandon hears groaning nearby.  It's very dark in the shop where they were working...")
  35.     choice = 2
  36. elif say1 == "3":
  37.     print("\"Waaaaaahhhh, I'm a big girl! MOMMYYYYYYYYYYY!\"")
  38.     print("Brandon curls into a ball and sobs for the next 20 minutes")
  39.     print("A pack of wolves hears Brandon crying and eat his face")
  40.     print("Brandon dies!  Hundreds of children rejoice")
  41.     sys.exit()
  42. else:
  43.     print("You didn't chose 1 - 3 and you die because you can't follow directions.  Please never play this game again.")
  44.     sys.exit()
  45.  
  46. def choiceOne():
  47.     print("Again, no reply. Do you: ")
  48.     print("1: Go upstairs")
  49.     print("2: Search the basement")
  50.     say2 = input("> ")
  51.     if say2 == "1":
  52.         print("Brandon walks upstairs.  There's something fishy going on here.")
  53.     elif say2 == "2":
  54.         print("""
  55.             Brandon searches around the basement.  There's what seems like mist everywhere.
  56.             It's hard to see much anyway because of how dark it is.  He hears something behind him...\n
  57.             |\___/|
  58.            (,\ /,)\\
  59.            /     /  \\
  60.           (@_^_@)/   \\
  61.            W//W_/     \\
  62.          (//) |        \\
  63.        (/ /) _|_ /   )  \\
  64.      (// /) '/,_ _ _/  (~^-.
  65.    (( // )) ,-{        _    `.
  66.   (( /// ))  '/\     /      |
  67.   (( ///))     `.   {       }
  68.    ((/ ))    .----~-.\  \-'
  69.             ///.----..>   \\
  70.              ///-._ _  _ _}
  71.  
  72.              A dragon comes out of no where and eats Brandon!  Oh no!
  73.            """)
  74.         return say2
  75.     else:
  76.         print("You seriously can't do that.  Game over.")
  77.         sys.exit()
  78.  
  79. if choice == 1:
  80.     choiceOne()
Advertisement
Add Comment
Please, Sign In to add comment