-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (51 loc) · 1.25 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
<!doctype html>
<html>
<head>
<meta charset='utf-8'>
<title></title>
<link href='css/main.css' rel='stylesheet'>
<script src='js/3rd/underscore-min.js'></script>
<script src='js/3rd/phaser.js'></script>
<script src='js/3rd/screenshake.js'></script>
<script src='js/command.js'></script>
<script src='js/input.js'></script>
<script src='js/indicator.js'></script>
<script src='js/advice.js'></script>
<script src='js/main.js'></script>
<script src='js/states/preload.js'></script>
<script src='js/states/game.js'></script>
</head>
<body onload='init()'>
<div id='wrapper'>
<p>Wabulabudupdup!</p>
<div id='game' class='over'></div>
<div id='advice' class='over bit folded'>
This is a bad advice for y'all.
</div>
<div id='cutscene' class='over bit'>
<pre></pre>
</div>
<div id='help' class='over bit folded'>
<pre>Type these commands
to control the robot.
• jump • turn
• run • stop
• up • down
• help
Commands appear in the
bottom line as you type.
`down` and `up` should
be executed beforehand.
Use Enter or Spacebar
to execute.
Use ↑ and ↓ to access
command history.
Your task is to reach
the blue Sphere of Hope.
Any command will close
this note.
</pre>
</div>
</div>
</body>
</html>