Files
dungeon-sheets/examples/rogue.py
T
2018-03-27 00:01:57 -05:00

48 lines
1006 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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
# Backstory
personality_traits = """I never have a plan, but Im great at making things up as I go
along. Also, the best way to get me to do something is to tell me I
cant do it."""
ideals = """People. Im loyal to my friends, not to any ideals. Everyone else can
take a trip on the River Styx for all I care."""
bonds = """Qelline Alderlead, my aunt, has a farm in Phandalin. I always give
her some of my ill-gotten gains."""
flaws = """My aunt must never know the deeds I did as a member of the
Redbrands."""