Skip to content

PokeSanc csv

lati111 edited this page Apr 9, 2023 · 2 revisions

The PokeSanc csv format contains all the data used by the PokeSanc program available on [ironbrains.io]. It will skip eggs, and supports generation 1 to 9 as of this moment. Spinoff titles such as Colosseum and XD are not supported, and will be getting their own format.

Core data

  • pid (string): personal identifier.
  • nickname (string): given nickname.
  • species (string): current species, including form name.
  • form_index (int): index of the current form.
  • nature (string): current nature.
  • gender (string): current gender as M, F or -.
  • ability (string): current ability.

Details

  • level (int): current level.
  • friendship (int): current friendship.
  • hidden_power (string): current hidden power type.
  • tera_type (string): the current tera type. If none is set, is equal to first type of species.
  • is_shiny (bool): if it is shiny, returns either 0 or 1.

Regular Stats

  • hp_iv (int): current hp IV.
  • hp_ev (int): current hp EV.
  • atk_iv (int): current attack IV.
  • atk_ev (int): current attack EV.
  • def_iv (int): current defense IV.
  • def_ev (int): current defense EV.
  • spa_iv (int): current special attack IV.
  • spa_ev (int): current special attack EV.
  • spd_iv (int): current special defense IV.
  • spd_ev (int): current special defense EV.
  • spe_iv (int): current speed IV.
  • spe_ev (int): current speed EV.

Contest stats

  • cool (int): current cool value.
  • beauty (int): current beauty value.
  • cute (int): current cute value.
  • smart (int): current smart value.
  • tough (int): current tough value.
  • sheen (int): current sheen value.

Moves

  • move1 (string): first move name.
  • move1_ppup (int): amount of PPups on first move.
  • move2 (string): second move name.
  • move2_ppup (int): amount of PPups on second move.
  • move3 (string): third move name.
  • move3_ppup (int): amount of PPups on third move.
  • move4 (string): fourth move name.
  • move4_ppup (int): amount of PPups on fourth move.

Origin

  • ball (string): current pokeball.
  • met_location (string): either the met location or egg location.
  • met_level (string): the met level of the pokemon
  • met_data (date): date of obtaining, or hatching, returns in YYYY-MM-DD format.
  • met_version (string): met game.
  • was_egg (bool): if the pokemon was an egg, returns either 0 or 1.

Trainer

  • trainer_id (string): the trainer ID of the original trainer.
  • trainer_sid (string): the secret trainer ID of the original trainer.
  • trainer_name (string): name of original trainer.
  • trainer_gender (string): original trainer gender as M or F.

Clone this wiki locally