csb_find_combos_by_card_ids
Identify Magic: The Gathering combos enabled by specific cards using Commander Spellbook numeric IDs to discover synergistic interactions.
Instructions
Find combos that the provided cards enable (exact and almost-included).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ids | Yes | Commander Spellbook numeric card IDs | |
limit | No | ||
offset | No |
Input Schema (JSON Schema)
{
"properties": {
"ids": {
"description": "Commander Spellbook numeric card IDs",
"items": {
"minimum": 0,
"type": "integer"
},
"minItems": 1,
"type": "array"
},
"limit": {
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"offset": {
"minimum": 0,
"type": "integer"
}
},
"required": [
"ids"
],
"type": "object"
}