-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (77 loc) · 2.49 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dig: Deep Descent</title>
<link rel="stylesheet" href="style.css">
<script type="module" src="js/main.js"></script>
</head>
<body>
<div class="container">
<div class="column left">
<img src="logo.webp">
<h6>version 0.2.1</h6>
<h3>Controls</h3>
<table>
<tr>
<td>Move + Dig</td>
<td>WASD, arrow keys</td>
</tr>
<tr>
<td>Dig Down / Descend</td>
<td>C</td>
</tr>
<tr>
<td>Dig Up / Ascend</td>
<td><space></td>
</tr>
<tr>
<td>Scan Minerals</td>
<td>Q</td>
</tr>
</table>
<h3>Recommended background music</h3>
<p><ul><li><a href="https://www.youtube.com/watch?v=EtADp4pZU2s">ALPHA 2: Space station mining facility</a></li></ul></p>
<h3>System Requirements</h3>
<ul>
<li>Desktop or laptop web browser</li>
<li>1680x945 resolution or higher</li>
<li>4K and above monitor users: increase browser zoom to 150-200% (<ctrl>++ 3-5 times)</li>
</ul>
</div>
<div class="column center">
<div id="gameOverScreen" class="hidden">
<h1>GAME OVER</h1>
<p id="gameOverReason">reason text</p>
</div>
<canvas id="gameCanvas"></canvas>
</div>
<div class="column right">
<h3>Ship Data</h3>
<table>
<tr>
<td>Depth</td>
<td id="depthStat"></td>
</tr>
<tr>
<td>Battery</td>
<td id="batteryStat"></td>
</tr>
<tr>
<td>Drill Power</td>
<td id="drillPowerStat"></td>
</tr>
<tr>
<td>Storage Space</td>
<td id="storageSpaceStat"></td>
</tr>
</table>
<h3>Minerals</h3>
<table id="mineralsTable">
</table>
<h3>Orbital Shop</h3>
</div>
</div>
</body>
</html>