get_set_cards
Retrieve all cards from a specific Magic: The Gathering set with pagination and sorting. Specify set code, page size, and sorting criteria to display results, including prioritization for Chinese cards.
Instructions
获取特定系列的所有卡牌,支持分页和排序。
Input Schema
Name | Required | Description | Default |
---|---|---|---|
order | No | 排序字段 (例如: collector_number, name, -mv) | |
page | No | 页码 (默认 1) | |
page_size | No | 每页数量 (默认 20,最大 100) | |
priority_chinese | No | 是否优先显示中文卡牌 (默认 true) | |
set_code | Yes | 系列代码,例如 'NEO'、'MOM' |
Input Schema (JSON Schema)
{
"properties": {
"order": {
"description": "排序字段 (例如: collector_number, name, -mv)",
"type": "string"
},
"page": {
"description": "页码 (默认 1)",
"type": "integer"
},
"page_size": {
"description": "每页数量 (默认 20,最大 100)",
"type": "integer"
},
"priority_chinese": {
"description": "是否优先显示中文卡牌 (默认 true)",
"type": "boolean"
},
"set_code": {
"description": "系列代码,例如 'NEO'、'MOM'",
"type": "string"
}
},
"required": [
"set_code"
],
"type": "object"
}