-
Notifications
You must be signed in to change notification settings - Fork 0
/
charSheet.html
150 lines (119 loc) · 4.32 KB
/
charSheet.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- <link rel="stylesheet" href="assets/stylesheets/reset.css">
-->
<link rel="stylesheet" href="./styles/main.css">
<!-- <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"/> -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="./generator/makeCharacter.js"></script>
<!--<script src="./generator/lookupTables.js"></script>-->
<script src="./tables/lookupTables.js"></script>
<script src="./generator/generator_HomePage.js"></script>
<title>Character Sheet 0.01</title>
</head>
<body>
<div class="fluid-container">
<p class="makeBig text-primary">
Crude version, writes to browser console only (press f12 in chrome to view)
</p>
<br><br>
<p class="makeBig text-primary">
If Console clears automatically, open console settings: check "preserve log"
</p>
<p class="text-primary">
There is no way to print this out. You have to copy by hand as the Deities and Demigods intended!
</p>
<form>
<br><br>
<button class="btn" id="save">Display Stats in Console</button>
<br><br>
<div class="row">
<input class="col-xs-3" type="text" id="firstName" size="20" placeholder="First Name" value="FirstName">
<input class="col-xs-3" type="text" id="familyName" size="20" placeholder="Family Name" value="FamilyName">
</div>
<br><br>
<div class="row">
<label><input class="col-xs-6" type="radio" name="gender" value="male" checked>Male</label>
<label><input class="col-xs-6" type="radio" name="gender" value="female">Female</label>
</div>
<div class="row">
<label>Character Race</label>
<div id="DropDown-Race"></div>
<br>
<label>Character Class</label>
<div id="DropDown-Class"></div>
</div>
<div class="row">
<label>
Age -
<input type="text" id="age" size="8" placeholder="age in years" value="31">
</label>
</div>
<div class="row">
<label>Character Alignment</label>
<div id="DropDown-Alignment"></div>
</div>
<div class="row">
<label>
Strength
</label>
<div id="statSelectStrength"></div>
<br>
<label>
Exceptional Strength for Fighters
</label>
</div>
<div class="row">
<div class="exceptionalStrengthDropdown " id="statSelectExcStrengthTensPlace"></div>
<div class="exceptionalStrengthDropdown 3" id="statSelectExcStrengthOnesPlace"></div>
</div>
<div class = "row">
<label>
Dexterity
</label>
<div id="statSelectDexterity"></div>
</div>
<div class = "row">
<label>
Constitution
</label>
<div id="statSelectConstitution"></div>
</div>
<div class = "row">
<label>
Intelligence
</label>
<div id="statSelectIntelligence"></div>
</div>
<div class = "row">
<label>
Wisdom
</label>
<div id="statSelectWisdom"></div>
</div>
<div class = "row">
<label>
Charisma
</label>
<div id="statSelectCharisma"></div>
</div>
<div class = "row">
<label>
Comeliness
</label>
<div id="statSelectComeliness"></div>
</div>
<br>
<p class="makeBig text-primary">
Now review everything and make sure it's all correct, then press the button at the top.
</p>
<p class="makeBig text-primary">
Remember to open your console by pressing f12 and clicking on the Console tab.
</p>
</form>
</div>
</body>
</html>