Skip to content

Instantly share code, notes, and snippets.

@Fusion86
Created December 22, 2019 22:51
Show Gist options
  • Save Fusion86/08841db2aa86012af92dd43aaf339115 to your computer and use it in GitHub Desktop.
Save Fusion86/08841db2aa86012af92dd43aaf339115 to your computer and use it in GitHub Desktop.
civilizations = [
"Aztecs",
"Berbers",
"Britons",
"Bulgarians",
"Burmese",
"Byzantines",
"Celts",
"Chinese",
"Cumans",
"Ethiopians",
"Franks",
"Goths",
"Huns",
"Incas",
"Indians",
"Italians",
"Japanese",
"Khmer",
"Koreans",
"Lithuanians",
"Magyars",
"Malay",
"Malians",
"Mayans",
"Mongols",
"Persians",
"Portuguese",
"Saracens",
"Slavs",
"Spanish",
"Tatars",
"Teutons",
"Turks",
"Vietnamese",
"Vikings",
]
if __name__ == "__main__":
import random
civ = random.choice(civilizations)
print("Chosen civ: {}".format(civ))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment