Advertisement
Guest User

Untitled

a guest
Jun 30th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. print ("\n------------------")
  2. print ("| SATAN QUEST |")
  3. print ("| ver 1.0 |")
  4. print ("------------------\n")
  5.  
  6. print ("Welcome to SatanQuest!\n")
  7.  
  8. name = input("What is your name?")
  9.  
  10. #Level-A
  11. intro = ("your journey begins {} You find yourself standing on a rock in the middle of an vast ocean of flames.\nThe sound of screaming tortured souls pierces your soul.\nYou must find your way out of hell and return to the surface of the earth.\nChoose your direction wisely.\n\nYou can move either *left* *forward* *right*\n".format(name))
  12. lefta = ("You notice a rock floating in the sea ov lava.You jump onto the rock,\nYou notice that this rock is Hitlers home,He pulls your pants down and shoves a gigantic cannonball into your ass, And makes you his slave for the rest of \neternity, You lose, Try again.")
  13. righta = ("You notice a wall nearby with a ledge that you might be able to grab ahold of, But it's a risky jump, you gather yourself and go for the jump, You barely make it, and are holding on by one hand, you cannot hold on for to long and plummit to your death.")
  14. forwarda = ("In front of you, you notice a long narrow hallway leading deep into a dark\nroom,you follow this path, it brings you to a room that is very cold and frozen,with a door to your left and right.Wich door will you choose?\n\n *leftdoor* *rightdoor*")
  15.  
  16. #Level-B
  17. leftdoorb = ("You enter the left room,In front of you, There is a giant refrigerator,you are quite hungry, you open the fridge and notice a can of spam, You pull out your pocket knife and open it. you eat the spam, unfortunatly this was a poison spam, You are now dead. try again.")
  18. rightdoorb = ("You slowly open the left door, And you look into what appear to be a vast dark cold cavern")
  19.  
  20. #--------------------------------------------------#
  21. #level-A
  22.  
  23. print (intro)
  24.  
  25. direction = input("Wich way will you go?\n")
  26.  
  27. if (direction == "help"):
  28. print (help)
  29.  
  30. elif (direction == "left"):
  31. print(lefta)
  32.  
  33. elif (direction == "right"):
  34. print(righta)
  35.  
  36. if (direction == "forward"):
  37. print(forwarda)
  38. direction = input("wich door will you enter?")
  39.  
  40. if (direction =="leftdoor"):
  41. print(leftdoorb)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement