# Game cards(roundCard)

## Poker card face codes

|    | ♠️ (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           |

## Baccarat(BA)

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

```
Banker's first card: 1a (10 of Spades)
Banker's second card: 15 (5 of Spades)
Banker's third card: 4b (Jack of Diamonds)
Player's first card: 38 (8 of Clubs)
Player's second card: 38 (8 of Clubs)
Player's third card: None
```

### ## Baccarat(BA)(BA)-Always 8/Always 9

The dealer's first card is fixed, Take Always 8 as an example `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     |

## Dragon Tiger(DT)

roundCard: "2d,18"

```
Tiger:2d (Heart K)
Dragon:18 (Spades 8)
```

## Sic-bo(DI/DIX)

roundCard: "1,3,3"

```
The first dice has a value of 1.
The first dice has a value of 3.
The first dice has a value of 3.
```

## HI-LO(HL)

roundCard: "48,16"

```
Current Cards: 48(Diamond 8)
Next Card: 16(Spades 6)
```

## Sakla(SAK)

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

```
Total cards opened
```

### Sakla(SAK)Card Code

|    | Sword | Club | Holy Grail | Coin |
| -- | ----- | ---- | ---------- | ---- |
| 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   |

### Bac Bo

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

* First dice: 4
* Second dice: 5
* Third dice: 2
* Fourth dice: 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/en/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.
