Guest User

code

a guest
Jul 23rd, 2020
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.67 KB | None | 0 0
  1. import random
  2.  
  3. seqType = random.randint(0,8)
  4.  
  5. a = ['Blackened', 'Broken', 'Concealed', 'Dreaded', 'Fancy', 'Grand', 'Hidden', 'Mystic', 'Plentiful', 'Ravaged', 'Royal', 'Salted', 'Scorched', 'Secluded', 'Secret', 'Splenid', 'Stolen', 'Sunken', 'Sweet', 'Wrecked']
  6. b = ["Barracuda's", "Captain's", "Dragon's", "Guild's", "Hunter's", "Kraken's", "Maiden's", "Mermaid's", "Order's", "Parrot's", "Raider's", "Sailor's", "Shark's", "Shipwreck's", "Siren's", "Storm's", "Thieve's", "Triton's", "Turtle's", "Wanderer's"]
  7. c = ['Asylum', 'Bounty', 'Den', 'Fort', 'Gem', 'Harbor', 'Haven', 'Hideout', 'Hold', 'Jewel', 'Keep', 'Port', 'Refuge', 'Rest', 'Retreat', 'Sanctuary', 'Shelter', 'Stronghold', 'Treasure', 'Trove']
  8. d = ['Archipelago', 'Atol', 'Bay', 'Bluffs', 'Cliffs', 'Cove', 'Crag', 'Enclave', 'Groves', 'Hollow', 'Island', 'Isle', 'Lagoon', 'Peninsula', 'Reef', 'Ridge', 'Rock', 'Sands', 'Shallows', 'Shores']
  9. e = ['amidst the Maelstroms', 'between the Waves', 'in the Mists', 'in the Shadows', 'of a Thousand Coins', 'of Plentiful Riches', 'of Skulls ', 'of the Countless Wrecks', 'of the Cursed', 'of the Damned', 'of the Depths', 'of the Homesick', 'of the Lawless', 'of the Lost Souls', 'of the Moon', 'of the Raven', 'of the Sunset', 'of the Sweet Embrace', 'of the Tides', 'of Whispers']
  10.  
  11. r1 = random.randint(0,18)
  12. r2 = random.randint(0,18)
  13. r3 = random.randint(0,18)
  14.  
  15. sequences = [a[r1] + ' ' + c[r2], a[r1] + ' ' + b[r2] + ' ' + c[r3], a[r1] + ' ' + d[r2], a[r1] + ' ' + b[r2] + ' ' + d[r3], a[r1] + ' ' + c[r2] + ' ' + e[r3], b[r1] + ' ' + d[r2] + ' ' + e[r3], a[r1] + ' ' + d[r2] + ' ' + e[r3], b[r1] + ' ' + e[r2], d[r1] + ' ' + e[r2]]
  16.  
  17. sequence = (sequences[seqType])
  18. print(sequence)
  19.  
Advertisement
Add Comment
Please, Sign In to add comment