Skip to content

Pokédex

A Pokédex contains an entry for every Pokémon. A single file holds all Pokédex entries. Each Pokédex entry has the following properties:

Property Type Is required Description
number int32 Yes The Pokédex number of the Pokémon.
pokemonName string Yes The name of the Pokémon.

Example

[
  {
    "number": 1,
    "pokemonName": "Bulbasaur"
  },
  {
    "number": 2,
    "pokemonName": "Ivysaur"
  },
  {
    "number": 3,
    "pokemonName": "Venusaur"
  }
]