Files
dungeon-sheets/examples/rogue.py
T
2018-03-26 23:50:26 -05:00

34 lines
484 B
Python

name = 'Mr. Stabby'
character_class = 'rogue'
player_name = 'Mark'
background = "Criminal"
race = "Lightfoot halfling"
level = 3
alignment = "Neutral"
xp = 1984
hp_max = 19
speed = 25
# Ability Scores
strength = 8
dexterity = 16
constitution = 12
intelligence = 13
wisdom = 10
charisma = 16
skill_proficiencies = [
'acrobatics',
'deception',
'investigation',
'performance',
'sleight_of_hand',
'stealth'
]
# Inventory
cp = 950
sp = 75
ep = 50
gp = 120
pp = 0