-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathio.py
More file actions
71 lines (58 loc) · 1.97 KB
/
Copy pathio.py
File metadata and controls
71 lines (58 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
dungeonsheets_version = "0.5.0"
name = 'Io Desolata'
character_class = 'Warlock'
player_name = 'Mark'
background = "Criminal"
race = "Tiefling"
level = 1
alignment = "Neutral evil"
xp = 0
hp_max = 9
# Ability Scores
strength = 10
dexterity = 10
constitution = 13
intelligence = 12
wisdom = 11
charisma = 15
skill_proficiencies = [
# All lower case, underscores for spaces
'deception', 'sleight_of_hand',
]
# Proficiencies and languages
languages = "Common, infernal."
# Inventory
cp = 0
sp = 0
ep = 0
gp = 15
pp = 0
weapons = ('light crossbow', 'quarterstaff', 'dagger')
equipment = ("""Dark orb (Arcane focus), Book of lore ink pen, little bag of sand,
Bolts (20), set of weighted dice, belt pouch Backpack, bottle of ink,
10 sheets of parchment, small knife, a set of dark clothes, crowbar""")
# List of known spells
spells = ('thaumaturgy', 'eldritch blast', 'poison spray',
'armor of agathys', 'burning hands')
# Which spells have been prepared (not including cantrips)
spells_prepared = ()
# Backstory
personality_traits = """"""
ideals = """"""
bonds = """"""
flaws = """"""
features_and_traits = (
"""**Darkvision** Thanks to your infernal heritage, you have superior
vision in dark and dim conditions. You can see in dim light within
60 feet of you as if it were bright 1ight, and in darkness as if
it were dim light. You can’t dis- cern color in darkness, only
shades of gray.
**Hellish Resistance** You have resistance to fire damage.
**Infernal Legacey** You know the thaumatuqJy cantrip. Once you
reach 3rd level, you can cast the hellish rebuke spell once per
day as a 2nd-levei spell. Once you reach 5th level, you can also
cast the darkness spell once per day. Charisma is your
spellcasting ability for these spells.
**Dark One’s Blessing (The Fiend)** When you reduce a hostile
creature to O hit-points, you gain temporary hit points equal to
your Charisma modifier + your warlock level (minimum of 1).""")