random-pokemon-by-type
Find a random Pokémon based on a specific type (e.g., fire, water, grass) using this tool. Ideal for discovering Pokémon by type for games, research, or entertainment.
Instructions
Get a random Pokémon of a specific type
Input Schema
Name | Required | Description | Default |
---|---|---|---|
type | Yes | The Pokémon type (e.g., fire, water, grass, etc.) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"type": {
"description": "The Pokémon type (e.g., fire, water, grass, etc.)",
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}