from random import choice, randint
def funfunfun():
scampiesuxx = ("Sewage", "Elder", "Nameless", "Pain", "Azure", "Hell", "Maze", "World", "Tower", "God")
negkerulez = ("System", "Shrine", "Palace", "Hell", "Maze", "World", "Tower", "God", "Atrium", "City", "Agony")
spiritistehleader = ("of Despair", "of Hate")
maybeormaybenot = choice(("The ", ""))
suxxx = choice(scampiesuxx)
kkk = choice(negkerulez)
while(suxxx == kkk):
kkk = choice(negkerulez)
if randint(0,5) == 0:
jem = " " + choice(spiritistehleader)
else:
jem = ""
return (maybeormaybenot+suxxx+" "+kkk+jem)
for x in range(12):
print(funfunfun())