mirror of
https://github.com/Threnklyn/dungeon-sheets.git
synced 2026-05-19 04:33:26 +02:00
80 lines
1.7 KiB
Python
80 lines
1.7 KiB
Python
"""This file describes the heroic adventurer Multiclass_2.
|
|
|
|
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.0"
|
|
|
|
name = "Multiclass 2"
|
|
classes = ['ranger', 'bard', 'warlock']
|
|
levels = [1, 1, 1]
|
|
player_name = "Ben"
|
|
background = "Guild Merchant"
|
|
race = "Lightfoot Halfling"
|
|
alignment = "Neutral good"
|
|
xp = 0
|
|
hp_max = 10
|
|
|
|
# Ability Scores
|
|
strength = 15
|
|
dexterity = 16
|
|
constitution = 13
|
|
intelligence = 12
|
|
wisdom = 10
|
|
charisma = 9
|
|
|
|
# Select what skills you're proficient with
|
|
skill_proficiencies = ('investigation', 'nature', 'insight', 'persuasion')
|
|
|
|
# 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 = """[choose one], [choose one], Common, Halfling"""
|
|
|
|
# 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 = "None" # Eg "light leather armor"
|
|
shield = "None" # Eg "shield"
|
|
|
|
equipment = """"""
|
|
|
|
attacks_and_spellcasting = """"""
|
|
|
|
# List of known spells
|
|
# Example: spells = ('magic missile', 'mage armor')
|
|
spells = () # Todo: Learn some spells
|
|
|
|
# Which spells have been prepared (not including cantrips)
|
|
spells_prepared = ()
|
|
|
|
# Backstory
|
|
# Describe your backstory here
|
|
personality_traits = """"""
|
|
|
|
ideals = """"""
|
|
|
|
bonds = """"""
|
|
|
|
flaws = """"""
|
|
|
|
features_and_traits = """"""
|