-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclasses.html
336 lines (317 loc) · 10.8 KB
/
classes.html
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--
XML data was compiled by a reddit community for use with the "Fight Club 5" app.
Google "5e xml files" for more info.
Feel free to use, edit, and redistribute this as you wish.
I don't own any of the XML data anyway.
-->
<title>Classes - 5etools</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="favicon.png">
<script type="text/javascript" src="lib/js-cookie.js"></script>
<style id="dynamicStyle"></style> <!-- populated with JS -->
<script type="text/javascript" src="js/styleswitch.js"></script>
<style>
table#stats > tbody > tr > td {
padding: 0 0.8em;
}
table#stats span.spell-ability {
display: block;
text-align: center;
}
table#stats span.spell-ability span {
font-weight: bold;
}
</style>
</head>
<body>
<header class="hidden-xs hidden-sm">
<div class="container">
<h1>Class List</h1>
<p>Search by name on the left, click class name to display on the right.</p>
</div>
</header>
<nav class="container">
<ul class="nav nav-pills ">
<li role="presentation"><a href="5etools.html">5eTools</a></li>
<li role="presentation"><a href="rules.html">Rules</a></li>
<li role="presentation" class="dropdown active">
<a class="dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Player Options <span class="caret"></span></a>
<ul class="dropdown-menu">
<li role="presentation" class="active"><a href="classes.html">Classes</a></li>
<li role="presentation"><a href="backgrounds.html">Backgrounds</a></li>
<li role="presentation"><a href="feats.html">Feats</a></li>
<li role="presentation"><a href="races.html">Races</a></li>
</ul>
</li>
<li role="presentation" class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">DM Tools <span class="caret"></span></a>
<ul class="dropdown-menu">
<li role="presentation"><a href="crcalculator.html">CR Calculator</a></li>
<li role="presentation"><a href="http://kobold.club" target="_blank" title="I could literally never build something better than Kobold Fight Club">Encounter Builder</a></li>
<li role="presentation"><a href="encountergen.html">Encounter Generator</a></li>
<li role="presentation"><a href="lootgen.html">Loot Generator</a></li>
</ul>
</li>
<li role="presentation" class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">References <span class="caret"></span></a>
<ul class="dropdown-menu">
<li role="presentation"><a href="bestiary.html">Bestiary</a></li>
<li role="presentation"><a href="conditions.html">Conditions</a></li>
<li role="presentation"><a href="cults.html">Cults</a></li>
<li role="presentation"><a href="items.html">Items</a></li>
<li role="presentation"><a href="rewards.html">Other Rewards</a></li>
<li role="presentation"><a href="psionics.html">Psionics</a></li>
<li role="presentation"><a href="spells.html">Spells</a></li>
<li role="presentation"><a href="variantrules.html">Variant Rules</a></li>
</ul>
</li>
<li role="presentation"><a href="statgen.html">Statgen</a></li>
<li role="presentation" class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false">Utilities<span class="caret"></span></a>
<ul class="dropdown-menu">
<li role="presentation"><a href="converter.html">Stat Block to JSON</a></li>
<li role="presentation"><a href="editor.html">WYSIWYG Editor</a></li>
</ul>
</li>
<li role="presentation">
<a class="nightModeToggle" href="#" onclick="styleSwitcher.toggleActiveStyleSheet(); return false;"><script>document.write(styleSwitcher.getActiveStyleSheet() === StyleSwitcher.STYLE_DAY ? "Night Mode" : "Day Mode")</script></a>
</li>
</ul>
</nav>
<main class="container bodyContent classes">
<div class="row">
<div class="col-sm-3" id="listcontainer">
<div class="input-group" id="filter-search-input-group">
<input type="search" id="search" class="search form-control" placeholder="Find class...">
<span class="input-group-btn">
<button class="btn btn-default" type="button" id="reset">Reset</button>
</span>
</div>
<div id="filtertools" class="sortlabel btn-group">
<button class="col-xs-8 sort btn btn-default btn-xs" type="button" data-sort="name">Name</button>
<button class="col-xs-4 sort btn btn-default btn-xs" type="button" data-sort="source">Source</button>
</div>
<ul class="list classes">
</ul>
</div>
<div class="col-sm-9" id="classtable">
<table>
<tr>
<th class="border" colspan="15"></th>
</tr>
<tr>
<th id="nameTable" colspan="15">Name</th>
</tr>
<tr id="groupHeaders">
<th colspan="3"></th> <!-- spacer to match the 3 default cols (level, prof, features) -->
</tr>
<tr id="colHeaders">
<th class="level">Level</th>
<th class="pb">Proficiency Bonus</th>
<th class="features">Features</th>
</tr>
<tr id="level1">
<td class="level">1st</td>
<td class="pb">+2</td>
<td class="features"></td>
</tr>
<tr id="level2">
<td class="level">2nd</td>
<td class="pb">+2</td>
<td class="features"></td>
</tr>
<tr id="level3">
<td class="level">3rd</td>
<td class="pb">+2</td>
<td class="features"></td>
</tr>
<tr id="level4">
<td class="level">4th</td>
<td class="pb">+2</td>
<td class="features"></td>
</tr>
<tr id="level5">
<td class="level">5th</td>
<td class="pb">+3</td>
<td class="features"></td>
</tr>
<tr id="level6">
<td class="level">6th</td>
<td class="pb">+3</td>
<td class="features"></td>
</tr>
<tr id="level7">
<td class="level">7th</td>
<td class="pb">+3</td>
<td class="features"></td>
</tr>
<tr id="level8">
<td class="level">8th</td>
<td class="pb">+3</td>
<td class="features"></td>
</tr>
<tr id="level9">
<td class="level">9th</td>
<td class="pb">+4</td>
<td class="features"></td>
</tr>
<tr id="level10">
<td class="level">10th</td>
<td class="pb">+4</td>
<td class="features"></td>
</tr>
<tr id="level11">
<td class="level">11th</td>
<td class="pb">+4</td>
<td class="features"></td>
</tr>
<tr id="level12">
<td class="level">12th</td>
<td class="pb">+4</td>
<td class="features"></td>
</tr>
<tr id="level13">
<td class="level">13th</td>
<td class="pb">+5</td>
<td class="features"></td>
</tr>
<tr id="level14">
<td class="level">14th</td>
<td class="pb">+5</td>
<td class="features"></td>
</tr>
<tr id="level15">
<td class="level">15th</td>
<td class="pb">+5</td>
<td class="features"></td>
</tr>
<tr id="level16">
<td class="level">16th</td>
<td class="pb">+5</td>
<td class="features"></td>
</tr>
<tr id="level17">
<td class="level">17th</td>
<td class="pb">+6</td>
<td class="features"></td>
</tr>
<tr id="level18">
<td class="level">18th</td>
<td class="pb">+6</td>
<td class="features"></td>
</tr>
<tr id="level19">
<td class="level">19th</td>
<td class="pb">+6</td>
<td class="features"></td>
</tr>
<tr id="level20">
<td class="level">20th</td>
<td class="pb">+6</td>
<td class="features"></td>
</tr>
<tr>
<th class="border" colspan="15"></th>
</tr>
</table>
</div>
</div>
<hr>
<div class="row">
<div class="col-md-3">
<table id="statsprof" class="stats">
<tr>
<th class="border" colspan="6"></th>
</tr>
<tr>
<th id="nameSummary" colspan="6">Name</th>
</tr>
<tr>
<td class="divider" colspan="6">
<div></div>
</td>
</tr>
<tr>
<td id="hp" colspan="6">
<h5>Hit Points</h5>
<div id="hitdice">
<strong>Hit Dice:</strong>
<span> </span>
</div>
<div id="hp1stlevel">
<strong>Hit Points at 1st Level:</strong>
<span> </span>
</div>
<div id="hphigherlevels">
<strong>Hit Points at Higher Levels:</strong>
<span> </span>
</div>
</td>
</tr>
<tr>
<td id="prof" colspan="6">
<h5>Proficiencies</h5>
<span>You are proficient with the following items, in addition to any proficiencies provided by your race or background.</span>
<div id="armor">
<strong>Armor:</strong>
<span> </span>
</div>
<div id="weapons">
<strong>Weapons:</strong>
<span> </span>
</div>
<div id="tools">
<strong>Tools:</strong>
<span> </span>
</div>
<div id="saves">
<strong>Saving Throws:</strong>
<span> </span>
</div>
<div id="skills">
<strong>Skills:</strong>
<span> </span>
</div>
</td>
</tr>
<tr>
<td id="equipment" colspan="6">
<h5>Starting Equipment</h5>
<div></div>
</td>
</tr>
<tr>
<th class="border" colspan="6"></th>
</tr>
</table>
</div>
<div class="col-md-9">
<div id="subclasses"></div>
<table id="stats" class="stats">
<tr id="ftTopBorder"><th class="border" colspan="6"></th></tr>
<!-- populate with JS -->
<tr style="height: 10px;"></tr> <!-- high quality layout code-->
<tr><th class="border" colspan="6"></th></tr>
</table>
</div>
</div>
</main>
<footer class="container">
</footer>
<script type="text/javascript" src="js/utils.js"></script>
<script type="text/javascript" src="js/entryrender.js"></script>
<script type="text/javascript" src="js/history.js"></script>
<script type="text/javascript" src="js/classes.js"></script>
<script type="text/javascript" src="lib/droll.js"></script>
<script type="text/javascript" src="lib/list.js"></script>
<script type="text/javascript" src="lib/jquery.js"></script>
<script type="text/javascript" src="lib/bootstrap.js"></script>
</body>
</html>