suggest_mana_base
Generate optimal mana base compositions and land recommendations for Magic: The Gathering decks based on color requirements, deck size, strategy, budget, and special needs.
Instructions
Suggest optimal mana base composition and land recommendations for a deck
Input Schema
Name | Required | Description | Default |
---|---|---|---|
average_cmc | No | Average converted mana cost of non-land cards | |
budget | No | Budget constraint for land recommendations | moderate |
color_intensity | No | Color intensity requirements (1-10 scale) | |
color_requirements | Yes | Color requirements (e.g., "WU", "RBG", "WUBRG") | |
deck_size | No | Total deck size | |
format | No | Format to suggest lands for | |
special_requirements | No | Special mana base requirements | |
strategy | No | Deck strategy archetype | midrange |
Input Schema (JSON Schema)
{
"properties": {
"average_cmc": {
"description": "Average converted mana cost of non-land cards",
"maximum": 10,
"minimum": 0,
"type": "number"
},
"budget": {
"default": "moderate",
"description": "Budget constraint for land recommendations",
"enum": [
"budget",
"moderate",
"expensive",
"no_limit"
],
"type": "string"
},
"color_intensity": {
"description": "Color intensity requirements (1-10 scale)",
"properties": {
"B": {
"maximum": 10,
"minimum": 0,
"type": "number"
},
"G": {
"maximum": 10,
"minimum": 0,
"type": "number"
},
"R": {
"maximum": 10,
"minimum": 0,
"type": "number"
},
"U": {
"maximum": 10,
"minimum": 0,
"type": "number"
},
"W": {
"maximum": 10,
"minimum": 0,
"type": "number"
}
},
"type": "object"
},
"color_requirements": {
"description": "Color requirements (e.g., \"WU\", \"RBG\", \"WUBRG\")",
"type": "string"
},
"deck_size": {
"default": 60,
"description": "Total deck size",
"maximum": 250,
"minimum": 40,
"type": "number"
},
"format": {
"description": "Format to suggest lands for",
"enum": [
"standard",
"modern",
"legacy",
"vintage",
"commander",
"pioneer",
"brawl",
"standardbrawl"
],
"type": "string"
},
"special_requirements": {
"description": "Special mana base requirements",
"items": {
"enum": [
"enters_untapped",
"basic_types",
"nonbasic_hate_protection",
"utility_lands",
"combo_lands"
],
"type": "string"
},
"type": "array"
},
"strategy": {
"default": "midrange",
"description": "Deck strategy archetype",
"enum": [
"aggro",
"midrange",
"control",
"combo",
"ramp"
],
"type": "string"
}
},
"required": [
"color_requirements"
],
"type": "object"
}