-
Notifications
You must be signed in to change notification settings - Fork 0
/
monsters.json
145 lines (145 loc) · 3.38 KB
/
monsters.json
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"monsters": [
{
"name": "Kobold, Orrob",
"CR": 1,
"stat_block": {
"AC": 12,
"HP": 5,
"Speed": 30,
"STR": 7,
"DEX": 15,
"CON": 9,
"INT": 8,
"WIS": 7,
"CHA": 8
},
"description": "Orrob is a tricky Kobold with a knack for setting traps.",
"defeat_methods": [
"Perception",
"Investigation",
"Stealth",
"Acrobatics",
"Insight",
"Survival",
"Nature",
"History",
"Athletics",
"Intimidation",
"Arcana",
"Performance",
"Religion",
"Deception",
"Persuasion"
],
"catchphrase": "You'll never see me coming!",
"weapon": "Dagger"
},
{
"name": "Goblin, Grak",
"CR": 2,
"stat_block": {
"AC": 15,
"HP": 7,
"Speed": 30,
"STR": 8,
"DEX": 14,
"CON": 10,
"INT": 10,
"WIS": 8,
"CHA": 8
},
"description": "Grak is a cunning Goblin, skilled at ambushes.",
"defeat_methods": [
"Perception",
"Investigation",
"Stealth",
"Acrobatics",
"Survival",
"Nature",
"Athletics",
"Intimidation",
"Deception",
"Persuasion"
],
"catchphrase": "Your treasure or your life!",
"weapon": "Shortsword"
},
{
"name": "Orc, Throg",
"CR": 3,
"stat_block": {
"AC": 13,
"HP": 15,
"Speed": 30,
"STR": 16,
"DEX": 12,
"CON": 16,
"INT": 7,
"WIS": 11,
"CHA": 10
},
"description": "Throg is a powerful Orc Warrior, always ready to charge into battle.",
"defeat_methods": ["Athletics", "Acrobatics", "Stealth", "Nature", "Intimidation", "Persuasion"],
"catchphrase": "For the glory of Gruumsh!",
"weapon": "Greataxe"
},
{
"name": "Ghoul, Morgh",
"CR": 4,
"stat_block": {
"AC": 12,
"HP": 22,
"Speed": 30,
"STR": 13,
"DEX": 15,
"CON": 10,
"INT": 7,
"WIS": 10,
"CHA": 6
},
"description": "Morgh, a terrifying Ghoul, stalks its prey in the darkness.",
"defeat_methods": ["Religion", "Arcana", "Survival", "Perception"],
"catchphrase": "Your flesh is mine...",
"weapon": "Bite"
},
{
"name": "Troll, Rorg",
"CR": 5,
"stat_block": {
"AC": 15,
"HP": 84,
"Speed": 30,
"STR": 18,
"DEX": 13,
"CON": 20,
"INT": 7,
"WIS": 9,
"CHA": 7
},
"description": "Rorg the Troll regenerates its wounds and strikes fear with its formidable size.",
"defeat_methods": ["Nature", "Acrobatics", "Arcana"],
"catchphrase": "You can't kill what doesn't die!",
"weapon": "Claws"
},
{
"name": "Dragon, Zephyros",
"CR": 6,
"stat_block": {
"AC": 18,
"HP": 152,
"Speed": 40,
"STR": 23,
"DEX": 10,
"CON": 21,
"INT": 14,
"WIS": 11,
"CHA": 17
},
"description": "Zephyros, a Young Bronze Dragon, commands storms and wields lightning against its foes.",
"defeat_methods": ["Arcana", "Persuasion"],
"catchphrase": "Feel the fury of the storm!",
"weapon": "Lightning Breath"
}
]
}