Guest User

Untitled

a guest
Jun 24th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. import random
  2.  
  3. health = 100
  4. hidden_villages = ['Mist', 'Sand', 'Leaf', 'Rain']
  5. release = ['Dust Release', 'Yin Release', 'Yang Release', 'Lava Release', 'Storm Release', 'Ice Release', 'Magnet Release', 'Explosion Release',]
  6. release_1 = ['Dark Release', 'Crystal Release', 'Boil Release', 'Scorch Release', 'Steel Release', 'Swift Release', 'Wood Release',]
  7. dojustu = ['Rinnegan', 'Sharingan', 'Byakugan', 'Tenseigan', 'Jougan', 'Ketsuragan', 'Mangekugo Sharigan',]
  8. natures = ['Fire', 'Wind', 'Water','Earth', 'Lightning']
  9. kg = [release, release_1, dojustu]
  10. a = random.choice(kg)
  11. b = random.choice(a)
  12. c = random.choice(hidden_villages)
  13. d = random.choice(natures)
  14.  
  15. print('You have ' + b )
  16. print('You excel using ' + d)
  17. print("You're from the Hidden" + " " + c + " too.")
  18.  
  19. print("You're up against a rogue ninja, what do you do?")
  20. print('1.Ninjutsu')
  21. print('2.Genjutsu')
  22. print('3.Taijutsu')
  23. print('4.Run away')
  24. z = input()
  25.  
  26. if z == '1':
  27. print('Which attack?')
  28. print('1. Rasengan')
  29. print('2. Water Dragon')
  30. print('3. Chidori')
  31. iz = input()
  32. if iz == '1':
  33. print('Nice swift one, took him out in one go')
  34. elif iz == '2':
  35. print('Close enough, he got away, but that is because someone came in and used transportation on him.')
  36. elif iz == '3':
  37. print("You're not Sasuke. He killed you because somehow, you couldn't handle that power.")
  38. else:
  39. print('O..k?')
  40. elif z == 2:
  41. print('Okay Itachi-Wannabe, how you gonna do this?')
  42. print('1. Tsukyomi')
  43. print('2. Izanami')
  44. print('3. Jibakugan')
  45. bz = input()
  46. if bz == '1':
  47. print('
Add Comment
Please, Sign In to add comment