-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex_build.html
109 lines (109 loc) · 4.76 KB
/
index_build.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=990">
<title>Dwarfs: There and Back Again</title>
<link rel="stylesheet" href="./app.css">
<link rel="manifest" href="./manifest.json">
<link rel="shortcut icon" href="./icon.png">
</head>
<body>
<div class="obj" id="title">
<h1>We have <b id="dwarf-count">1</b>
dwarf<b id="dwarf-plural">s</b><span id="gold-title">
and <b id="gold-count">0</b> gold</span>.</h1>
</div>
<div class="obj" id="fortress">
<canvas id="can-fortress"></canvas>
</div>
<div class="obj" id="forest">
<canvas id="can-forest"></canvas>
</div>
<div class="obj" id="treasure">
<canvas id="can-treasure"></canvas>
</div>
<div class="controls">
<div class="obj" id="adventure">
<a id="btn-adventure" href="#">Send on Adventure</a>
</div>
<div class="obj" id="draft">
<a id="btn-draft" href="#" disabled>Draft Another Dwarf<br>
(<b id="dwarf-cost">1</b> gold)</a>
</div>
<div class="obj" id="covfefe">
<a id="btn-covfefe" href="#" disabled>Hot Coffee<br>
(+20% dwarf speed, 10 gold)</a>
</div>
<div class="obj" id="autorun">
<a id="btn-autorun" href="#" disabled>Automated Adventuring<br>
(20 gold)</a>
</div>
<div class="obj" id="fasta">
<a id="btn-fasta" href="#" disabled>Red Goes Fasta!<br>
(+10% dwarf speed, 25 gold)</a>
</div>
<div class="obj" id="illuminate">
<a id="btn-illuminate" href="#" disabled>Illuminate The Forest<br>
(+30% forest speed, 25 gold)</a>
</div>
<div class="obj" id="turborun">
<a id="btn-turborun" href="#" disabled>Turbo Button<br>
(2x automation speed, 30 gold)</a>
</div>
<div class="obj" id="speedrun">
<a id="btn-speedrun" href="#" disabled>Intel Core i9<br>
(2x automation speed, 40 gold)</a>
</div>
<div class="obj" id="orbital">
<a id="btn-orbital" href="#">Make Dwarfs<br>Work Again</a>
</div>
<div class="obj" id="develop">
<a id="btn-develop" href="#" disabled>Develop The Wasteland<br>
(+30% wasteland speed, 20 gold)</a>
</div>
<div class="obj" id="develop2">
<a id="btn-develop2" href="#" disabled>Industrial Revolution<br>
(2x carry weight, 25 gold)</a>
</div>
<div class="obj" id="genetic">
<a id="btn-genetic" href="#" disabled>Genetic Modification<br>
(+50% carry weight, 30 gold)</a>
</div>
<div class="obj" id="portal">
<a id="btn-portal" href="#" disabled>Thinking With Portals<br>
(science, 60 gold)</a>
</div>
<div class="obj" id="delorean">
<a id="btn-delorean" href="#" disabled>Build a Time Machine<br>
(science, 90 gold)</a>
</div>
<div class="obj" id="back">
<a id="btn-back" href="#">Go Back in Time<br>
(and fix history)</a>
</div>
</div>
<div id="fullscreen">
<div class="obj" id="kegs">
<div class="textbox">
<p>Dwarfs have found an unimaginable amount of ale in the forest!</p>
<p>One hundred kegs of ale opened and one thousand toasts lifted to the great deeds of heroic
warriors!</p>
<p>All work has ceased.</p>
<a id="btn-continue" href="#">continue</a>
</div>
</div>
<div class="obj" id="nuke">
<div class="textbox">
<p>It is with a heavy heart that you call in an orbital strike on the dwarfs' position.</p>
<p>An unmanned weapons platform in the low orbit comes to life, its servos whirring softly as the
cannons lock on.</p>
<p>Burning spears of light fall towards the forest below. High-explosive shells find their targets
in a deadly gale of blazing destruction.</p>
<a id="btn-continue2" href="#">continue</a>
</div>
</div>
</div>
<script src="./app.js"></script>
</body>
</html>