Guest User

Untitled

a guest
Feb 13th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. #TEXT BASED GAME
  2. #VOYAGER
  3.  
  4. e=("Press Enter To Continue")
  5.  
  6. print (""" Voyager
  7.  
  8. You are one of the 3 remaining survivors on the first attempted manned spacecraft landing onto Saturn. Your crew's capsul parachute did not deploy in time when desending through the atmosphere which caused you and your team to crash onto the surface.
  9.  
  10. Two members (Jordan and Thomas) sadly did not make it
  11.  
  12. With your ship destroyed it is up to you, Rhet, and Claire to survive together on this planet, for there is no way out.
  13. """)
  14.  
  15. print (e)
  16. input()
  17. print ('Laying in the rubble of the crash you see your surviving crew members \n Do you wish to go help them get up? (y/n)')
  18.  
  19. #QUESTION 1
  20. Help_Up=input()
  21. if Help_Up in ['yes','Yes','y']:
  22. print ('You run over to Rhet to see that his leg is broken and he harldy has any strength to move!')
  23.  
  24.  
  25. if Help_Up in ["n","no","No"]:
  26. print ('You turn your head away from your crew mates as if you can not see them and start to search the broken ship around you')
  27. print (e)
  28.  
  29.  
  30.  
  31. #QUESTION 2
  32. #ANSWER TO HELP UP BEING YES
  33. if Help_Up in ['yes','Yes','y']:
  34. print ("""
  35. Claire is unconcious. Do you
  36. (A)kill Rhet becuase you think he is dead weight (B) help him up?
  37.  
  38. """)
  39.  
  40. Help_UP2=input()
  41. if Help_UP2 in ['A','a']:
  42. print ('You press both of your knees against Rhets arms as you wrap your hands around his neck and look away as you grip harder and harder until Rhet can no longer breath ')
  43. print(e)
  44.  
  45. if Help_UP2 in ['B','b'] :
  46. print ('You lift the debree off of Rhet and help him bandage his leg up with torn peices of fabric')
  47. print (e)
  48.  
  49.  
  50. #ANSWER TO HELP UP BEING NO
  51. if Help_Up in ["n","no","No"]:
  52. print ('As you search the debree around you, you happen to find a hand gun with two bullets in the clip')
  53.  
  54.  
  55. print ("""
  56. Do you
  57. (A) Hide the gun in your pocket (B) Kill your self
  58.  
  59. """)
  60. q22no=input()
  61. if q22no in ['A','a']:
  62. print ('you hide the gun in your pocket as Claire wakes up and asks what happened')
  63. print (e)
  64. if q22no in ['B','b']:
  65. print ('Do not feel ashamed, stronger players than you have fallen.')
  66. print (e)
Add Comment
Please, Sign In to add comment