Added examples for all new class features

This commit is contained in:
Ben Cook
2019-01-01 22:50:30 -05:00
parent 2d7a25724b
commit e6c67df8d3
71 changed files with 1383 additions and 564 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-73
View File
@@ -1,73 +0,0 @@
"""This file describes the heroic adventurer Dain Torunn.
Modify this file as you level up and then re-generate the character
sheet by running ``makesheets`` from the command line.
"""
dungeonsheets_version = "0.5.0"
name = 'Dain Torunn'
character_class = 'Druid'
circle = 'moon'
player_name = 'Emily'
background = "Sailor"
race = "Hill Dwarf"
level = 2
alignment = "Neutral good"
xp = 1176
hp_max = 18
# Ability Scores
strength = 10
dexterity = 14
constitution = 15
intelligence = 11
wisdom = 16
charisma = 13
skill_proficiencies = ('nature', 'insight', 'athletics', 'perception')
# 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: Describe your equipment from your Druid class and Sailor background."
attacks_and_spellcasting = "TODO: Describe specifics for how your Druid attacks."
wild_shapes = ["wolf", "crocodile", "giant eagle", 'ape', 'ankylosaurus']
# List of known spells
# Which spells have been prepared (including cantrips)
spells_prepared = ('shillelagh', 'poison spray', 'druidcraft',
'speak with animals', 'entangle', 'cure wounds',
'create or destroy water')
# spells = spells_prepared
# Backstory
# TODO: Describe your backstory here
personality_traits = """I am a leaf on the wind,
watch how I...
"""
ideals = """
"""
bonds = """
"""
flaws = """
"""
features_and_traits = """
"""
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+3 -33
View File
@@ -1,36 +1,6 @@
all: multiclass multiclass_2 wizard druid rogue warlock
clobber:
rm -f multiclass.pdf multiclass_2.pdf wizard.pdf rogue.pdf warlock.pdf druid.pdf
all: barbarian1.pdf barbarian2.pdf bard1.pdf bard2.pdf cleric1.pdf cleric2.pdf druid1.pdf druid2.pdf fighter1.pdf fighter2.pdf monk1.pdf monk2.pdf ranger1.pdf ranger2.pdf ranger3.pdf rogue1.pdf rogue2.pdf sorceror1.pdf sorceror2.pdf warlock1.pdf warlock2.pdf wizard1.pdf wizard2.pdf multiclass1.pdf multiclass2.pdf
redo: clobber all
multiclass: multiclass.pdf
multiclass_2: multiclass_2.pdf
wizard: wizard.pdf
rogue: rogue.pdf
warlock: warlock.pdf
druid: druid.pdf
multiclass.pdf: multiclass.py
makesheets multiclass.py
multiclass_2.pdf: multiclass_2.py
makesheets multiclass_2.py
wizard.pdf: wizard.py
makesheets wizard.py
druid.pdf: druid.py
makesheets druid.py
rogue.pdf: rogue.py
makesheets rogue.py
warlock.pdf: warlock.py
makesheets warlock.py
%.pdf: %.py
makesheets $<
Binary file not shown.
+15 -15
View File
@@ -1,4 +1,4 @@
"""This file describes the heroic adventurer Monk2.
"""This file describes the heroic adventurer Monk1.
It's used primarily for saving characters from create-character,
where there will be many missing sections.
@@ -10,32 +10,32 @@ sheet by running ``makesheets`` from the command line.
dungeonsheets_version = "0.9.4"
name = "Monk2"
name = "Monk1"
player_name = "Ben"
# Be sure to list Primary class first
classes = ['Monk'] # ex: ['Wizard'] or ['Rogue', 'Fighter']
levels = [10] # ex: [10] or [3, 2]
subclasses = ["Way of the Long Death"] # ex: ['Necromacy'] or ['Thief', None]
background = "Soldier"
race = "Half-Orc"
alignment = "Neutral evil"
levels = [20] # ex: [10] or [3, 2]
subclasses = ["Way of the Open Hand"] # ex: ['Necromacy'] or ['Thief', None]
background = "Charlatan"
race = "Forest Gnome"
alignment = "Lawful good"
xp = 0
hp_max = 55
hp_max = 105
inspiration = 0 # integer inspiration value
# Ability Scores
strength = 15
dexterity = 15
strength = 8
dexterity = 16
constitution = 13
intelligence = 10
intelligence = 14
wisdom = 14
charisma = 8
charisma = 10
# Select what skills you're proficient with
# ex: skill_proficiencies = ('athletics', 'acrobatics', 'arcana')
skill_proficiencies = ('stealth', 'religion', 'athletics', 'intimidation', 'intimidation')
skill_proficiencies = ('athletics', 'religion', 'deception', 'sleight of hand')
# Any skills you have "expertise" (Bard/Rogue) in
skill_expertise = ()
@@ -58,7 +58,7 @@ weapon_proficiencies = () # ex: ('shortsword', 'quarterstaff')
_proficiencies_text = () # ex: ("thieves' tools",)
# Proficiencies and languages
languages = """Common, Orc"""
languages = """Common, Gnomish"""
# Inventory
# TODO: Get yourself some money
@@ -69,7 +69,7 @@ gp = 0
pp = 0
# TODO: Put your equipped weapons and armor here
weapons = ('quarterstaff',) # Example: ('shortsword', 'longsword')
weapons = () # Example: ('shortsword', 'longsword')
magic_items = () # Example: ('ring of protection',)
armor = "" # Eg "leather armor"
shield = "" # Eg "shield"
Binary file not shown.
Binary file not shown.
-79
View File
@@ -1,79 +0,0 @@
"""This file describes the heroic adventurer Multiclass.
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"
classes = ['fighter', 'wizard']
levels = [4, 2]
player_name = "Ben"
background = "Inheritor"
race = "Tabaxi"
alignment = "Lawful neutral"
xp = 0
hp_max = 10
# Ability Scores
strength = 15
dexterity = 17
constitution = 15
intelligence = 15
wisdom = 11
charisma = 10
# Select what skills you're proficient with
skill_proficiencies = ('history', 'history', 'intimidation', 'survival', 'perception', 'stealth')
# 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], Common, [Choose One]"""
# 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 = """"""
Binary file not shown.
Binary file not shown.
Binary file not shown.
+109
View File
@@ -0,0 +1,109 @@
"""This file describes the heroic adventurer Multiclass1.
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.9.4"
name = "Multiclass1"
player_name = "Ben"
# Be sure to list Primary class first
classes = ['Sorceror', 'Fighter'] # ex: ['Wizard'] or ['Rogue', 'Fighter']
levels = [8, 4] # ex: [10] or [3, 2]
subclasses = ["Divine Soul", "Champion"] # ex: ['Necromacy'] or ['Thief', None]
background = "Charlatan"
race = "Wood Elf"
alignment = "Chaotic good"
xp = 0
hp_max = 34
inspiration = 0 # integer inspiration value
# Ability Scores
strength = 12
dexterity = 12
constitution = 8
intelligence = 14
wisdom = 14
charisma = 15
# Select what skills you're proficient with
# ex: skill_proficiencies = ('athletics', 'acrobatics', 'arcana')
skill_proficiencies = ('arcana', 'intimidation', 'deception', 'sleight of hand', 'perception')
# Any skills you have "expertise" (Bard/Rogue) in
skill_expertise = ()
# Named features / feats that aren't part of your classes, race, or background.
# Also include Eldritch Invocations and features you make multiple selection of
# (like Maneuvers for Fighter, Metamagic for Sorcerors, Trick Shots for
# Gunslinger, etc.)
# 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 = ('dueling',)
# Weapons/other proficiencies not given by class/race/background
weapon_proficiencies = () # ex: ('shortsword', 'quarterstaff')
_proficiencies_text = () # ex: ("thieves' tools",)
# Proficiencies and languages
languages = """Common, Elvish"""
# 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 = ('shortsword', 'dagger',) # Example: ('shortsword', 'longsword')
magic_items = () # Example: ('ring of protection',)
armor = "studded armor" # Eg "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 = ('light', 'friends', 'magic missile', 'fireball', 'invisibility') # Todo: Learn some spells
# Which spells have not been prepared
__spells_unprepared = ()
# all spells known
spells = spells_prepared + __spells_unprepared
# Wild shapes for Druid
wild_shapes = () # Ex: ('ape', 'wolf', 'ankylosaurus')
# 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."""
Binary file not shown.
+109
View File
@@ -0,0 +1,109 @@
"""This file describes the heroic adventurer Multiclass2.
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.9.4"
name = "Multiclass2"
player_name = "Ben"
# Be sure to list Primary class first
classes = ['Barbarian', 'Monk'] # ex: ['Wizard'] or ['Rogue', 'Fighter']
levels = [8, 2] # ex: [10] or [3, 2]
subclasses = ["Path of the Ancestral Guardian", ''] # ex: ['Necromacy'] or ['Thief', None]
background = "Spy"
race = "Half-Orc"
alignment = "Neutral good"
xp = 0
hp_max = 84
inspiration = 0 # integer inspiration value
# Ability Scores
strength = 17
dexterity = 14
constitution = 14
intelligence = 12
wisdom = 10
charisma = 8
# Select what skills you're proficient with
# ex: skill_proficiencies = ('athletics', 'acrobatics', 'arcana')
skill_proficiencies = ('animal handling', 'athletics', 'deception', 'stealth', 'intimidation')
# Any skills you have "expertise" (Bard/Rogue) in
skill_expertise = ()
# Named features / feats that aren't part of your classes, race, or background.
# Also include Eldritch Invocations and features you make multiple selection of
# (like Maneuvers for Fighter, Metamagic for Sorcerors, Trick Shots for
# Gunslinger, etc.)
# 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 = ()
# Weapons/other proficiencies not given by class/race/background
weapon_proficiencies = () # ex: ('shortsword', 'quarterstaff')
_proficiencies_text = () # ex: ("thieves' tools",)
# Proficiencies and languages
languages = """Common, Orc"""
# 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 = ('spear', 'greataxe',) # Example: ('shortsword', 'longsword')
magic_items = () # Example: ('ring of protection',)
armor = "" # Eg "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
# Wild shapes for Druid
wild_shapes = () # Ex: ('ape', 'wolf', 'ankylosaurus')
# 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."""
Binary file not shown.
-79
View File
@@ -1,79 +0,0 @@
"""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 = """"""
@@ -51,7 +51,7 @@ features = ()
# If selecting among multiple feature options: ex Fighting Style
# Example (Fighting Style):
# feature_choices = ('Archery',)
feature_choices = ()
feature_choices = ('great-weapon master', )
# Weapons/other proficiencies not given by class/race/background
weapon_proficiencies = () # ex: ('shortsword', 'quarterstaff')
@@ -69,10 +69,10 @@ gp = 0
pp = 0
# TODO: Put your equipped weapons and armor here
weapons = ('longsword', 'warhammer', 'spear') # Example: ('shortsword', 'longsword')
weapons = ('greatsword', 'spear',) # Example: ('shortsword', 'longsword')
magic_items = () # Example: ('ring of protection',)
armor = "plate mail" # Eg "leather armor"
shield = "shield" # Eg "shield"
armor = "chain mail" # Eg "leather armor"
shield = "" # Eg "shield"
equipment = """TODO: list the equipment and magic items your character carries"""
@@ -1,4 +1,4 @@
"""This file describes the heroic adventurer Paladin2.
"""This file describes the heroic adventurer Paladin1.
It's used primarily for saving characters from create-character,
where there will be many missing sections.
@@ -10,32 +10,32 @@ sheet by running ``makesheets`` from the command line.
dungeonsheets_version = "0.9.4"
name = "Paladin2"
name = "Paladin1"
player_name = "Ben"
# Be sure to list Primary class first
classes = ['Paladin'] # ex: ['Wizard'] or ['Rogue', 'Fighter']
levels = [8] # ex: [10] or [3, 2]
subclasses = ["Oath of Devotion"] # ex: ['Necromacy'] or ['Thief', None]
background = "Far Traveler"
race = "Protector Aasimar"
alignment = "Lawful good"
levels = [20] # ex: [10] or [3, 2]
subclasses = ["Oath of Conquest"] # ex: ['Necromacy'] or ['Thief', None]
background = "Clan Crafter"
race = "Tiefling"
alignment = "Neutral evil"
xp = 0
hp_max = 54
hp_max = 126
inspiration = 0 # integer inspiration value
# Ability Scores
strength = 15
dexterity = 8
dexterity = 13
constitution = 12
intelligence = 10
wisdom = 14
intelligence = 11
wisdom = 8
charisma = 16
# Select what skills you're proficient with
# ex: skill_proficiencies = ('athletics', 'acrobatics', 'arcana')
skill_proficiencies = ('athletics', 'intimidation', 'insight', 'perception')
skill_proficiencies = ('intimidation', 'persuasion', 'history', 'insight')
# Any skills you have "expertise" (Bard/Rogue) in
skill_expertise = ()
@@ -51,14 +51,14 @@ features = ()
# If selecting among multiple feature options: ex Fighting Style
# Example (Fighting Style):
# feature_choices = ('Archery',)
feature_choices = ()
feature_choices = ('defense',)
# Weapons/other proficiencies not given by class/race/background
weapon_proficiencies = () # ex: ('shortsword', 'quarterstaff')
_proficiencies_text = () # ex: ("thieves' tools",)
# Proficiencies and languages
languages = """Elvish, Common, Celestial"""
languages = """Dwarvish, Common, Infernal"""
# Inventory
# TODO: Get yourself some money
@@ -69,10 +69,10 @@ gp = 0
pp = 0
# TODO: Put your equipped weapons and armor here
weapons = ('spear', 'greataxe') # Example: ('shortsword', 'longsword')
weapons = ('longsword', 'warhammer', 'spear') # Example: ('shortsword', 'longsword')
magic_items = () # Example: ('ring of protection',)
armor = "scale mail" # Eg "leather armor"
shield = "" # Eg "shield"
armor = "plate mail" # Eg "leather armor"
shield = "shield" # Eg "shield"
equipment = """TODO: list the equipment and magic items your character carries"""
@@ -81,7 +81,8 @@ or uses spells."""
# List of known spells
# Example: spells_prepared = ('magic missile', 'mage armor')
spells_prepared = ('bless', 'cure wounds', 'magic weapon') # Todo: Learn some spells
spells_prepared = ('bless', 'cure wounds', 'magic weapon', 'daylight',
'geas') # Todo: Learn some spells
# Which spells have not been prepared
__spells_unprepared = ()
Binary file not shown.
Binary file not shown.
+110
View File
@@ -0,0 +1,110 @@
"""This file describes the heroic adventurer Ranger3.
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.9.4"
name = "Ranger3"
player_name = "Ben"
# Be sure to list Primary class first
classes = ['Revised Ranger'] # ex: ['Wizard'] or ['Rogue', 'Fighter']
levels = [8] # ex: [10] or [3, 2]
subclasses = ["Beast Conclave"] # ex: ['Necromacy'] or ['Thief', None]
background = "Courtier"
race = "Fire Genasi"
alignment = "Lawful good"
xp = 0
hp_max = 72
inspiration = 0 # integer inspiration value
# Ability Scores
strength = 13
dexterity = 15
constitution = 16
intelligence = 13
wisdom = 10
charisma = 8
# Select what skills you're proficient with
# ex: skill_proficiencies = ('athletics', 'acrobatics', 'arcana')
skill_proficiencies = ('animal handling', 'athletics', 'investigation', 'insight', 'persuasion')
# Any skills you have "expertise" (Bard/Rogue) in
skill_expertise = ()
# Named features / feats that aren't part of your classes, race, or background.
# Also include Eldritch Invocations and features you make multiple selection of
# (like Maneuvers for Fighter, Metamagic for Sorcerors, Trick Shots for
# Gunslinger, etc.)
# 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 = ('two-weapon fighting',)
# Weapons/other proficiencies not given by class/race/background
weapon_proficiencies = () # ex: ('shortsword', 'quarterstaff')
_proficiencies_text = () # ex: ("thieves' tools",)
# Proficiencies and languages
languages = """celestial, elvish, Common, Primoridal"""
# 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 = ('longbow', 'shortsword', 'dagger') # Example: ('shortsword', 'longsword')
magic_items = () # Example: ('ring of protection',)
armor = "" # Eg "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 = ('animal friendship', 'fog cloud', 'barkskin',
'daylight', 'stoneskin', 'tree stride') # Todo: Learn some spells
# Which spells have not been prepared
__spells_unprepared = ()
# all spells known
spells = spells_prepared + __spells_unprepared
# Wild shapes for Druid
wild_shapes = () # Ex: ('ape', 'wolf', 'ankylosaurus')
# 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."""
-99
View File
@@ -1,99 +0,0 @@
dungeonsheets_version = "0.4.2"
# Basic information
name = 'Mr. Stabby'
character_class = 'rogue'
player_name = 'Mike'
background = "Criminal"
race = "Lightfoot halfling"
level = 3
alignment = "Neutral"
xp = 1984
hp_max = 19
# 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')
armor = 'leather armor'
shield = 'shield'
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.""")
attacks_and_spellcasting = (
"""Sneak Attack: Once per turn, when you hit a creature with a
Dexterity-based attack (such as with your shortsword or shortbow)
and you have advantage on the attack roll, you can deal an extra
1d6 damage to your target. You dont need advantage if another
enemy of the target is within 5 feet of it and isnt
incapacitated. You cant deal the extra damage, however, if you
have disadvantage on the attack roll.""")
features_and_traits = (
"""Thieves' Cant: You know thieves cant, a secret mix of dialect,
jargon, and code that allows you to hide messages in seemingly
normal conversation. You also understand a set of secret signs and
symbols used to convey short, simple messages, such as whether an
area is dangerous, whether loot is nearby, or whether the people
in an area are easy marks or will provide a safe house for thieves
on the run.
Lucky: When you roll a natural 1 on an attack roll, ability check,
or saving throw, you can reroll the die and must use the new roll.
Brave: You have advantage on saving throws against being
frightened.
Halfling Nimbleness: You can move through the space of any
creature that is of a size larger than yours.
Naturally Stealthy: You can attempt to hide when you are obscured
by a creature that is at least one size larger than you.
Criminal Contact: You have a contact who acts as your liaison to a
network of other criminals. You know how to get messages to and
from your contact, even over great distances; you know the local
messengers, corrupt caravan masters, and seedy sailors who can
carry messages for you. You can move secret information or stolen
goods through your contact in exchange for money or other
information you seek.""")
# 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."""
Binary file not shown.
+109
View File
@@ -0,0 +1,109 @@
"""This file describes the heroic adventurer Rogue1.
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.9.4"
name = "Rogue1"
player_name = "Ben"
# Be sure to list Primary class first
classes = ['Rogue'] # ex: ['Wizard'] or ['Rogue', 'Fighter']
levels = [20] # ex: [10] or [3, 2]
subclasses = ["Thief"] # ex: ['Necromacy'] or ['Thief', None]
background = "Inheritor"
race = "Aarakocra"
alignment = "Chaotic evil"
xp = 0
hp_max = 105
inspiration = 0 # integer inspiration value
# Ability Scores
strength = 10
dexterity = 17
constitution = 13
intelligence = 14
wisdom = 13
charisma = 8
# Select what skills you're proficient with
# ex: skill_proficiencies = ('athletics', 'acrobatics', 'arcana')
skill_proficiencies = ('acrobatics', 'athletics', 'deception', 'insight', 'intimidation', 'survival')
# Any skills you have "expertise" (Bard/Rogue) in
skill_expertise = ('acrobatics', 'athletics', 'deception', 'insight')
# Named features / feats that aren't part of your classes, race, or background.
# Also include Eldritch Invocations and features you make multiple selection of
# (like Maneuvers for Fighter, Metamagic for Sorcerors, Trick Shots for
# Gunslinger, etc.)
# 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 = ()
# Weapons/other proficiencies not given by class/race/background
weapon_proficiencies = () # ex: ('shortsword', 'quarterstaff')
_proficiencies_text = () # ex: ("thieves' tools",)
# Proficiencies and languages
languages = """[choose one], Common, Aarakocra, Auran"""
# 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 = ('rapier', 'dagger', 'shortbow') # Example: ('shortsword', 'longsword')
magic_items = () # Example: ('ring of protection',)
armor = "" # Eg "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
# Wild shapes for Druid
wild_shapes = () # Ex: ('ape', 'wolf', 'ankylosaurus')
# 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."""
Binary file not shown.
+109
View File
@@ -0,0 +1,109 @@
"""This file describes the heroic adventurer Rogue1.
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.9.4"
name = "Rogue2"
player_name = "Ben"
# Be sure to list Primary class first
classes = ['Rogue'] # ex: ['Wizard'] or ['Rogue', 'Fighter']
levels = [10] # ex: [10] or [3, 2]
subclasses = ["Swashbuckler"] # ex: ['Necromacy'] or ['Thief', None]
background = "Outlander"
race = "Deep Gnome"
alignment = "Chaotic good"
xp = 0
hp_max = 55
inspiration = 0 # integer inspiration value
# Ability Scores
strength = 15
dexterity = 15
constitution = 13
intelligence = 14
wisdom = 10
charisma = 8
# Select what skills you're proficient with
# ex: skill_proficiencies = ('athletics', 'acrobatics', 'arcana')
skill_proficiencies = ('deception', 'insight', 'intimidation', 'investigation', 'athletics', 'survival')
# Any skills you have "expertise" (Bard/Rogue) in
skill_expertise = ('investigation', 'survival', 'athletics', 'insight')
# Named features / feats that aren't part of your classes, race, or background.
# Also include Eldritch Invocations and features you make multiple selection of
# (like Maneuvers for Fighter, Metamagic for Sorcerors, Trick Shots for
# Gunslinger, etc.)
# 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 = ()
# Weapons/other proficiencies not given by class/race/background
weapon_proficiencies = () # ex: ('shortsword', 'quarterstaff')
_proficiencies_text = () # ex: ("thieves' tools",)
# Proficiencies and languages
languages = """[choose one], Common, Gnomish, Undercommon"""
# 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 = ('shortsword', 'dart') # Example: ('shortsword', 'longsword')
magic_items = () # Example: ('ring of protection',)
armor = "" # Eg "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
# Wild shapes for Druid
wild_shapes = () # Ex: ('ape', 'wolf', 'ankylosaurus')
# 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."""
Binary file not shown.
+113
View File
@@ -0,0 +1,113 @@
"""This file describes the heroic adventurer Sorceror1.
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.9.4"
name = "Sorceror1"
player_name = "Ben"
# Be sure to list Primary class first
classes = ['Sorceror'] # ex: ['Wizard'] or ['Rogue', 'Fighter']
levels = [20] # ex: [10] or [3, 2]
subclasses = ["Wild Magic"] # ex: ['Necromacy'] or ['Thief', None]
background = "Waterdhavian Noble"
race = "Triton"
alignment = "Neutral evil"
xp = 0
hp_max = 105
inspiration = 0 # integer inspiration value
# Ability Scores
strength = 11
dexterity = 8
constitution = 14
intelligence = 14
wisdom = 12
charisma = 16
# Select what skills you're proficient with
# ex: skill_proficiencies = ('athletics', 'acrobatics', 'arcana')
skill_proficiencies = ('deception', 'insight', 'history', 'persuasion')
# Any skills you have "expertise" (Bard/Rogue) in
skill_expertise = ()
# Named features / feats that aren't part of your classes, race, or background.
# Also include Eldritch Invocations and features you make multiple selection of
# (like Maneuvers for Fighter, Metamagic for Sorcerors, Trick Shots for
# Gunslinger, etc.)
# 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 = ()
# Weapons/other proficiencies not given by class/race/background
weapon_proficiencies = () # ex: ('shortsword', 'quarterstaff')
_proficiencies_text = () # ex: ("thieves' tools",)
# Proficiencies and languages
languages = """[choose one], Common, Primordial"""
# 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 = ('spear',) # Example: ('shortsword', 'longsword')
magic_items = () # Example: ('ring of protection',)
armor = "" # Eg "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 = ('acid_splash', 'blade ward', 'friends', 'light',
'burning hands', 'disguise self', 'jump',
'blur', 'invisibility', 'knock',
'fly', 'fireball',
'banishment', 'cloudkill', 'teleport', 'wish') # Todo: Learn some spells
# Which spells have not been prepared
__spells_unprepared = ()
# all spells known
spells = spells_prepared + __spells_unprepared
# Wild shapes for Druid
wild_shapes = () # Ex: ('ape', 'wolf', 'ankylosaurus')
# 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."""
Binary file not shown.
+112
View File
@@ -0,0 +1,112 @@
"""This file describes the heroic adventurer Sorceror2.
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.9.4"
name = "Sorceror2"
player_name = "Ben"
# Be sure to list Primary class first
classes = ['Sorceror'] # ex: ['Wizard'] or ['Rogue', 'Fighter']
levels = [16] # ex: [10] or [3, 2]
subclasses = ["Shadow Magic"] # ex: ['Necromacy'] or ['Thief', None]
background = "Cloistered Scholar"
race = "Fallen Aasimar"
alignment = "Lawful good"
xp = 0
hp_max = 68
inspiration = 0 # integer inspiration value
# Ability Scores
strength = 9
dexterity = 10
constitution = 12
intelligence = 13
wisdom = 14
charisma = 17
# Select what skills you're proficient with
# ex: skill_proficiencies = ('athletics', 'acrobatics', 'arcana')
skill_proficiencies = ('arcana', 'deception', 'insight', 'history')
# Any skills you have "expertise" (Bard/Rogue) in
skill_expertise = ()
# Named features / feats that aren't part of your classes, race, or background.
# Also include Eldritch Invocations and features you make multiple selection of
# (like Maneuvers for Fighter, Metamagic for Sorcerors, Trick Shots for
# Gunslinger, etc.)
# 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 = ()
# Weapons/other proficiencies not given by class/race/background
weapon_proficiencies = () # ex: ('shortsword', 'quarterstaff')
_proficiencies_text = () # ex: ("thieves' tools",)
# Proficiencies and languages
languages = """[choose one], [choose one], Common, Celestial"""
# 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 = ('dagger',) # Example: ('shortsword', 'longsword')
magic_items = () # Example: ('ring of protection',)
armor = "" # Eg "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 = ('acid_splash', 'blade ward', 'friends', 'light',
'burning hands', 'disguise self', 'jump',
'blur', 'invisibility', 'knock',
'fly', 'fireball',) # Todo: Learn some
# Which spells have not been prepared
__spells_unprepared = ()
# all spells known
spells = spells_prepared + __spells_unprepared
# Wild shapes for Druid
wild_shapes = () # Ex: ('ape', 'wolf', 'ankylosaurus')
# 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."""
-64
View File
@@ -1,64 +0,0 @@
dungeonsheets_version = "0.4.2"
# Basic information
name = 'Sid Istick'
character_class = 'Warlock'
player_name = 'Mark'
background = "Criminal"
race = "Rock Gnome"
level = 5
alignment = "True neutral"
xp = 2790 * 3
hp_max = 28
# Ability Scores
strength = 11
dexterity = 14
constitution = 10
intelligence = 17
wisdom = 11
charisma = 8
skill_proficiencies = [
'deception',
'investigation',
'nature',
'stealth',
]
# Proficiencies and languages
languages = "Common, gnomish."
# Inventory
cp = 1792
sp = 987
ep = 44
gp = 803
pp = 3
weapons = ('lance', 'net')
equipment = (
"""Gallon of ale, red cloak, shortsword, longsword, jar of salt, vodka
(500mL), potion of vitality, wand of magic missiles (7/7),
component pouch, spellbook, backpack, bottle of ink, ink pen, 10
sheets of parchment, small knife, tome of historical lore, holy
symbol, prayer book, set of common clothes, pouch.""")
# List of known spells
spells = ('blade ward', 'guidance', 'mage hand', 'animal friendship',
'arms of hadar', 'find steed', 'flaming sphere', 'beacon of hope',
'elemental weapon')
# Which spells have been prepared (not including cantrips)
spells_prepared = ('blade ward', 'guidance', 'mage hand', 'animal friendship',
'arms of hadar', 'find steed', 'flaming sphere', 'beacon of hope',
'elemental weapon')
# Backstory
personality_traits = """"""
ideals = """"""
bonds = """"""
flaws = """"""
features_and_traits = (
"""""")
+115
View File
@@ -0,0 +1,115 @@
"""This file describes the heroic adventurer Warlock1.
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.9.4"
name = "Warlock1"
player_name = "Ben"
# Be sure to list Primary class first
classes = ['Warlock'] # ex: ['Wizard'] or ['Rogue', 'Fighter']
levels = [20] # ex: [10] or [3, 2]
subclasses = ["The Fiend Patron"] # ex: ['Necromacy'] or ['Thief', None]
background = "Uthgardt Tribe Member"
race = "Kenku"
alignment = "Neutral good"
xp = 0
hp_max = 105
inspiration = 0 # integer inspiration value
# Ability Scores
strength = 8
dexterity = 12
constitution = 12
intelligence = 13
wisdom = 15
charisma = 15
# Select what skills you're proficient with
# ex: skill_proficiencies = ('athletics', 'acrobatics', 'arcana')
skill_proficiencies = ('arcana', 'deception', 'history', 'intimidation')
# Any skills you have "expertise" (Bard/Rogue) in
skill_expertise = ()
# Named features / feats that aren't part of your classes, race, or background.
# Also include Eldritch Invocations and features you make multiple selection of
# (like Maneuvers for Fighter, Metamagic for Sorcerors, Trick Shots for
# Gunslinger, etc.)
# Example:
# features = ('Tavern Brawler',) # take the optional Feat from PHB
features = ('ascendant step', 'beast speech', 'devils sight', 'eyes of the rune keeper',
'sign of ill omen', 'thirsting blade', 'whispers of the grave',
'sculptor of flesh')
# If selecting among multiple feature options: ex Fighting Style
# Example (Fighting Style):
# feature_choices = ('Archery',)
feature_choices = ('pact of the blade',)
# Weapons/other proficiencies not given by class/race/background
weapon_proficiencies = () # ex: ('shortsword', 'quarterstaff')
_proficiencies_text = () # ex: ("thieves' tools",)
# Proficiencies and languages
languages = """Elvish, Common, Auran"""
# 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 = ('dagger',) # Example: ('shortsword', 'longsword')
magic_items = () # Example: ('ring of protection',)
armor = "leather armor" # Eg "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 = ('blade ward', 'minor illusion',
'hex', 'witch bolt',
'darkness',
'fly',
'scrying') # Todo: Learn some spells
# Which spells have not been prepared
__spells_unprepared = ()
# all spells known
spells = spells_prepared + __spells_unprepared
# Wild shapes for Druid
wild_shapes = () # Ex: ('ape', 'wolf', 'ankylosaurus')
# 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."""
Binary file not shown.
+113
View File
@@ -0,0 +1,113 @@
"""This file describes the heroic adventurer Warlock2.
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.9.4"
name = "Warlock2"
player_name = "Ben"
# Be sure to list Primary class first
classes = ['Warlock'] # ex: ['Wizard'] or ['Rogue', 'Fighter']
levels = [8] # ex: [10] or [3, 2]
subclasses = ["Hexblade Patron"] # ex: ['Necromacy'] or ['Thief', None]
background = "City Watch"
race = "Firbolg"
alignment = "Neutral evil"
xp = 0
hp_max = 27
inspiration = 0 # integer inspiration value
# Ability Scores
strength = 13
dexterity = 10
constitution = 8
intelligence = 13
wisdom = 16
charisma = 15
# Select what skills you're proficient with
# ex: skill_proficiencies = ('athletics', 'acrobatics', 'arcana')
skill_proficiencies = ('deception', 'history', 'athletics', 'insight')
# Any skills you have "expertise" (Bard/Rogue) in
skill_expertise = ()
# Named features / feats that aren't part of your classes, race, or background.
# Also include Eldritch Invocations and features you make multiple selection of
# (like Maneuvers for Fighter, Metamagic for Sorcerors, Trick Shots for
# Gunslinger, etc.)
# Example:
# features = ('Tavern Brawler',) # take the optional Feat from PHB
features = ('mask of many faces', 'minions of chaos', 'one with shadows',
'repelling blast')
# If selecting among multiple feature options: ex Fighting Style
# Example (Fighting Style):
# feature_choices = ('Archery',)
feature_choices = ('pact of the tome',)
# Weapons/other proficiencies not given by class/race/background
weapon_proficiencies = () # ex: ('shortsword', 'quarterstaff')
_proficiencies_text = () # ex: ("thieves' tools",)
# Proficiencies and languages
languages = """Celestial, Dwarvish, Common, Elvish, Giant"""
# 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 = ('greatsword',) # Example: ('shortsword', 'longsword')
magic_items = () # Example: ('ring of protection',)
armor = "chain mail" # Eg "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 = ('blade ward', 'minor illusion',
'hex', 'witch bolt',
'darkness',
'fly') # Todo: Learn some spells
# Which spells have not been prepared
__spells_unprepared = ()
# all spells known
spells = spells_prepared + __spells_unprepared
# Wild shapes for Druid
wild_shapes = () # Ex: ('ape', 'wolf', 'ankylosaurus')
# 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."""
Binary file not shown.
-100
View File
@@ -1,100 +0,0 @@
dungeonsheets_version = "0.4.2"
# Basic information
name = 'Inara Serradon'
character_class = 'wizard'
player_name = 'Mark'
background = "Acolyte"
race = "High-Elf"
level = 3
alignment = "Chaotic good"
xp = 2190
hp_max = 16
# Ability Scores
strength = 10
dexterity = 15
constitution = 14
intelligence = 16
wisdom = 12
charisma = 8
# Proficiencies and languages
skill_proficiencies = [
'arcana',
'insight',
'investigation',
'perception',
'religion',
]
languages = "Common, Elvish, Draconic, Dwarvish, Goblin."
# Inventory
cp = 316
sp = 283
ep = 28
gp = 125
pp = 0
weapons = ('shortsword', 'longsword')
equipment = (
"""Gallon of ale, red cloak, shortsword, longsword, jar of salt, vodka
(500mL), potion of vitality, wand of magic missiles (7/7),
component pouch, spellbook, backpack, bottle of ink, ink pen, 10
sheets of parchment, small knife, tome of historical lore, holy
symbol, prayer book, set of common clothes, pouch.""")
# List of known spells
spells = ('blindness deafness', 'burning hands', 'detect magic',
'false life', 'mage armor', 'mage hand', 'magic missile',
'prestidigitation', 'ray of frost', 'ray of sickness', 'shield',
'shocking grasp', 'sleep',)
# Which spells have been prepared (not including cantrips)
spells_prepared = ('blindness deafness', 'false life', 'mage armor',
'ray of sickness', 'shield', 'sleep',)
# Backstory
personality_traits = """I use polysyllabic words that convey the impression of
erudition. Also, Ive spent so long in the temple that I have little
experience dealing with people on a casual basis."""
ideals = """Knowledge. The path to power and self-improvement is through
knowledge."""
bonds = """The tome I carry with me is the record of my lifes work so far,
and no vault is secure enough to keep it safe."""
flaws = """Ill do just about anything to uncover historical secrets that
would add to my research."""
features_and_traits = (
"""*Spellcasting Ability: Intelligence is your spellcasting ability for
your spells. The saving throw DC to resist a spell you cast is
13. Your attack bonus when you make an attack with a spell is
+5. See the rulebook for rules on casting your spells.
*Arcane Recovery: You can regain some of your magical energy by
studying your spellbook. Once per day during a short rest, you can
choose to recover expended spell slots with a combined level equal
to or less than half your wizard level (rounded up).
*Darkvision: You see in dim light within a 60-foot radius of you as
if it were bright light, and in darkness in that radius as if it
were dim light. You cant discern color in darkness, only shades
of gray.
*Fey Ancestry: You have advantage on saving throws against being
charmed, and magic cant put you to sleep.
*Trance: Elves dont need to sleep. They meditate deeply, remaining
semiconscious, for 4 hours a day and gain the same benefit a human
does from 8 hours of sleep.
*Shelter of the Faithful: As a servant of Oghma, you command the
respect of those who share your faith, and you can perform the
rites of Oghma. You and your companions can expect to receive free
healing and care at a temple, shrine, or other established
presence of Oghmas faith. Those who share your religion will
support you (and only you) at a modest lifestyle. You also have
ties to the temple of Oghma in Neverwinter, where you have a
residence. When you are in Neverwinter, you can call upon the
priests there for assistance that wont endanger them.""")
Binary file not shown.
+115
View File
@@ -0,0 +1,115 @@
"""This file describes the heroic adventurer Wizard1.
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.9.4"
name = "Wizard1"
player_name = "Ben"
# Be sure to list Primary class first
classes = ['Wizard'] # ex: ['Wizard'] or ['Rogue', 'Fighter']
levels = [20] # ex: [10] or [3, 2]
subclasses = ["School of Transmutation"] # ex: ['Necromacy'] or ['Thief', None]
background = "Hermit"
race = "Air Genasi"
alignment = "Chaotic neutral"
xp = 0
hp_max = 105
inspiration = 0 # integer inspiration value
# Ability Scores
strength = 8
dexterity = 11
constitution = 14
intelligence = 15
wisdom = 13
charisma = 14
# Select what skills you're proficient with
# ex: skill_proficiencies = ('athletics', 'acrobatics', 'arcana')
skill_proficiencies = ('arcana', 'history', 'medicine', 'religion')
# Any skills you have "expertise" (Bard/Rogue) in
skill_expertise = ()
# Named features / feats that aren't part of your classes, race, or background.
# Also include Eldritch Invocations and features you make multiple selection of
# (like Maneuvers for Fighter, Metamagic for Sorcerors, Trick Shots for
# Gunslinger, etc.)
# 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 = ()
# Weapons/other proficiencies not given by class/race/background
weapon_proficiencies = () # ex: ('shortsword', 'quarterstaff')
_proficiencies_text = () # ex: ("thieves' tools",)
# Proficiencies and languages
languages = """[choose one], Common, Primoridal"""
# 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 = ('spear',) # Example: ('shortsword', 'longsword')
magic_items = () # Example: ('ring of protection',)
armor = "" # Eg "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 = ('acid splash', 'ray of frost', 'light', 'friends',
'disguise self', 'identify', 'jump',
'blur', 'knock', 'shatter',
'blink', 'fly', 'slow',
'blight', 'ice storm',
'cone of cold', 'magic jar',
'teleport', 'maze', 'wish') # Todo: Learn some spells
# Which spells have not been prepared
__spells_unprepared = ()
# all spells known
spells = spells_prepared + __spells_unprepared
# Wild shapes for Druid
wild_shapes = () # Ex: ('ape', 'wolf', 'ankylosaurus')
# 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."""
Binary file not shown.
+111
View File
@@ -0,0 +1,111 @@
"""This file describes the heroic adventurer Wizard2.
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.9.4"
name = "Wizard2"
player_name = "Ben"
# Be sure to list Primary class first
classes = ['Wizard'] # ex: ['Wizard'] or ['Rogue', 'Fighter']
levels = [3] # ex: [10] or [3, 2]
subclasses = ["School of Conjuration"] # ex: ['Necromacy'] or ['Thief', None]
background = "Urban Bounty Hunter"
race = "Half-Orc"
alignment = "Neutral good"
xp = 0
hp_max = 16
inspiration = 0 # integer inspiration value
# Ability Scores
strength = 10
dexterity = 10
constitution = 13
intelligence = 13
wisdom = 14
charisma = 15
# Select what skills you're proficient with
# ex: skill_proficiencies = ('athletics', 'acrobatics', 'arcana')
skill_proficiencies = ('deception', 'history', 'insight', 'religion', 'intimidation')
# Any skills you have "expertise" (Bard/Rogue) in
skill_expertise = ()
# Named features / feats that aren't part of your classes, race, or background.
# Also include Eldritch Invocations and features you make multiple selection of
# (like Maneuvers for Fighter, Metamagic for Sorcerors, Trick Shots for
# Gunslinger, etc.)
# 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 = ()
# Weapons/other proficiencies not given by class/race/background
weapon_proficiencies = () # ex: ('shortsword', 'quarterstaff')
_proficiencies_text = () # ex: ("thieves' tools",)
# Proficiencies and languages
languages = """Common, Orc"""
# 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 = ('quarterstaff',) # Example: ('shortsword', 'longsword')
magic_items = () # Example: ('ring of protection',)
armor = "" # Eg "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 = ('acid splash', 'ray of frost', 'light', 'friends',
'disguise self', 'identify', 'jump',
'blur', 'knock',) # Todo: Learn some spells
# Which spells have not been prepared
__spells_unprepared = ()
# all spells known
spells = spells_prepared + __spells_unprepared
# Wild shapes for Druid
wild_shapes = () # Ex: ('ape', 'wolf', 'ankylosaurus')
# 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."""
Binary file not shown.