Files
gametree/test/pg.json
2025-11-05 17:50:56 +08:00

64 lines
894 B
JSON

{
"player_names": {
"0": "a",
"1": "b",
"2": "c",
"3": "d",
"4": "e"
},
"game_state": {
"players_init": [
[
0,
500
],
[
1,
500
],
[
2,
500
],
[
3,
500
],
[
4,
500
]
],
"dealer_idx": 0,
"small_blind": 5,
"big_blind": 10,
"current_street": "PREFLOP",
"all_actions": [
{
"type": "CALL",
"actor": 3,
"amount": null
},
{
"type": "CALL",
"actor": 4,
"amount": null
},
{
"type": "CALL",
"actor": 0,
"amount": null
},
{
"type": "ALL_IN",
"actor": 1,
"amount": null
},
{
"type": "ALL_IN",
"actor": 2,
"amount": null
}
]
}
}