-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.13 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
<html>
<head>
<title>Andy's Islands</title>
<style type=text/css>
body{
background:#000;
color:#222;
margin:1em 0 2em 6em;
padding:0;
}
#gjs-loader {
width: 50%;
height: 50%;
}
</style>
<script src="./javascript/skeleton/yabble.js"></script>
<script src="./javascript/skeleton/gamejs-wrapped.js"></script>
<script>
require.setModuleRoot('./javascript/');
require.run('main')
</script>
</head>
<body>
<div>
<img id="gjs-loader" src="./javascript/skeleton/ajax-loader.gif">
<canvas id="gjs-canvas"></canvas>
<p>
Powered by <a href="http://gamejs.org">GameJs</a>. Made by Andrew Jackson.<br>
To Play: <br>
You're blue. Click your island & click a target island to send half your count to that island. The opponent or native count drops by the plane's count until it's yours. Eliminate the others to win. Every game is different. The AI is a work in progress. Is the level too hard? New Game (reload or via Pause menu) or try again via Reset.
</p>
</div>
</body>
</html>