-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
95 lines (76 loc) · 3.68 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en-gb">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Umoria - The Classic Roguelike Dungeon Crawler</title>
<link rel="canonical" href="https://umoria.org">
<link rel="stylesheet" href="styles.css">
</head>
<body class="hack main container">
<header class="sidebar">
<nav class="container sidebar-sticky">
<div class="sidebar-about">
<h2><a href="/">Umoria</a></h2>
<p class="lead">
The Dungeons of Moria<br>
- the original roguelike -
</p>
</div>
<ul class="sidebar-nav">
<li><a class="" href="/">Home</a></li>
<li><a class="" href="/download/">Download</a></li>
<li><a class="" href="/history/">History</a></li>
<li><a class="" href="/highlights/">Release Highlights</a></li>
<li><a class="" href="/about/">About</a></li>
</ul>
</nav>
</header>
<main class="content container">
<h1 class="intro-heading">Umoria - a free roguelike game</h1>
<h2 class="tagline">One of the original roguelikes, together with <em>Hack</em> and <em>Larn</em></h2>
<div style="border: 1px solid #aaa; text-align: center; padding: 0.5em;">
<p style="color: #333; font-size: 60%; font-family: serif;">creator and programmer of Moria</p>
<h2 style="margin: 0; letter-spacing: 0.5px;">Robert Alan Koeneke</h2>
<p style="margin-top: 0.5em; color: #333; font-size: 75%; font-family: serif;">NOVEMBER 20 1957 - JULY 15 2022</p>
</div>
<h3><small>Embark upon a classic adventure deep into the mines of Moria to test your skill against the mighty Balrog!</small></h3>
<p>The game of <em>Umoria</em> is a single player dungeon simulation. Starting
at the town level, you begin your adventure by stocking up on supplies -
weapons, armour, and magical devices - from the various stores. After preparing
for your adventure, you descend into the <em>Dungeons of Moria</em> where
fantastic adventures await!</p>
<p>If you've prepared well and acquired the right skills and experience - with
perhaps a little luck too - you can descend to the deepest levels and attempt
to defeat the Balrog.</p>
<p class="ascii-dungeon"><pre class="text-center">
# #
# #
###### # #
#<span><</span>...# # #
#####################'####################### #
# <span>@</span> <span>B</span> #
###############################################
</pre></p>
<p>Umoria is available for Windows, macOS and Linux.</p>
<p class="text-center"><a href="/download/">Download Umoria 5.7.15</a></p>
<h2>Play Umoria Online</h2>
<p>It's now possible to play Umoria in your web browser right here on
umoria.org! To get started, click the link:</p>
<p class="text-center"><a href="https://umoria.org/play/" target="_blank">Play Umoria Online</a></p>
<p>My thanks to Jeff Hirschberg for his hard work on creating this WASM version
of Umoria, and for allowing me to host it here on the website. If you'd like to
learn more about his project head on over to
<a href="https://github.com/jhirschberg70/browser-based-umoria" target="_blank">Github</a>.</p>
<p class="footer-text">Umoria.org © 2016-2022 Michael R. Cook</p>
</main>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-761310-40', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>