-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
171 lines (153 loc) · 3.77 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<html>
<head>
<link rel="icon" type="image/png" href="./favicon.png" />
<title>Dr. West</title>
<style>
body
{
background: black;
color: #d3d3d3;
font-size: 20px;
font-family: Verdana;
}
#map
{
border: double;
}
#tip
{
border: double;
width: 200;
height: 26;
padding-top: 5px;
margin-bottom: 10px;
padding-left: 5px;
text-align: center;
}
#msg
{
border: double;
width: 500;
height: 26;
padding-top: 5px;
margin-bottom: 10px;
padding-left: 5px;
}
#status
{
border: double;
width: 855;
height: 26;
margin-top: 10px;
margin-bottom: 10px;
padding-left: 5px;
}
#name
{
background: #222;
font-size: 18px;
// position: absolute;
// left: 780;
// top: 12;
margin-top: 7;
margin-right: 10px;
}
#restart
{
font-size: 18px;
// position: absolute;
// left: 920;
// top: 12;
margin-top: 5;
cursor: pointer;
background: #222;
border: 1px solid #777;
padding-left: 3px;
width: 94;
height: 25;
}
#endTurn
{
font-size: 18px;
margin-top: 12;
cursor: pointer;
background: #222;
border: 1px solid #777;
padding-left: 3px;
width: 110;
height: 25;
}
</style>
</head>
<body>
<table>
<tr>
<td>
<table width=1000>
<tr>
<td valign=top><div id="name">Dr. West <span id="version"></span></div>
<td halign=left><div id="tip"></div>
<td halign=left><div id="msg"></div>
<td valign=top><div id="restart">RESTART</div>
</table>
<canvas id="map" width=1000 height=650></canvas>
<table width=1000>
<tr>
<td valign=top><div id="status"></div>
<td valign=top><div id="endTurn">END TURN</div>
</table>
<td valign=top>
<div id="haxe:trace"
style="font-size:10px; color:green"><br></div>
</table>
<p style='text-align:center; width:1000; color:lightgray; font-size:12'>
<a href='../index.html'>Back</a> -
<a target=_blank href='https://github.com/infidel-/drwest'>Github</a> -
<a target=_blank href='https://github.com/infidel-/drwest/blob/wiki/Manual.md'>Manual</a> -
Tested in Firefox, Chromium, Opera, Edge.
<b>Post comments and feedback <a target=_blank href='feedback.html'>here</a>.</b>
</p>
<h3>Useful hints</h3>
<table style='width:1024px'>
<tr>
<td valign=top halign=center>
<ul style='font-size: 14px'>
<li>Move mouse over any tile to get information about it
<li>Press SPACE or E key to end turn
<li>Bodies will spawn on cemetery
<li>Clicking on a body will move into the laboratory
<li>The lighter the color of the body the greater its quality
<li>Bodies in the laboratory will be reanimated on the next turn
<li>Reanimation can lead to raising Theory parameter
<li>Raising Theory up to 10 wins the game
<li>Clicking on an empty space will put a marker there
<li>The reanimated are attracted to the markers if they are in range
</ul>
<td valign=top halign=center>
<ul style='font-size: 14px'>
<li>When humans witness the death of another human, they will call the police
<li>When no more reanimated are around, the police will leave the scene
<li>No more than 10 police officers can be on the map at the same time
<li>If the police gets too close to the laboratory, its Suspicion will rise
<li>When Suspicion rises to 3, the game ends with a loss
<li>When the reanimated are aggressive:
<ul><li>they sometimes attack each other
<li>they better hit the police officers
<li>they can enter the police station to wreak havoc
</ul>
</ul>
</table>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-7261859-1");
pageTracker._trackPageview();
} catch(err) {}
</script>
<script src="lib/HTML.js"></script>
<script type="text/javascript" src="drwest.js"></script>
</body>
</html>