get_pokemon_images
Retrieve Pokémon sprite images including front/back views, shiny variants, and official artwork by entering a Pokémon name or ID number.
Instructions
ポケモンのスプライト画像(前面、後面、色違い、公式アートワーク)を取得
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pokemon | Yes | ポケモン名またはID番号 |
Input Schema (JSON Schema)
{
"properties": {
"pokemon": {
"description": "ポケモン名またはID番号",
"type": "string"
}
},
"required": [
"pokemon"
],
"type": "object"
}