-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdobble.html
More file actions
89 lines (72 loc) · 2.43 KB
/
dobble.html
File metadata and controls
89 lines (72 loc) · 2.43 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>...</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" href="main.css">
<meta name="description" content="" />
</head>
<body>
<h2>Dobble mini-games</h2>
<div class=box>
<h3>The towering inferno</h3>
<p>Setup: 1 card facedown per player, rest in draw pile faceup</p>
<p>Win: gain most cards</p>
<p>Rules: On start flip card, spot identical symbol on draw pile card, draw card and put on top of own card</p>
<p>Point system: +1 point per card gained / +5 points to the player who has gained the most cards</p>
</div>
<div class=box>
<h3>The well</h3>
<p>Setup: 1 card faceup in middle, split rest for players facedown pile, start by giving to prev winner.</p>
<p>Win: get rid of all cards</p>
<p>Rules: On start flip pile faceup, spot identical symbol on middle card, put own card on top</p>
<p>Point system: +10 points to the 1st player to get rid of all cards / -20 for last</p>
</div>
<div class=box>
<h3>The hot potato</h3>
<table>
<tr>
<td>Setup:</td>
<td>each round 1 card in hand</td>
</tr>
<tr>
<td>Win:</td>
<td>get rid of card</td>
</tr>
<tr>
<td>Rules:</td>
<td>On start flip card faceup in open hand, spot identical symbol on opponent card, put own card on top</td>
</tr>
<tr>
<td>Point system:</td>
<td>-5 points per lost round</td>
</tr>
</table>
</div>
<div class=box>
<h3>Gotta catch them all!</h3>
<p>Setup: each round 1 card in middle faceup. 1 card facedown per player</p>
<p>Win: gain most cards</p>
<p>Rules: On start flip card, spot identical symbol on middle card and any other card, put non-middle card aside</p>
<p>Point system: +1 point per card</p>
</div>
<div class=box>
<h3>The poisoned gift</h3>
<p>Setup: 1 card facedown per player, rest in draw pile faceup</p>
<p>Win: gain fewest cards</p>
<p>Rules: On start flip card, spot identical symbol on middle card and opponents card, put middle card on top of opponents card</p>
<p>Point system: +20 points to the player who has gained the fewest cards / +10 for the second</p>
</div>
<table>
<tr>
<td>John</td>
<td>Doe</td>
</tr>
<tr>
<td>Jane</td>
<td>Doe</td>
</tr>
</table>
</body>
</html>