-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (44 loc) · 1.65 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
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=utf-8" http-equiv="content-type">
<meta charset="UTF-8">
<title>Solar Justice</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="doc">
<h1>Solar Justice</h1>
<ol>
<li>
Start with Player 1 (<b>Star</b>) placing a <b>star</b> in the grid.
</li>
<li>
Player 2 (<b>Stellar Wind</b>) gusts in any of the 8 directions. Once passed, mark it as completed.
</li>
<li>
<b>Gas clouds</b> drop in the direction of the <b>Stellar Wind</b>.
</li>
<li>
<b>Stars</b> can plant <b>stars</b> on existing <b>Gas clouds</b>.
</li>
<li>
Run (2) to (4) seven times (i.e. drop 7 <b>stars</b> on the board, all except one direction of <b>stellar wind</b> used).
</li>
<li>
If there are any empty spaces at the end, Player 2 wins. Otherwise, Player 1 wins.
</li>
</ol>
<br>
</div>
<div class="board">
<div class="child">
<table id="grid"></table>
</div>
<div class="child">
<table id="compass"></table>
</div>
</div>
<script src="index.js"></script>
</body>
</html>