dist/models~ Species

new Species()

Represents a Pokemon species.

Properties
NameTypeDescription
idnumber

The ID of the species.

namesArray.<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.

slugstring

The slug for the species (e.g., "pikachu").

base_statsStats

The base stats for the species.

heightnumber

The height of the species in meters.

weightnumber

The weight of the species in kilograms.

dex_numbernumber

The Pokedex number of the species.

catchableboolean

Whether the species can be caught in the wild.

typesArray.<string>

A list of types for the species (e.g., ["Electric"]).

abundancenumber

The abundance of the species in the wild (higher values mean more common).

gender_ratenumber

The gender rate of the species (-1 for genderless, 0-8 for female ratio).

has_gender_differencesboolean

Whether the species has gender differences.

descriptionstring | null

The description of the species, or null if none.

mega_idnumber | null

The ID of the species' Mega Evolution, or null if none.

mega_x_idnumber | null

The ID of the species' Mega X Evolution, or null if none.

mega_y_idnumber | null

The ID of the species' Mega Y Evolution, or null if none.

evolution_fromEvolutionList | null

The EvolutionList representing how this species evolves from others, or null if none.

evolution_toEvolutionList | null

The EvolutionList representing how this species evolves into others, or null if none.

mythicalboolean

Whether the species is a Mythical Pokemon.

legendaryboolean

Whether the species is a Legendary Pokemon.

ultra_beastboolean

Whether the species is an Ultra Beast.

eventboolean

Whether the species is an event-exclusive Pokemon.

is_formboolean

Whether the species is a form of another Pokemon.

form_itemnumber | null

The ID of the item used to change into this form, or null if none.

regionstring

The region where the species was introduced.

art_creditstring | null

The artist who created the artwork for the species, or null if unknown.

instanceDataManagerBase

The DataManagerBase instance associated with this species.

movesArray.<PokemonMove>

A list of PokemonMove objects representing the moves that the species can learn.