mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-19 12:33:27 +02:00
91 lines
2.3 KiB
Python
91 lines
2.3 KiB
Python
"""This file describes the heroic adventurer Ben.
|
|
|
|
It's used primarily for saving characters from create-character,
|
|
where there will be many missing sections.
|
|
|
|
Modify this file as you level up and then re-generate the character
|
|
sheet by running ``makesheets`` from the command line.
|
|
|
|
"""
|
|
|
|
dungeonsheets_version = "0.8.3"
|
|
|
|
name = "Ben"
|
|
classes_levels = ['paladin 1']
|
|
subclasses = ["Oath of The Ancients"]
|
|
player_name = "Ben"
|
|
background = "Charlatan"
|
|
race = "Hill Dwarf"
|
|
alignment = "Neutral good"
|
|
xp = 0
|
|
hp_max = 10
|
|
|
|
# Ability Scores
|
|
strength = 15
|
|
dexterity = 14
|
|
constitution = 15
|
|
intelligence = 12
|
|
wisdom = 11
|
|
charisma = 8
|
|
|
|
# Select what skills you're proficient with
|
|
skill_proficiencies = ('intimidation', 'athletics', 'deception', 'sleight of hand')
|
|
|
|
# Named features / feats that aren't part of your classes,
|
|
# race, or background.
|
|
# Example:
|
|
# features = ('Tavern Brawler',) # take the optional Feat from PHB
|
|
features = ()
|
|
|
|
# If selecting among multiple feature options: ex Fighting Style
|
|
# Example (Fighting Style):
|
|
# feature_choices = ('Archery',)
|
|
feature_choices = ()
|
|
|
|
# Proficiencies and languages
|
|
languages = """Common, Dwarvish"""
|
|
|
|
# Inventory
|
|
# TODO: Get yourself some money
|
|
cp = 0
|
|
sp = 0
|
|
ep = 0
|
|
gp = 0
|
|
pp = 0
|
|
|
|
# TODO: Put your equipped weapons and armor here
|
|
weapons = () # Example: ('shortsword', 'longsword')
|
|
armor = "" # Eg "light leather armor"
|
|
shield = "" # Eg "shield"
|
|
|
|
equipment = """TODO: list the equipment and magic items your character carries"""
|
|
|
|
attacks_and_spellcasting = """TODO: Describe how your character usually attacks
|
|
or uses spells."""
|
|
|
|
# List of known spells
|
|
# Example: spells_prepared = ('magic missile', 'mage armor')
|
|
spells_prepared = () # Todo: Learn some spells
|
|
|
|
# Which spells have not been prepared
|
|
__spells_unprepared = ()
|
|
|
|
# all spells known
|
|
spells = spells_prepared + __spells_unprepared
|
|
|
|
# Backstory
|
|
# Describe your backstory here
|
|
personality_traits = """TODO: How does your character behave? See the PHB for
|
|
examples of all the sections below"""
|
|
|
|
ideals = """TODO: What does your character believe in?"""
|
|
|
|
bonds = """TODO: Describe what debts your character has to pay,
|
|
and other commitments or ongoing quests they have."""
|
|
|
|
flaws = """TODO: Describe your characters interesting flaws.
|
|
"""
|
|
|
|
features_and_traits = """TODO: Describe other features and abilities your
|
|
character has."""
|