Advertisement
baggiepr

Legally Blond Adventure Coding by Aimee Y6 Hiltingbury Sch

Jan 29th, 2013
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.92 KB | None | 0 0
  1. from time import sleep
  2. money=200
  3. experence=0
  4. nails=150
  5. eyes=10
  6. hair=15
  7. nice=0
  8. name=input("Type in the name of your charcter")
  9. print("welcome",name,"to the legally blonde game")
  10. sleep(3.0)
  11. #moving adventure on
  12. print("""
  13. You are at your manison,your very pink manison, your friends are round and you
  14. are having a small get together.
  15. """)
  16. ("""
  17. three hours eailer
  18. """)
  19. #event
  20. print("Your friends are coming round what do you wear")
  21. #choice
  22. event1=input("type a to wear a very cute jump suit or q to wear a very casual dress")
  23. #consequence
  24. if event1=="a":
  25.     print("you advence to give a lot of money")
  26.     sleep(3.0)
  27.     print("you put it on and it is really nice")
  28.     sleep(3.0)
  29.     money=money-20
  30.     experence=experence+1
  31. else:
  32.  
  33.     print("your friends do not think you are such a party animal but you are")
  34.     sleep(3.0)
  35.     print("you are very comfy")
  36.     sleep(2.0)
  37.     nice=nice+2
  38.     money=money-5
  39.  
  40. print("""
  41. your friends come round you have a amzing time amd then you are left to do the
  42. horrible washing up.It takes a age so you go to the lovely bathroom and have
  43. a relaxing bath""")
  44. sleep(5.0)
  45. print(" you have been in the bath for 2 hours,you want to go to bed.Night Night,name,")
  46. sleep(8.0)
  47.  
  48. #event2
  49. print("you are at the shopping mall someone chips your nail")
  50. sleep(10.0)
  51. print("what do you do?")
  52. sleep(3.0)
  53.  
  54. #choice
  55. print(" press a to shout at them or press q to not say anything")
  56.  
  57.  
  58. #consequence
  59. if event1=="a":
  60.     print("you get really embrassed")
  61.     sleep(3.0)
  62.     print("the person said sorry and gave you 5 money")
  63.     sleep(3.0)
  64.     money=money+5
  65.     experence=experence+1
  66. else:
  67.  
  68.     print("you walk pass them taking deep beathes")
  69.     sleep(3.0)
  70.     print("they think you are werid")
  71.     sleep(2.0)
  72.     nice=nice+2
  73.     nails=nails+4
  74.  
  75. print("""
  76. you drive straight to the nail salon carpark.The next mintue you find your self
  77. talking to the salon body smooths manger
  78. """)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement