Files
dungeon-sheets/examples/rogue.py
T
2018-03-28 01:33:34 -05:00

57 lines
1.4 KiB
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'
)
proficiencies_extra = ('playing cards', "carpenter's tools")
languages = 'Common, halfling'
# Inventory
cp = 950
sp = 75
ep = 50
gp = 120
pp = 0
weapons = ('shortsword', 'shortbow')
equipment = (
"""Shortsword, shortbow, 20 arrows, leather armor, thieves tools,
backpack, bell, 5 candles, crowbar, hammer, 10 pitons, 50 feet of
hempen rope, hooded lantern, 2 flasks of oil, 5 days rations,
tinderbox, waterskin, crowbar, set of dark common clothes
including a hood, pouch.""")
# 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."""