Twilight Imperium Wiki
Advertisement

Cascien Cascien 2 February 2020
0

Random Faction Generator

I wrote a python script to generate a list of factions for players to choose from. We pick our faction before game day to help save start up time. This also allows us to research strategies and special abilities which will also save time in gameplay.

Usage: ptyhon TI-Faction-Roller.py name1,name2,name3

import random import sys nameArgs = sys.argv[1] names = nameArgs.split(',') numberOfNames = len(names) factionList = [ "The Arborec", "The Embers of Muaat", "The Ghosts of Creuss", "The Naalu Collective", "The Universities of Jol-Nar", "The Yin Brotherhood", "The Barony of Letnev", "The Emirates of Hacan", "The L1Z1X Mindnet", "The Nekro Virus", "Th…

Read Full Post

Advertisement