Advertisement
baggiepr

Adventure Game by Faith Y6 Orchard Lea

Jan 28th, 2013
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.28 KB | None | 0 0
  1. from time import sleep
  2. fp = 5
  3. print("""
  4.      Welcome to the
  5.      party of fun!
  6.      """)
  7. sleep(3.0)
  8. name=input("what is your name?")
  9. print("Welcome",name)
  10. sleep(3.0)
  11. print("""imagine its your party""",name,
  12. """ and all the coolest people are going to it""")
  13. sleep(3.0)
  14. print("""someone laughs at your clothes,
  15.        what do you do?""")
  16. sleep(3.0)
  17. event1=input("type i to ignore them or type f to start a fight")
  18. if event1=="i":
  19.     print("you ignore them and ask them to leave")
  20.     fp=fp+1
  21. else:
  22.     print("you shout at them and everybody leaves giving you evil looks")
  23.     fp=fp-1
  24. print("you have",fp,"friendship points")
  25. sleep(3.0)
  26. print("""one of the most popular people,
  27.       in the school is at your party and they start being mean to you
  28.       do you?""")
  29. sleep(3.0)
  30. event2=input("type a to ask them to leave type f to start a fight")
  31. if event2=="a":
  32.     print("you ask them to leave so they do")
  33.     sleep(3.0)
  34.     fp=fp+2
  35. else:
  36.     sleep(5.0)
  37.     print("oh no you have a black eye")
  38.     sleep(3.0)
  39.     print("its really sore and you have to go to the docs")
  40.     sleep(3.0)
  41.     fp=fp-2
  42. sleep(4.0)
  43. print("you have",fp,"friendship points")
  44. sleep(3.0)
  45. print("""your friend is dancing when she accidently spills her drink on you
  46.          will you?""")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement