webtools/site/mahjong/guide.html

126 lines
2.9 KiB
HTML
Raw Normal View History

2025-12-20 11:10:19 +00:00
<!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>
2025-12-20 23:56:49 +00:00
<td>20</td>
2025-12-20 11:10:19 +00:00
</tr>
<tr>
<td><code>ps</code></td>
<td>Pung of simples</td>
2025-12-20 23:56:49 +00:00
<td>4</td>
2025-12-20 11:10:19 +00:00
</tr>
<tr>
<td><code>pt</code></td>
<td>Pung of terminals</td>
2025-12-20 23:56:49 +00:00
<td>8</td>
2025-12-20 11:10:19 +00:00
</tr>
<tr>
<td><code>ph</code></td>
<td>Pung of honours</td>
2025-12-20 23:56:49 +00:00
<td>8</td>
2025-12-20 11:10:19 +00:00
</tr>
<tr>
<td><code>xps</code></td>
<td>Exposed pung of simples</td>
2025-12-20 23:56:49 +00:00
<td>2</td>
2025-12-20 11:10:19 +00:00
</tr>
<tr>
<td><code>xpt</code></td>
<td>Exposed pung of terminals</td>
2025-12-20 23:56:49 +00:00
<td>4</td>
2025-12-20 11:10:19 +00:00
</tr>
<tr>
<td><code>xph</code></td>
<td>Exposed pung of honours</td>
2025-12-20 23:56:49 +00:00
<td>4</td>
2025-12-20 11:10:19 +00:00
</tr>
<tr>
<td><code>ks</code></td>
<td>Kong of simples</td>
2025-12-20 23:56:49 +00:00
<td>16</td>
2025-12-20 11:10:19 +00:00
</tr>
<tr>
<td><code>kt</code></td>
<td>Kong of terminals</td>
2025-12-20 23:56:49 +00:00
<td>32</td>
2025-12-20 11:10:19 +00:00
</tr>
<tr>
<td><code>kh</code></td>
<td>Kong of honours</td>
2025-12-20 23:56:49 +00:00
<td>32</td>
2025-12-20 11:10:19 +00:00
</tr>
<tr>
<td><code>xks</code></td>
<td>Exposed kong of simples</td>
2025-12-20 23:56:49 +00:00
<td>8</td>
2025-12-20 11:10:19 +00:00
</tr>
<tr>
<td><code>xkt</code></td>
<td>Exposed kong of terminals</td>
2025-12-20 23:56:49 +00:00
<td>16</td>
2025-12-20 11:10:19 +00:00
</tr>
<tr>
<td><code>xkh</code></td>
<td>Exposed kong of honours</td>
2025-12-20 23:56:49 +00:00
<td>16</td>
2025-12-20 11:10:19 +00:00
</tr>
<tr>
<td><code>pd</code></td>
<td>Pair of dragons</td>
2025-12-20 23:56:49 +00:00
<td>2</td>
2025-12-20 11:10:19 +00:00
</tr>
<tr>
<td><code>pw</code></td>
<td>Pair of winds (either player or prevailing)</td>
2025-12-20 23:56:49 +00:00
<td>2</td>
2025-12-20 11:10:19 +00:00
</tr>
<tr>
<td><code>b</code></td>
<td>Bonus (flower or season)</td>
2025-12-20 23:56:49 +00:00
<td>4</td>
</tr>
<tr>
<td><code>p</code></td>
<td>Point (used for adjusting scores)</td>
<td>1</td>
</tr>
<tr>
<td><code>d</code></td>
<td>Penalty (used for adjusting scores)</td>
<td>-1</td>
2025-12-20 11:10:19 +00:00
</tr>
</tbody>
</table>
</div>
</body>
</html>