Advertisement
baggiepr

Kamile Adventure Game Y6 Orchard Lea

Jan 29th, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.50 KB | None | 0 0
  1. from time import sleep
  2. hitpoints=2
  3. print("""
  4.      Welcome to the
  5.      Pyrimid of
  6.      Danger!
  7.      """)
  8.  
  9. name=input("what is your name?")
  10. sleep(2.0)
  11. input("\npress the enter key to continue")
  12.  
  13. print("Welcome",name,"to the pyrimid of danger!")
  14. sleep(2.0)
  15. print("""
  16.      you walk in the
  17.      dark,giant pyrimid
  18.      ,you hear a strange
  19.      sound
  20.         """)
  21.  
  22. input("\npress the enter key to continue")
  23. sleep(2.0)
  24. print("""
  25.      you feel a claw
  26.      on your shoulder
  27.      a tail on your back
  28.      with somthing at
  29.      the end of it...""")
  30.  
  31. input("\npress enter key continue")
  32.  
  33. print("A SCORPION!!")
  34.  
  35. input("\npress enter key to continue")
  36. event1=input("type a to attack or p to push it away")
  37. sleep(2.0)
  38. if event1=="a":
  39.     print("you push it off your shoulder and stamp on it")
  40.     hitpoints=hitpoints+2
  41.  
  42. else:
  43.     print("you run past but trip over and have a cut,it's bleeding")
  44.     hitpoints=hitpoints+1
  45.  
  46. print("you have",hitpoints,"hitpoints")
  47. print("Well done!")
  48.  
  49. input("\npress enter key to continue")
  50. sleep(2.0)
  51. print("""
  52.      you walk on
  53.      in the dark pyrimid""")
  54. sleep(2.0)
  55.  
  56. print("""
  57.      a mummy falls
  58.      from the celing,
  59.      your amazed but,
  60.      well,it is a pyrimid
  61.      """)
  62.  
  63. sleep(2.0)
  64.  
  65. event2=input("type m to fight it or s to out run it")
  66. sleep(2.0)
  67.  
  68. if event2=="m":
  69.     print("""you sneak
  70.          up to it and
  71.          unrap the mummy
  72.          and it turns to dust
  73.          """)
  74.     hitpoints=hitpoints+2
  75.  
  76. else:
  77.     print("""
  78.          you know
  79.          mummys are slow
  80.          so you manage to
  81.          out run him
  82.          """)
  83.     hitpoints=hitpoints+1
  84. sleep(2.0)#
  85. print("you have",hitpoints,"hitpoints")
  86. print("you walk onwards and spot an old bag on the floor you decied to keep it")
  87. sleep(2.0)
  88. bag={"rope","old coin","sword"}
  89.  
  90. print("in the bag there is a rope,a old coin and a sword")
  91. sleep(3.0)
  92. print("you carry on your journey")
  93. sleep(2.0)
  94.  
  95.  
  96. print("""
  97.      you walk onwards
  98.      and see a light,
  99.      you couldn't be at the end,
  100.      could you?""")
  101. sleep(2.0)
  102.  
  103. print("""
  104.      you see a
  105.      shadow fickering
  106.      on the wall,
  107.      theres someone there!
  108.      """)
  109.  
  110. print("you walk on and see it eating something that looks like skin,a canniball! ")
  111.  
  112. print("""
  113.       it says,what author wrote
  114.       the book candyfloss?
  115.       if you get this right you
  116.       will pass but,
  117.       well,im hungry so you
  118.       will be my dinner
  119.       if you FAIL!!
  120.       """)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement