-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (48 loc) · 1.95 KB
/
Copy pathindex.html
File metadata and controls
50 lines (48 loc) · 1.95 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
46
47
48
49
50
<html>
<head>
<meta charset=UTF-8 />
<title>Card Game</title>
<script src="lib/jquery.js"></script>
<script src="lib/underscore.js"></script>
<script src="lib/raphael.js"></script>
<script src="game.js"></script>
<script src="src/card.js"></script>
<script src="src/deck.js"></script>
<script src="src/screen.js"></script>
<script src="src/board.js"></script>
<script src="src/doubleline.js"></script>
<script src="src/poker.js"></script>
<script src="src/forcedrop.js"></script>
<link rel="stylesheet" type="text/css" href="game.css">
<link href='http://fonts.googleapis.com/css?family=Exo' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="board">
<div id="paper"></div>
</div>
<div id="pannel">
<table class="score-table">
<tr><th>Hand</th><th>Score</th></tr>
<tr><td>One Pair</td><td>200</td>
<tr><td>Two Pair</td><td>400</td></tr>
<tr><td>Three of A Kind</td><td>800</td></tr>
<tr><td>Flush</td><td>1000</td></tr>
<tr><td>Straight</td><td>1400</td></tr>
<tr><td>Full House</td><td>1800</td></tr>
</table>
<table class="score-table">
<tr><th>Hand</th><th>Score</th></tr>
<tr><td>Royal Straight</td><td>1800</td></tr>
<tr><td>Four of A Kind</td><td>2000</td></tr>
<tr><td>Straight Flush</td><td>2400</td></tr>
<tr><td>Royal Straight Flush</td><td>2800</td></tr>
<tr><td>Five of A Kind</td><td>3000</td></tr>
</table>
<h2>Instruction</h2>
<p>Drop cards from above one by one in the 5 x 5 matrix. Make hands as many as possible across horizontal, vertical and diagonal lines. Select and move a card to drop using cursor keys. ★★ represents a joker, which is considered to be any card that makes the best hand in that position. Pink lines indicate 'double lines' where the score will be doubled. </p>
<div id="stage">Stage: 1</div>
<div id="score">Score: 0</div>
<div id="total-score">Total Score: 0</div>
</div>
</body>
</html>