mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-26 15:48:28 +02:00
48 lines
1006 B
Python
48 lines
1006 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
|
||
|
||
# Backstory
|
||
personality_traits = """I never have a plan, but I’m great at making things up as I go
|
||
along. Also, the best way to get me to do something is to tell me I
|
||
can’t do it."""
|
||
|
||
ideals = """People. I’m 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."""
|