-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (72 loc) · 2.66 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Rogues Among the Stats (R.A.T.S.) - A roguelike browser game for 7DRL</title>
<link rel="stylesheet" href="stars.css" />
</head>
<body class="rote-state">
<article class="splash">
<pre title="Rogues Among the Stats">
Rogues Among the Stars
__________ _____ ____________ _________
\______ \ / _ \ \___ ___/ / _____/
| _/ / / \ \ | | \_____ \
| | \ / /___\ \ | | ___/ \
| | \ \ | / | | / \
|____|_ / /\ \___|_ / /\ |_ / /\ /_______ / /\
\/ \/ \/ \/ \/ \/ \/ \/
</pre>
<div>A Roguelike Retro Game Made for the 7DRL Challenge 2020</div>
<div class="tip">
<div>A keyboard is required to play.</div>
Press Enter to begin.
</div>
<div class="credits">
Coding by Luke @ Deathray Games
<br/>Based on Runestar: Origins
<br/>Uses the open source libraries: rote js and rot js
<br/><a href="https://github.com/rocket-boots/roguelike-fonts" target="_blank">Fonts:</a> "Fix15Mono-Bold" by LambdaHack and "AppleII"
<br/>Thanks to <a href="http://www.roguelikeradio.com/" target="_blank">Rougelike Radio</a> and the
<a href="https://www.reddit.com/r/roguelikedev/" target="_blank">/r/roguelikedev subreddit</a>
for inspiration.
</div>
<div class="links">
<a href="https://itch.io/jam/7drl-challenge-2020" target="_blank">7DRL Challenge 2020</a>
<a href="https://deathraygames.com/" target="_blank">DeathrayGames.com</a>
<a href="https://twitter.com/deathraygames" target="_blank">Follow me on Twitter</a>
</div>
</article>
<article class="rote">
<header>
<!-- <button>☰</button> -->
<h1><abbr title="Rogues Among the Stars">R.A.T.S.</abbr></h1>
<span class="subtitle">v1.0 for 7DRL 2020</span>
</header>
<section id="display"></section>
<section id="console"></section>
<section id="interface"></section>
<section id="controls">
<ul>
<li>Move cardinal: WASD, HJKL, Numpad, Arrows</li>
<li>Move diagonal: QWZX, YUBN, Numpad</li>
<li>Attack by "bump" movement</li>
<li>Ready an ability: 1-9</li>
<li>Inventory: I</li>
<li>Toss/Drop: T</li>
<li>Look around: O</li>
<li>Pickup: P</li>
<li>Wait: Space</li>
<li>Use/Pickup: Enter</li>
<!-- <li>Toggle Music: , (comma)</li> -->
</ul>
</section>
</article>
<div class="scripts">
<!-- <script src="../../projects/rote/dist/rote-0.5.0.js"></script> -->
<script src="node_modules/rote/dist/rote-0.5.0.js"></script>
<script src="node_modules/starship-the-next-generation/src/StarshipGenerator.js" type="module"></script>
<script src="rogues.js" type="module"></script>
</div>
</body>
</html>