Created
April 7, 2016 17:17
-
-
Save Rimbo/b9b67c5fe075efa81cd71d32a2de4fb1 to your computer and use it in GitHub Desktop.
Generates a random metal band name. \m/, ^_^ ,\m/ Go to http://rimbosity.com/metalbandname/ to see it all prettified with trve kvlt fonts.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# http://www.invisibleoranges.com/2014/02/the-100-most-overused-metal-band-name-words-according-to-metal-archives/ | |
import random | |
def getmetalname(): | |
namelist=['Death','Black','Dark','Blood','Dead','Hell','War', | |
'Necro','Soul','Night','Fall','Hate','God','Evil', | |
'Kill','Fire','Storm','Rain','Lord','Head','Metal', | |
'Human','Light','Moon','Winter','Shadow','Demon', | |
'Satan','Pain','Eternal','Dream','Burn','Witch', | |
'Chaos','Flesh','Cult','Goat','Rage','Terror', | |
'Force','Fear','Throne','Wolf','Stone','Christ', | |
'Steel','Rot','Funeral','Torment','Ritual','Cross', | |
'Gate','Frost','Gore','Doom','Corpse','Beyond', | |
'Crypt','Infernal','Wind','Brain','Lost','Grim', | |
'Ash','Iron','Face','Raven','Spirit','Morbid', | |
'Forest','Sick','Cold','Skull','Anger','Fuck', | |
'Fallen','Grind','Devil','Ruin','Thrash','Suffer', | |
'Murder','Divine','Slaughter','Brutal','Child', | |
'Nocturnal','Sorrow','Psycho','Torture', | |
'Wrath','Serpent','Agony','Slave','Heaven','Circle', | |
'Grace','Noise','Ancient','Dragon','Hand'] | |
random.seed() | |
random.shuffle(namelist) | |
nameone,nametwo = random.choice( [ | |
( namelist[0], namelist[1] ), | |
( namelist[0], namelist[1]+namelist[2].lower() ), | |
( namelist[0]+namelist[1].lower(), namelist[2] ), | |
( namelist[0]+namelist[1].lower(), namelist[2]+namelist[3].lower() ) | |
] ) | |
return "%s %s" % ( nameone, nametwo ) | |
print "Your metal band's name is: %s" % getmetalname() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment