blob: 636f33a61b3661cad3f093112d650d7c0d5d50e7 (
plain) (
blame)
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
|
<!doctype html>
<html lang=en>
<meta charset=utf-8>
<meta name=viewport content="width=device-width,initial-scale=1">
<title>Micro Roguelike</title>
<style>
section{display:none;min-height:100vh}#s:target,#g:target,#b:target,#e:target,#h:target,#p:target,#i:target,#c:target,#v:target,#d:target,#w:target{display:block}html:not(:has(:target))#s{display:block}
</style>
<section id=s>
<p>micro roguelike</p>
<p>learn fast. die often.</p>
<p><a href=#g>start</a></p>
</section>
<section id=g>
<p>gate</p>
<p>ruin. dark ahead.</p>
<p><a href=#b>left</a> <a href=#e>right</a> <a href=#h>in</a></p>
</section>
<section id=b>
<p>bones</p>
<p>torch burns. dark favors walls.</p>
<p><a href=#h>take torch</a> <a href=#p>move on</a></p>
</section>
<section id=e>
<p>beast</p>
<p>one eye opens. <a href=#d>eaten</a></p>
</section>
<section id=h>
<p>hall</p>
<p>stairs. bronze door. wall crack.</p>
<p><a href=#p>stairs</a> <a href=#i>door</a> <a href=#c>crack</a></p>
</section>
<section id=p>
<p>pit</p>
<p>too wide. dark below.</p>
<p><a href=#d>jump</a> <a href=#v>edge</a></p>
</section>
<section id=i>
<p>idol</p>
<p>gold at its feet. head bowed.</p>
<p><a href=#d>gold</a> <a href=#c>bow</a> <a href=#h>back</a></p>
</section>
<section id=c>
<p>crack</p>
<p>cold air. barely wide enough.</p>
<p><a href=#v>squeeze</a> <a href=#h>return</a></p>
</section>
<section id=v>
<p>vault</p>
<p>crown. small key.</p>
<p><a href=#d>crown</a> <a href=#w>key</a> <a href=#g>leave</a></p>
</section>
<section id=d>
<p>dead</p>
<p><a href=#g>again</a></p>
</section>
<section id=w>
<p>key taken</p>
<p>the gate opens. dawn.</p>
<p><a href=#g>again</a></p>
</section>
</html>
|