Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.60 KB | None | 0 0
  1. def displayIntro():
  2.     print(
  3.         "You're sitting in your favorite tavern, nursing an ale. You hear rain outside, and a sporatic crack of thunder. It almost seems like everyone around you is having the same conversation. 'Rain? In the summer? I can't believe it.' They weren't wrong to be confused. It's incredibly unusual. This is when you see a strange man in a tattered black robe leaned up against the far wall, by the exit. His face is concealed by the hood of his robe, but you can see a pipe's smoke coming from the hood. His body is faced torwards you but you can't tell if he's looking at you.")
  4.  
  5.  
  6. displayIntro()
  7.  
  8. print("Choose.")
  9. print("1. You do nothing")
  10. print("2. You beckon the man over.")
  11. if input() == 1:
  12.     print("The man leaves. You spend the rest of your life wondering what adventure you could've had.")
  13. if input() == 2:
  14.     print("The man comes over and says I have an opportunity of a life time for you. A great adventure. Do you accept?")
  15. print("Choose.")
  16. print("1. Yes!")
  17. print("2. No.")
  18.  
  19. if input() == 1:
  20.     print("Good... You wake up in a dark cave. You see a bear rushing towards you. There is a sword to your right and a gun to your left. Which do you pick up?")
  21. print("1. Sword.")
  22. print("2. Gun")
  23. if input("1"):
  24.     print("You pick up the sword and thrust it into the bears heart. You have survived this adventure.")
  25. else:
  26.           print("You pick up the gun, aim it for the bears heart, pull the trigger and *click*. No ammo. The bear eats you alive.")
  27. if input() == 2:
  28.     print("Oh, ok. Goodbye. You spend the rest of your life wondering what an adventure you could've had")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement