Files
dungeon-sheets/examples/warlock.py
T

65 lines
1.5 KiB
Python

dungeonsheets_version = "0.4.2"
# Basic information
name = 'Sid Istick'
character_class = 'Warlock'
player_name = 'Mark'
background = "Criminal"
race = "Rock Gnome"
level = 5
alignment = "True neutral"
xp = 2790 * 3
hp_max = 28
# Ability Scores
strength = 11
dexterity = 14
constitution = 10
intelligence = 17
wisdom = 11
charisma = 8
skill_proficiencies = [
'deception',
'investigation',
'nature',
'stealth',
]
# Proficiencies and languages
languages = "Common, gnomish."
# Inventory
cp = 1792
sp = 987
ep = 44
gp = 803
pp = 3
weapons = ('lance', 'net')
equipment = (
"""Gallon of ale, red cloak, shortsword, longsword, jar of salt, vodka
(500mL), potion of vitality, wand of magic missiles (7/7),
component pouch, spellbook, backpack, bottle of ink, ink pen, 10
sheets of parchment, small knife, tome of historical lore, holy
symbol, prayer book, set of common clothes, pouch.""")
# List of known spells
spells = ('blade ward', 'guidance', 'mage hand', 'animal friendship',
'arms of hadar', 'find steed', 'flaming sphere', 'beacon of hope',
'elemental weapon')
# Which spells have been prepared (not including cantrips)
spells_prepared = ('blade ward', 'guidance', 'mage hand', 'animal friendship',
'arms of hadar', 'find steed', 'flaming sphere', 'beacon of hope',
'elemental weapon')
# Backstory
personality_traits = """"""
ideals = """"""
bonds = """"""
flaws = """"""
features_and_traits = (
"""""")