def Specialty():
    emb = []
    roll = rng.randint(1,8)
    emb += ['Blackmailer']
    emb += ['Burglar']
    emb += ['Enforcer']
    emb += ['Fence']
    emb += ['Highway robber']
    emb += ['Hired killer']
    emb += ['Pickpocket']
    emb += ['Smuggler']
    return ('Criminal Specialty:' + newLine + indentSpace +TableHelper.dEightTable(emb, roll) + newLine)
Beispiel #2
0
def Specialty():
    roll = rng.randint(1, 8)
    emb = []
    emb += ['Alchemist']
    emb += ['Astronomer']
    emb += ['Discredited academic']
    emb += ['Librarian']
    emb += ['Professor']
    emb += ['Researcher']
    emb += ['Wizard\'s apprentice']
    emb += ['Scribe']
    return ('Specialty:' + newLine + indentSpace +
            TableHelper.dEightTable(emb, roll) + newLine)
Beispiel #3
0
def Specialty():
    roll = rng.randint(1, 8)
    emb = []
    emb += ['Officer']
    emb += ['Scout']
    emb += ['Infantry']
    emb += ['Cavalry']
    emb += ['Healer']
    emb += ['Quartermaster']
    emb += ['Standard bearer']
    emb += ['Support staff (cook, blacksmith, or the like)']
    return ('Specialty:' + newLine + indentSpace +
            TableHelper.dEightTable(emb, roll) + newLine)
def LifeSeclusion():
    roll = rng.randint(1, 8)
    emb = []
    emb += ['I was searching for spiritual enlightenment.']
    emb += [
        'I was partaking of communal living in accordance with the dictates of a religious oder.'
    ]
    emb += ['I was exiled for a crime I didn\'t commit.']
    emb += ['I retreated from socity after a life-altering event.']
    emb += [
        'I needed a quiet place to work on my art, literature, music, or manifesto.'
    ]
    emb += ['I needed to commune with nature, far from civilization.']
    emb += ['I was the caretaker of an ancient ruin or relic.']
    emb += [
        'I was a pilgrim in search of a person, place, or relic of spiritual significance.'
    ]
    return ('Life of Seclusion:' + newLine + indentSpace +
            TableHelper.dEightTable(emb, roll) + newLine)