-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathitem-statblock.html
78 lines (66 loc) · 2.21 KB
/
item-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
<!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>Items - 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">
<table id="stats">
<tr>
<th class="border" colspan="6"></th>
</tr>
<tr>
<th id="name" colspan="6">Name</th>
</tr>
<tr>
<td id="typerarityattunement" colspan="6"><span id="type">Type</span><span id="rarity">, rarity</span> <span id="attunement">(requires attunement)</span></td>
</tr>
<tr>
<td id="valueweight" colspan="2"><span id="value">10gp</span> <span id="weight">45 lbs.</span></td>
<td id="damageproperties" colspan="4" style="text-align: right;"><span id="damage">Damage</span> <span id="damagetype">type</span> <span id="properties">(versatile)</span></td>
</tr>
<tr id="text">
<td class="divider" colspan="6">
<div></div>
</td>
</tr>
<tr>
<td colspan="6" id="source">Source: <span>Source</span></td>
</tr>
<tr>
<th class="border" colspan="6"></th>
</tr>
</table>
</div>
<div class="col-sm-6" id="itemcontainer">
<ul class="list mundane" style='display:none;'>
</ul>
<ul class="list magic" style='display:none;'>
</ul>
</div>
</div>
</main>
<footer class="container">
</footer>
<!-- <script type="text/javascript" src="js/page-items.js"></script> -->
<script type="text/javascript" src="js/page-items.js"></script>
<script type="text/javascript" src="data/items.json"></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>