AnimaEngine  1.0.0
Nintendo DS Pokemon Black, White, Black 2, and White 2 sprite extraction and preview toolchain
pokemon_catalog.h
Go to the documentation of this file.
1 
6 #ifndef POKEMON_CATALOG_H
7 #define POKEMON_CATALOG_H
8 
12 typedef struct PokemonCatalogEntry {
13  int dex_id;
14  const char *name;
16 
22 const PokemonCatalogEntry *PokemonCatalog_GetEntries(int *out_count);
23 
30 
31 #endif
32 
const PokemonCatalogEntry * PokemonCatalog_FindByDexId(int dex_id)
Finds a Pokemon catalog entry matching a specific National Dex ID.
Definition: pokemon_catalog.c:678
const PokemonCatalogEntry * PokemonCatalog_GetEntries(int *out_count)
Retrieves the entire catalog list of Pokemon entries.
Definition: pokemon_catalog.c:669
struct PokemonCatalogEntry PokemonCatalogEntry
Represents a single species entry in the local database catalog.
Represents a single species entry in the local database catalog.
Definition: pokemon_catalog.h:12
int dex_id
Definition: pokemon_catalog.h:13
const char * name
Definition: pokemon_catalog.h:14