blob: b5e3a7bb3e003b522b99932076ada96e24d757b8 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>LCOLONQ CHARACTER BUILDING EXERCISE</title>
<link rel="icon" href="./assets/mrgreen.png">
<link rel="stylesheet" type="text/css" href="./assets/charsheet/charsheet.css">
<script type="module">
CONFIG_SUBST
globalThis.mode = "charsheet";
</script>
<script type="module" src="./assets/charsheet/gl-matrix-min.js"></script>
<script type="module" src="./assets/charsheet/charsheet.js"></script>
<script type="module">
document.addEventListener("DOMContentLoaded", globalThis.mainSecure);
</script>
</head>
<body>
<script>0</script>
<div id="edit-scrollable">
<div id="edit-talentarea">
</div>
<div id="error" class="invisible">
<div id="error-message">
an error occured
</div>
</div>
<div id="edit-contents">
<div id="name" class="edit-panel">
<h1>player unknown</h1>
<span id="edit-mode">edit mode</span>
<button id="talent-reset">reset talents</button>
</div>
<div id="edit-infobox">
<div class="infobox-title">Table 3: Statistical Summary</div>
<table>
<tr><td>total points</td><td id="info-talentpoints">N/A</td></tr>
<tr><td>unallocated</td><td id="info-unallocated">N/A</td></tr>
</table>
</div>
<div id="edit-selected-tooltip-box" data-skipfade="true">
<div id="edit-selected-tooltip-name" class="infobox-title">empty</div>
<table>
<tr><td>allocated</td><td id="edit-selected-tooltip-allocated">N/A</td></tr>
</table>
<button id="edit-selected-tooltip-buy">buy now</button>
<div id="edit-selected-tooltip">empty</div>
</div>
</div>
</div>
</body>
</html>
|