new Species()
Represents a Pokemon species.
Name | Type | Description |
---|---|---|
id | number | The ID of the species. |
names | Array.<Array.<string>> | A list of names for the species in different languages. Each sub-array contains a language code and the name in that language. |
slug | string | The slug for the species (e.g., "pikachu"). |
base_stats | Stats | The base stats for the species. |
height | number | The height of the species in meters. |
weight | number | The weight of the species in kilograms. |
dex_number | number | The Pokedex number of the species. |
catchable | boolean | Whether the species can be caught in the wild. |
types | Array.<string> | A list of types for the species (e.g., ["Electric"]). |
abundance | number | The abundance of the species in the wild (higher values mean more common). |
gender_rate | number | The gender rate of the species (-1 for genderless, 0-8 for female ratio). |
has_gender_differences | boolean | Whether the species has gender differences. |
description | string | | The description of the species, or null if none. |
mega_id | number | | The ID of the species' Mega Evolution, or null if none. |
mega_x_id | number | | The ID of the species' Mega X Evolution, or null if none. |
mega_y_id | number | | The ID of the species' Mega Y Evolution, or null if none. |
evolution_from | EvolutionList | | The EvolutionList representing how this species evolves from others, or null if none. |
evolution_to | EvolutionList | | The EvolutionList representing how this species evolves into others, or null if none. |
mythical | boolean | Whether the species is a Mythical Pokemon. |
legendary | boolean | Whether the species is a Legendary Pokemon. |
ultra_beast | boolean | Whether the species is an Ultra Beast. |
event | boolean | Whether the species is an event-exclusive Pokemon. |
is_form | boolean | Whether the species is a form of another Pokemon. |
form_item | number | | The ID of the item used to change into this form, or null if none. |
region | string | The region where the species was introduced. |
art_credit | string | | The artist who created the artwork for the species, or null if unknown. |
instance | DataManagerBase | The DataManagerBase instance associated with this species. |
moves | Array.<PokemonMove> | A list of PokemonMove objects representing the moves that the species can learn. |