-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkal.typ
More file actions
121 lines (110 loc) · 2.43 KB
/
kal.typ
File metadata and controls
121 lines (110 loc) · 2.43 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#let title = (
name: "Kaladan Grrrmmballhyst",
class: "Warlock", // Pact of the Chain
level: 12,
race: "Dragonborn",
background: "Charlatan",
alignment: "Neutral Evil",
player: "Daniel",
experience: "",
)
// Base stats (10 = normal)
#let base_stats = (
strength: 10,
dexterity: 15,
constitution: 15,
intelligence: 8,
wisdom: 9,
charisma: 18,
)
// Proficiency (true/false) for Saving Throws
#let prof_save = (
strength: false,
dexterity: false,
constitution: false,
intelligence: false,
wisdom: true,
charisma: true,
)
// Proficiency (true/false) for Skills
#let prof_skill = (
acrobatics: false,
animal: false,
arcana: true,
athletics: false,
deception: true,
history: false,
insight: false,
intimidation: false,
investigation: true,
medicine: false,
nature: false,
perception: true,
performance: false,
persuasion: false,
religion: true,
sleight_of_hand: true,
stealth: false,
survival: false,
)
#let bonuses = (
// Proficiency bonus (e.g. 2 for +2)
proficiency: 4,
)
#let combat = (
// Center stat block
armor_class: 15, // Dragon Hide
initiative: 2,
speed: 30,
swim: 40,
movement_note: "breathe underwater",
hit_point_maximum: 89,
hit_point_temporary: 10, // daily
hit_dice: "9x(1d8+2)",
)
#let attacks = (
list: (
(name: "Dagger", attack_bonus: "+6", damage: "1d4+2 piercing"),
(name: "Claws", attack_bonus: "", damage: "1d4 slashing"),
),
extra: [
Number of Attacks: 1
- *Breath Weapon* Poison, 15ft cone: 3d6 poison damage (DC16 CON save) OR frighten
- *Wand of Fear* 7 charges, DC15 WIS 1. flee or grovel (command spell) OR 2. cone
of fear (60ft cone) 1 min. Each day regain (1d6+1) charges
],
)
#let money = (gold: 107)
#let equipment = [
- Armor of Resistance (Force), studded
- Backpack
- Bag of Sand
- Book
- Crystal
- Disguise Kit
- Forgery Kit
- Ink
- Ink pen
- Knife, small
- Parchment x10
- Rope, silk
- signal whistle
- Kobald spellbook
- Creepy Ring (Rolf)
- "necklace" for Pain
- antitoxin, poison
- hand mirror, landscape
]
#let backstory = [
Brass Metallic Dragon born
Familiar is a shiny black Cobra that wraps around his shoulders like grotesque
jewelry: *"Pain"*
]
#let spell = (
// which of `base_stats` to use for spellcasting ability modifier
save_dc_ability: "charisma",
slots: (
(label: "5th Level", count: 3),
(label: "Tentacles (per long rest)", count: 1),
),
)