Advertisement
Guest User

Untitled

a guest
May 31st, 2017
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.35 KB | None | 0 0
  1. import random
  2.  
  3.  
  4. username = input("Username: ")
  5. password = input("password: ")
  6. if username and password:
  7. print("Congratulations, you have just logged in!")
  8. storyline1 = print("Welcome, welcome to the world of KogeUtred. A world of vikings and pirates.")
  9. viking = print("Vikings are brave warriors, who travel with groups to go and seek for fame and treasure. They are warriors who are willing to die in battles and go to Valhalla to Odin, their god.")
  10. pirate = print("Pirates are adventurer. They look for treasure and fame through robbing others. They are similar to vikings but they fear death. They are considered to be warriors but they are selfish and greedy!")
  11. characterselection = input("Now hero, it is time to take your side! Will you choose the life of a viking or life of a pirate?")
  12.  
  13.  
  14. weaponforviking = ["sword", "Axe", "bow and arrow", "dagger"]
  15. weaponforpirate = ["dagger", "dual pistol", "sword",]
  16. startforviking = ["Iceland", "Denmark", "England"]
  17. startforpirate = ["Atlantic ocean", "BlackBeard's boat", "England"]
  18. if characterselection == "viking":
  19. print("Congratulations, it is time to plunder!")
  20. input("What weapon would you like for your viking?")
  21. print("hahahahah you thought you get to pick your own weapon! Ha Nope!")
  22. print("You have obtained a " + random.choice(weaponforviking) + "!")
  23. input("Now it is time to pick your destination? Choose wisely! Any place would be fine")
  24. print("HAHAHA SIKE! You thought you get to pick your destination. I will randomly give you a location. Okay!")
  25. print("You have been teleported to " + random.choice(startforviking))
  26. print("Now lets begin your journey and for Valhalla so you can beat the game")
  27. if characterselection == "pirate":
  28. print("arrgggg matee!")
  29. print("Now it is time to get your weapon pirate!")
  30. input("I will pirates, so I will let you choose your weapon! What weapon do you want for your pirate?")
  31. print("SIKE!!!")
  32. print("You have obtained a " + random.choice(weaponforpirate) + "!")
  33. input("All right, I will be nice, pick any place to teleport!")
  34. print("You have been teleported to " + random.choice(startforpirate))
  35. print("You still have not learned your lesson matee!!")
  36. print("But lets begin your journey mateee!")
  37. print("Oops game over!")
  38. game = input("Rate us from 1-10")
  39. print("Thank You For Playing KogeUtred!")
  40. print("if you have any questions or problems! contact me or my assitant at kogeutred@gmail.com")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement