-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgame.html
60 lines (58 loc) · 2.2 KB
/
game.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Game|SinguLarry</title>
<meta name="author" content="5 Horsemen Games">
<meta name="description" content="We are a group of 5 guys making a game for our INF 125 class">
<meta name="keywords" content="UCI, space, AI, rogue-like, story game">
<link rel="shortcut icon" href="favicon.ico" type="image/vnd.microsoft.icon">
<link rel="stylesheet" href="stylesheet.css" type="text/css">
<link rel="stylesheet" href="font-awesome-4.7.0/css/font-awesome.min.css">
<style type="text/css">
</style>
</head>
<body id='title'>
<div id='stars'></div>
<div id='stars2'></div>
<div id='stars3'></div>
<a href='index.html'>
<div id="header">
<span class="glow">
SinguLarry
</span>
<h6 class='glow'>Become The Machine!</h6>
<i class="fa fa-rocket glow" aria-hidden="true"></i>
</div>
</a>
<ul class="topnav glow" id="myTopnav">
<li id="story"><a href="story.html" >Story</a></li>
<li id="current">Gameplay</li>
<li id="about"><a href="about.html">About</a></li>
<li id="developers"><a href="developers.html">Developers</a></li>
</ul>
<div id="content">
<h1>Controls</h1>
<p>Interact With People and Objects - “i”</p>
<h2>Life Forms</h2>
<p>Life forms are not directly controllable. Instead they are located around the ship, waiting for the AI to interact with them.</p>
<h2>Drones</h2>
<p>Drones are directly controlled by the AI. They can be instructed to interact with objects and life forms in the environment.</p>
<h2>Doors</h2>
<p>The AI should be able to open or close any door on the ship.</p>
<h2>Drone Bay</h2>
<p>Starting position and resting place for the drone.</p>
<p>You must be in The Drone Bay in order to access a list of your Objectives</p>
<h2>Med Bay</h2>
<p>Activate/Deactivate the healing pods.</p>
<h2>Bridge</h2>
<p>Take evasive maneuvers.</p>
<h2>Generator</h2>
<p>Control general power levels on the ship.</p>
<h2>AI Core</h2>
<p>Where Larry is located.</p>
<h2>Crew Room</h2>
<p>Where the crew sleeps and keeps journals on personal computers.</p>
</div>
</body>
</html>