-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstatblock.html
176 lines (153 loc) · 5.39 KB
/
statblock.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
<!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>Bestiary - 5estuff</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="favicon.png">
</head>
<body>
<main class="container bodyContent">
<div class="row">
<div class="col-sm-6">
<img src="" alt="" id="token">
<table id="stats" class="monster">
<tr>
<th class="border" colspan="6"></th>
</tr>
<tr>
<th id="name" colspan="6">Name <span class="source" title="Source book">SRC</source></th>
</tr>
<tr>
<td id="sizetypealignment" colspan="6"><span id="size">Size</span> <span id="type">type</span>, <span id="alignment">alignment</span></td>
</tr>
<tr>
<td><span id='value'></span></td>
</tr>
<tr>
<td class="divider" colspan="6">
<div></div>
</td>
</tr>
<tr>
<td colspan="6"><strong>Armor Class</strong> <span id="ac">## (source)</span></td>
</tr>
<tr>
<td colspan="6"><strong>Hit Points</strong> <span id="hp">hp</span></td>
</tr>
<tr>
<td colspan="6"><strong>Speed</strong> <span id="speed">30 ft.</span></td>
</tr>
<tr>
<td class="divider" colspan="6">
<div></div>
</td>
</tr>
<tr id="abilitynames">
<th>STR </th>
<th>DEX </th>
<th>CON </th>
<th>INT </th>
<th>WIS </th>
<th>CHA </th>
</tr>
<tr id="abilityscores">
<td id="str"><span class="score">10</span> (<span class="mod">0</span>)</td>
<td id="dex"><span class="score">10</span> (<span class="mod">0</span>)</td>
<td id="con"><span class="score">10</span> (<span class="mod">0</span>)</td>
<td id="int"><span class="score">10</span> (<span class="mod">0</span>)</td>
<td id="wis"><span class="score">10</span> (<span class="mod">0</span>)</td>
<td id="cha"><span class="score">10</span> (<span class="mod">0</span>)</td>
</tr>
<tr>
<td class="divider" colspan="6">
<div></div>
</td>
</tr>
<tr>
<td colspan="6"><strong>Saving Throws</strong> <span id="saves">Str +0</span></td>
</tr>
<tr>
<td colspan="6"><strong>Skills</strong> <span id="skills">Perception +0</span></td>
</tr>
<tr>
<td colspan="6"><strong>Damage Vulnerabilities</strong> <span id="dmgvuln">fire</span></td>
</tr>
<tr>
<td colspan="6"><strong>Damage Resistances</strong> <span id="dmgres">cold</span></td>
</tr>
<tr>
<td colspan="6"><strong>Damage Immunities</strong> <span id="dmgimm">lightning</span></td>
</tr>
<tr>
<td colspan="6"><strong>Condition Immunities</strong> <span id="conimm">exhaustion</span></td>
</tr>
<tr>
<td colspan="6"><strong>Senses</strong> <span id="senses">darkvision 30 ft.</span> passive Perception <span id="pp">10</span></td>
</tr>
<tr>
<td colspan="6"><strong>Languages</strong> <span id="languages">Common</span></td>
</tr>
<tr>
<td colspan="6"><strong>Challenge</strong> <span id="cr">1</span> (<span id="xp">450</span> XP)</td>
</tr>
<tr id="traits">
<td class="divider" colspan="6">
<div></div>
</td>
</tr>
<tr class="trait">
<td colspan="6"><span class="name">Trait.</span> <span class="content">Content.</span></td>
</tr>
<tr id="actions">
<td colspan="6"><span>Actions</span></td>
</tr>
<tr class="action">
<td colspan="6"><span class="name">Action.</span> <span class="content">Content.</span></td>
</tr>
<tr id="reactions">
<td colspan="6"><span>Reactions</span></td>
</tr>
<tr class="reaction">
<td colspan="6"><span class="name">Reaction.</span> <span class="content">Content.</span></td>
</tr>
<tr id="legendaries">
<td colspan="6"><span>Legendary Actions</span></td>
</tr>
<tr class="legendary">
<td colspan="6"><span class="name">Action.</span> <span class="content">Content.</span></td>
</tr>
<tr>
<th class="border" colspan="6"></th>
</tr>
</table>
<div id="output"></div>
<br>
</div>
<div class="col-sm-6" id="monstercontainer">
<form id="filtertools" class="form-group" autocomplete="off">
</form>
<ul id="monsters" class="list" align="right" style="display:none">
</ul>
<hr>
</div>
</div>
</main>
<script type="text/javascript" src="js/page-statblock.js"></script>
<script type="text/javascript" src="data/bestiary.json"></script>
<script type="text/javascript" src="data/bestiary-tob.json"></script>
<script type="text/javascript" src="js/droll.js"></script>
<script type="text/javascript" src="js/list.js"></script>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
</body>
</html>