Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. from time import sleep
  2. goals=0
  3. print("your attacker has the chance to shoot what move dose he use?")
  4. sleep(3.0)
  5. event1=input("press f to us fire storm or e to use eternal blizard")
  6. if event1=="f":
  7.     print("the golie saves your shot")
  8. else:
  9.     print("Your shot plots itself in the top left corner!")
  10.     goals=goals+1
  11. sleep(3.0)
  12. print("You have",goals,"goals")
  13. sleep(3.0)
  14. print("Your midfielder gets badly tackled")
  15. event2=input("type o to play one man down or s to swap for a rubish player")
  16. if event2=="o":
  17.     print("your disision was wise")
  18. else:
  19.     print("your player fails and lets a goal in")
  20.     goals=goals-1
  21. sleep(3.0)
  22. print("you lost 1 goal")
  23. sleep(3.0)
  24. print("The other team try to score")
  25. sleep(3.0)
  26. event3=input("Do you use your foot by pressing f or use your gloves by pressing g")
  27. if event3=="f":
  28.     print("unlucky your foot slips and the goal goes in")
  29.     goals=goals-1
  30. else:
  31.     print("well done you saved the shot")
  32. sleep(3.0)
  33. print("You have",goals,"goals")