get_pokemon_stats
Retrieve base Pokémon statistics including HP, attack, defense, special attack, special defense, and speed by providing a Pokémon name or ID number.
Instructions
ポケモンの基礎ステータス(HP、こうげき、ぼうぎょ、とくこう、とくぼう、すばやさ)を取得
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pokemon | Yes | ポケモン名またはID番号 |
Input Schema (JSON Schema)
{
"properties": {
"pokemon": {
"description": "ポケモン名またはID番号",
"type": "string"
}
},
"required": [
"pokemon"
],
"type": "object"
}