forked from noonat/queens
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathqueens.html
More file actions
45 lines (42 loc) · 1.93 KB
/
queens.html
File metadata and controls
45 lines (42 loc) · 1.93 KB
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
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>queens</title>
<style>
a { color: #333; }
a.noonat { color: #666; }
body { margin: 0px; overflow: auto; background: #090909; padding: 1em;}
.summary { font-family: arial; font-size: 11px; color: #333; width: 400px; margin: 30px auto 0 auto; }
.summary b { color: #666; }
</style>
</head>
<body onload="document.getElementsByTagName('embed')[0].focus();">
<div style="margin:0 auto; width:640px;">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
id="queens" width="640" height="480"
codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">
<param name="movie" value="queens.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#0f110b" />
<param name="allowScriptAccess" value="sameDomain" />
<embed src="queens.swf" quality="high" bgcolor="#0f110b"
width="640" height="480" name="queens" align="middle"
play="true"
loop="false"
quality="high"
allowScriptAccess="sameDomain"
type="application/x-shockwave-flash"
pluginspage="http://www.adobe.com/go/getflashplayer">
</embed>
</object>
<div class="summary">
<p>Keys: <b>arrow keys</b> to move, <b>x</b> to jump</p>
<p>Queens is a short game developed for <a href="http://www.ludumdare.com/compo/category/minild/minild-10/">Mini-LD #10</a>. The theme for the compo was
"domestic violence". I didn't want to make a depressing game, but hope I still
managed to capture the theme in spite of that.</p>
<p>The game was developed in a little under 72-hours (oops) using <a href="http://flixel.org/">flixel</a>, <a href="http://opensword.org/Pixen/">pixen</a>, and <a href="http://www.cyd.liu.se/~tompe573/hp/project_sfxr.html">sfxr</a>.</p>
<p>— <a class="noonat" href="http://noonat.phuce.com">noonat</a></p>
</div>
</div>
</body>
</html>