-
Notifications
You must be signed in to change notification settings - Fork 3
/
battybridge.html
90 lines (90 loc) · 2.15 KB
/
battybridge.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
<html>
<head>
<title>Batty Bridge</title>
<style type="text/css">
</style>
</head>
</html>
<body>
<h1>Batty Bridge</h2>
<h2>A Rotating Alternative to Spades</h2>
<h3>Instructions</h3>
<i>The rules generally follow the same rule as spades. The only additions are the list below and the hand-specific additions</i>
<ol>
<li>Cut for deal. Player on left of dealer leads.</li>
<li>Play partners. The side taking the most tricks are winners in each case.</li>
<li>Alternate partners after four hands. You should never have the same partner twice.</li>
<li>Keep score individually. The player with the highest total score after the 12th hand wins.</li>
</ol>
<table border="1" cellpadding="5">
<thead>
<tr>
<th>Hand</th>
<th>Instructions</th>
<th>Partner Switch?<?th>
</tr>
</thead>
<tbody>
<tr>
<td>1st Hand</td>
<td>Spades are trump.</td>
<td>No</td>
</tr>
<tr>
<td>2nd Hand</td>
<td>No trump. Winners add 300 to score.</td>
<td>No</td>
</tr>
<tr>
<td>3rd Hand</td>
<td>Clubs trump. Hold with backs towards players. Winners add 500 to score.</td>
<td>No</td>
</tr>
<tr>
<td>4th Hand</td>
<td>Hearts trump. Do not look at hand. Play from table. Winners double score of hand.</td>
<td><b>Yes</b></td>
</tr>
<tr>
<td>5th Hand</td>
<td>Diamonds trump. Losers subtract 50 from score.</td>
<td>No</td>
</tr>
<tr>
<td>6th Hand</td>
<td>Spades trump. Losers add 500 to score.</td>
<td>No</td>
</tr>
<tr>
<td>7th Hand</td>
<td>Clubs trump. Winners and losers trade score from hand.</td>
<td>No</td>
</tr>
<tr>
<td>8th Hand</td>
<td>Clubs trump. Losers add 150 to score.</td>
<td><b>Yes</b></td>
</tr>
<tr>
<td>9th Hand</td>
<td>Cut for trump. Winners take all and add 500 to score.</td>
<td>No</td>
</tr>
<tr>
<td>10th Hand</td>
<td>Hearts trump. Winners add 100 to score.</td>
<td>No</td>
</tr>
<tr>
<td>11th Hand</td>
<td>No trump. Losers take all and add 200 to score.</td>
<td>No</td>
</tr>
<tr>
<td>12th Hand</td>
<td>No trump. Winners take all and add 500 to score.</td>
<td>No</td>
</tr>
</tbody>
</body>
</html>