play_apply_move
Apply a move to the game and return the new state. Pass the move object exactly as returned by play_get_moves (format varies by family: chess uses {from,to}, go uses {coord} or {action:"pass"}).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| move | Yes | Move object from play_get_moves (e.g. {from:"e2",to:"e4"} for chess, {coord:40} for go, {action:"pass"}) | |
| state | Yes | Game state object from play_create_game or a previous play_apply_move |