get_learnset
Retrieve Pokémon move learnsets by version group and learning method to build optimal movesets for battles and team planning.
Instructions
Learnset por version_group y método.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
method | No | all | |
name | Yes | ||
version_group | No | emerald |
Input Schema (JSON Schema)
{
"properties": {
"method": {
"default": "all",
"type": "string"
},
"name": {
"type": "string"
},
"version_group": {
"default": "emerald",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}