# 遊戲牌局卡牌(roundCard)

## 扑克牌牌面代码

|    | 黑桃♠️ (Spade) | 红心♥️ (Heart) | 梅花♣️ (Club) | 方塊♦️ (Diamond) |
| -- | ------------ | ------------ | ----------- | -------------- |
| A  | 11           | 21           | 31          | 41             |
| 2  | 12           | 22           | 32          | 42             |
| 3  | 13           | 23           | 33          | 43             |
| 4  | 14           | 24           | 34          | 44             |
| 5  | 15           | 25           | 35          | 45             |
| 6  | 16           | 26           | 36          | 46             |
| 7  | 17           | 27           | 37          | 47             |
| 8  | 18           | 28           | 38          | 48             |
| 9  | 19           | 29           | 39          | 49             |
| 10 | 1a           | 2a           | 3a          | 4a             |
| J  | 1b           | 2b           | 3b          | 4b             |
| Q  | 1c           | 2c           | 3c          | 4c             |
| K  | 1d           | 2d           | 3d          | 4d             |

## 百家樂(BA)

roundCard: "1a,15,4b,38,38,0"

```
莊家第一張牌:1a (黑桃10)
莊家第二張牌:15 (黑桃5)
莊家第三張牌:4b (方塊J)
閒家第一張牌:38 (梅花8)
閒家第二張牌:38 (梅花8)
閒家第三張牌:無
```

### 百家樂(BA)-樂8/樂9

莊家首張牌為固定, 以`恆8`為例 `roundCard: "8,15,4b,38,38,0"`

|    | 任意 (any) |
| -- | -------- |
| A  | 1        |
| 2  | 2        |
| 3  | 3        |
| 4  | 4        |
| 5  | 5        |
| 6  | 6        |
| 7  | 7        |
| 8  | 8        |
| 9  | 9        |
| 10 | a        |
| J  | b        |
| Q  | c        |
| K  | d        |

## 龍虎(DT)

roundCard: "2d,18"

```
虎牌:2d (紅心K)
龍牌:18 (黑桃8)
```

## 骰寶系列(DI/DIX)

roundCard: "1,3,3"

```
第一顆骰子點數為1
第二顆骰子點數為3
第三顆骰子點數為3
```

## 牛牛(OX)

roundCard: "42,26,1c,4b,2d,16,27,41,22,17,48,19,32,2c,4a,1b,46,1a,33,35"

```
莊家卡牌: 42,26,1c,4b,2d
閒1卡牌: 16,27,41,22,17
閒2卡牌: 48,19,32,2c,4a
閒3卡牌: 1b,46,1a,33,35
```

## 炸金花(ZJH)

roundCard: "4a,3c,21,22,13,35"

```
莊家卡牌: 4a,3c,21
閒家卡牌: 22,13,35
```

## HI-LO(HL)

roundCard: "48,16"

```
目前卡牌: 48(方塊8)
下一張卡牌: 16(黑桃6)
```

## 唯一幸運9(OLN)

roundCard: "36,49,0,1a,19,36"

```
莊家卡牌: 36,49,0
閒家卡牌: 1a,19,36
```

## 薩克拉(SAK)

roundCard: "2b,34,31,27,24,4b,15,43,46,1c,41,16,1b,17"

```
總共開出的卡牌
```

### 薩克拉(SAK)牌面代码

|    | 寶劍 | 棍棒 | 聖杯 | 硬幣 |
| -- | -- | -- | -- | -- |
| A  | 11 | 21 | 31 | 41 |
| 2  | 12 | 22 | 32 | 42 |
| 3  | 13 | 23 | 33 | 43 |
| 4  | 14 | 24 | 34 | 44 |
| 5  | 15 | 25 | 35 | 45 |
| 6  | 16 | 26 | 36 | 46 |
| 7  | 17 | 27 | 37 | 47 |
| 10 | 1a | 2a | 3a | 4a |
| J  | 1b | 2b | 3b | 4b |
| Q  | 1c | 2c | 3c | 4c |

### 百家寶

`roundCard: "4,5,2,4"`

```
第一顆骰子點數為4
第二顆骰子點數為5
第三顆骰子點數為2
第三顆骰子點數為4
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.pkg333.app/enum/enum-roundcard.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
