forked from ariestae/5etools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlootgen.html
78 lines (71 loc) · 2.62 KB
/
lootgen.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>
<!--5ETOOLS_VERSION-->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Lootgen - 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>
<script type="text/javascript" src="js/styleswitch.js"></script>
<script type="text/javascript" src="js/navigation.js"></script>
</head>
<body>
<header class="hidden-xs hidden-sm">
<div class="container">
<h1>Loot Gen</h1>
<p>Choose Challenge Rating, if it's a hoard or not, then Roll Loot!</p>
</div>
</header>
<nav class="container" id="navigation">
<ul class="nav nav-pills" id="navbar">
</ul>
</nav>
<main class="container bodyContent">
<div class="row">
<div class="col-sm-5">
<form id="controls">
<div class="input-group">
<span class="input-group-addon">Challenge Rating</span>
<select class="form-control" id="cr">
<option value="0" selected>0-4</option>
<option value="5">5-10</option>
<option value="11">11-16</option>
<option value="17">17+</option>
</select>
<span class="input-group-addon" style="vertical-align: bottom;"><label for="hoard">Hoard? <input
type="checkbox" id="hoard" value="0" style="vertical-align: bottom;"></label></span>
</div>
<br>
<button type="button" class="col-xs-9 btn btn-default" id="genloot">Roll Loot!</button>
<button type="button" class="col-xs-2 col-xs-2-9 btn btn-default pull-right" id="clear">Clear</button>
<p>
<small>Based on the tables and rules in the <em>Dungeon Master's Guide</em>, pages 133-149.</small>
</p>
</form>
<select class="form-control" id="table-sel">
<option value="" disabled selected>View individual tables...</option>
</select>
<div id="classtable"></div>
</div>
<div class="col-sm-7">
<h4>Loot</h4>
<div id="lootoutput"></div>
</div>
</div>
</main>
<footer class="container">
</footer> <!--5ETOOLS_SCRIPT_ANCHOR-->
<script type="text/javascript" src="js/utils.js"></script>
<script type="text/javascript" src="js/omnisearch.js"></script>
<script type="text/javascript" src="js/entryrender.js"></script>
<script type="text/javascript" src="js/lootgen.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>
<script type="text/javascript" src="lib/elasticlunr.js"></script>
</body>
</html>