suggest_moveset
Generate optimal Pokémon movesets with STAB and coverage moves based on specified battle roles like sweeper, bulky, or support for competitive team building.
Instructions
Sugiere moveset (STAB + cobertura) usando tipos de cada movimiento.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | ||
| role | No | sweeper | |
| version_group | No | emerald |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"type": "string"
},
"role": {
"default": "sweeper",
"enum": [
"sweeper",
"bulky",
"support"
],
"type": "string"
},
"version_group": {
"default": "emerald",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}