get_pokemon_info
Retrieve complete Pokémon information including stats, images, and basic data by entering the 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"
}