random-pokemon-from-region
Generate a random Pokémon from a specified region like Kanto, Johto, or Hoenn using a dedicated tool that fetches data from the PokeAPI for easy discovery.
Instructions
Get a random Pokémon from a specific region
Input Schema
Name | Required | Description | Default |
---|---|---|---|
region | Yes | The Pokémon region (e.g., kanto, johto, hoenn, etc.) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"region": {
"description": "The Pokémon region (e.g., kanto, johto, hoenn, etc.)",
"type": "string"
}
},
"required": [
"region"
],
"type": "object"
}