First cut of Mahjong scorecard
This commit is contained in:
parent
e74906e0c4
commit
e020f2a4b6
5 changed files with 556 additions and 0 deletions
100
site/mahjong/guide.html
Normal file
100
site/mahjong/guide.html
Normal file
|
|
@ -0,0 +1,100 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Clocks - Tools</title>
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"
|
||||
>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body class="container">
|
||||
<header>
|
||||
<hgroup>
|
||||
<h1>Mahjong Score Card</h1>
|
||||
<p>Score entry guide</p>
|
||||
</hgroup>
|
||||
</header>
|
||||
<div>
|
||||
<p>Use the following notation to enter player scores.</p>
|
||||
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Notation</th>
|
||||
<th>Meaning</th>
|
||||
<th>Score</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><code>m</code></td>
|
||||
<td>Mahjong</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>ps</code></td>
|
||||
<td>Pung of simples</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>pt</code></td>
|
||||
<td>Pung of terminals</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>ph</code></td>
|
||||
<td>Pung of honours</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>xps</code></td>
|
||||
<td>Exposed pung of simples</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>xpt</code></td>
|
||||
<td>Exposed pung of terminals</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>xph</code></td>
|
||||
<td>Exposed pung of honours</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>ks</code></td>
|
||||
<td>Kong of simples</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>kt</code></td>
|
||||
<td>Kong of terminals</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>kh</code></td>
|
||||
<td>Kong of honours</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>xks</code></td>
|
||||
<td>Exposed kong of simples</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>xkt</code></td>
|
||||
<td>Exposed kong of terminals</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>xkh</code></td>
|
||||
<td>Exposed kong of honours</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>pd</code></td>
|
||||
<td>Pair of dragons</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>pw</code></td>
|
||||
<td>Pair of winds (either player or prevailing)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><code>b</code></td>
|
||||
<td>Bonus (flower or season)</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue