get_type_effectiveness
Retrieve detailed type effectiveness data for Pokémon, including strengths, weaknesses, and resistances, to optimize battle strategies using a specific type name or ID.
Instructions
Get type effectiveness information including strengths, weaknesses, and resistances
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name or ID of the type |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "The name or ID of the type",
"minLength": 1,
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}