Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import random
- strikes = ["Tree of Probabilities",
- "A Garden World",
- "The Arms Dealer",
- "Inverted Spire",
- "Savathun\'s Song",
- "The Pyramidion",
- "Lake of Shadows",
- "Exodus Crash",
- "The Corrupted",
- "Warden of Nothing",
- "The Insight Terminus",
- "The Hollowed Lair",
- "Will of the Thousands",
- "Strange Terrain"]
- frames = ["Machine Gun",
- "Auto Rifle",
- "Hand Cannon",
- "Bow",
- "Sniper Rifle",
- "Sword",
- "Pulse Rifle"]
- def shuffle(list_, size):
- for a in range(size):
- b = random.randint(1, size - 1)
- temp = list_[a]
- list_[a] = list_[b]
- list_[b] = temp
- def main():
- for i in range(12):
- strikes_ = strikes.copy()
- frames_ = frames.copy()
- shuffle(strikes_, len(strikes_))
- shuffle(frames_, len(frames_))
- for j in range(3):
- print(strikes_[j])
- for j in range(3):
- print(frames_[j])
- print('')
- return
- main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement