-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
138 lines (137 loc) · 5.95 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
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
<!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="stylesheets/app.css">
<link rel="manifest" href="manifest.json">
<link rel="shortcut icon" href="icon.png">
</head>
<body>
<!--<section id="Page1" class="menu">
<h1 class="title"><b>Dwarfs:</b> There and Back Again</h1>
<div class="controls">
<div class="objmenu">
<a class="menuitem" href="#" onclick="return show('Page2','Page1');">Play</a>
</div>
<div class="objmenu">
<a class="menuitem" id="about">About</a>
</div>
<div class="objmenu">
<a class="menuitem" id="quit-game">Quit</a>
</div>
</div>
<section id="Page2" class="game"> -->
<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
(<b id="dwarf-cost">1</b> gold)</a>
</div>
<div class="obj" id="covfefe">
<a id="btn-covfefe" href="#" disabled>Hot Coffee
(+20% dwarf speed, 10 gold)</a>
</div>
<div class="obj" id="autorun">
<a id="btn-autorun" href="#" disabled>Automated Adventuring
(20 gold)</a>
</div>
<div class="obj" id="fasta">
<a id="btn-fasta" href="#" disabled>Red Goes Fasta!
(+10% dwarf speed, 25 gold)</a>
</div>
<div class="obj" id="illuminate">
<a id="btn-illuminate" href="#" disabled>Illuminate The Forest
(+30% forest speed, 25 gold)</a>
</div>
<div class="obj" id="turborun">
<a id="btn-turborun" href="#" disabled>Turbo Button
(2x automation speed, 30 gold)</a>
</div>
<div class="obj" id="speedrun">
<a id="btn-speedrun" href="#" disabled>Intel Core i9
(2x automation speed, 40 gold)</a>
</div>
<div class="obj" id="orbital">
<a id="btn-orbital" href="#">Make DwarfsWork Again</a>
</div>
<div class="obj" id="develop">
<a id="btn-develop" href="#" disabled>Develop The Wasteland
(+30% wasteland speed, 20 gold)</a>
</div>
<div class="obj" id="develop2">
<a id="btn-develop2" href="#" disabled>Industrial Revolution
(2x carry weight, 25 gold)</a>
</div>
<div class="obj" id="genetic">
<a id="btn-genetic" href="#" disabled>Genetic Modification
(+50% carry weight, 30 gold)</a>
</div>
<div class="obj" id="portal">
<a id="btn-portal" href="#" disabled>Thinking With Portals
(science, 60 gold)</a>
</div>
<div class="obj" id="delorean">
<a id="btn-delorean" href="#" disabled>Build a Time Machine
(science, 90 gold)</a>
</div>
<div class="obj" id="back">
<a id="btn-back" href="#">Go Back in Time
(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>
</section>
<script src="javascript/reverbgen.js"></script>
<script src="javascript/audio.js"></script>
<script src="javascript/oborona.js"></script>
<script src="javascript/setup.js"></script>
<script src="javascript/font.js"></script>
<script src="javascript/cleartype.js"></script>
<script src="javascript/canvas.js"></script>
<script src="javascript/dwarfs.js"></script>
<script src="javascript/gold.js"></script>
<script src="javascript/zones.js"></script>
<script src="javascript/mainloop.js"></script>
<script src="javascript/app.js"></script>
<script src="javascript/actions.js"></script>
<script src="javascript/pages.js"></script>
</body>
</html>