forked from fmunoz-geo/WebGenWFRP4Ed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (47 loc) · 1.71 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<link rel="stylesheet" type="text/css" href="minireset.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="code.js"></script>
<head>
<title>WFRP 4th Edition Random Character Generator</title>
</head>
<body>
<div id="generate">
<h1>WFRP 4th Edition Random Character Generator</h1>
<div id="menu_bar">
<button type="button" onclick="generateChar(1)">Human!</button>
<button type="button" onclick="generateChar(2)">Dwarf!</button>
<button type="button" onclick="generateChar(3)">Halfling!</button>
<button type="button" onclick="generateChar(4)">Hight Elf!</button>
<button type="button" onclick="generateChar(5)">Wood Elf!</button>
<div id="options">
Reroll Stats: <input type="checkbox" id="reRollCheck">
Reroll Career: <input type="checkbox" id="careerCheck">
Simple Choices: <input type="checkbox" id="choiceCheck">
</div>
</div>
</div>
<div id="stat_block">
<div id="stat_header">
<span id="nameB"></span>,
<span id="speciesB"></span>
</div>
<span id="careerB"></span>
<span id="xpB">0/0</span>
<span id="statsB"></span>
<span id="fateresilienceB"></span>
<div id="skill_header">Skills</div>
<span id="skillsB"></span>
<div id="skill_header">Talents</div>
<p id="talentsB"></p>
<div id="skill_header">Trappings</div>
<p id="trappingsB"></p>
</div>
<p id="Acknowledgements">Code: Francisco Muñoz 2018
<br>Skill advance selection and misc data: Jay Alexander Hafner 2018
<br>Skill description: Ryan Graham 2018
<br>Styling & Misc: @GabrielZorrilla 2019
<br>Game: Games Worshop and Cubicle 7</p>
</body>
</html>