pokeemerald/src/data/pokemon/pokedex_entries.h

4647 lines
108 KiB
C
Raw Normal View History

2018-11-27 04:00:38 +00:00
const struct PokedexEntry gPokedexEntries[] =
{
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_NONE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("UNKNOWN"),
.height = 0,
.weight = 0,
.description = gDummyPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_BULBASAUR] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SEED"),
.height = 7,
.weight = 69,
.description = gBulbasaurPokedexText,
.pokemonScale = 356,
.pokemonOffset = 17,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_IVYSAUR] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SEED"),
.height = 10,
.weight = 130,
.description = gIvysaurPokedexText,
.pokemonScale = 335,
.pokemonOffset = 13,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_VENUSAUR] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SEED"),
.height = 20,
.weight = 1000,
.description = gVenusaurPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 388,
.trainerOffset = 6,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CHARMANDER] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LIZARD"),
.height = 6,
.weight = 85,
.description = gCharmanderPokedexText,
.pokemonScale = 444,
.pokemonOffset = 18,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CHARMELEON] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FLAME"),
.height = 11,
.weight = 190,
.description = gCharmeleonPokedexText,
.pokemonScale = 302,
.pokemonOffset = 9,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CHARIZARD] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FLAME"),
.height = 17,
.weight = 905,
.description = gCharizardPokedexText,
.pokemonScale = 256,
.pokemonOffset = 1,
.trainerScale = 302,
.trainerOffset = 3,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SQUIRTLE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("TINY TURTLE"),
.height = 5,
.weight = 90,
.description = gSquirtlePokedexText,
.pokemonScale = 412,
.pokemonOffset = 18,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_WARTORTLE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("TURTLE"),
.height = 10,
.weight = 225,
.description = gWartortlePokedexText,
.pokemonScale = 332,
.pokemonOffset = 10,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_BLASTOISE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SHELLFISH"),
.height = 16,
.weight = 855,
.description = gBlastoisePokedexText,
.pokemonScale = 256,
.pokemonOffset = -1,
.trainerScale = 293,
.trainerOffset = 2,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CATERPIE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WORM"),
.height = 3,
.weight = 29,
.description = gCaterpiePokedexText,
.pokemonScale = 549,
.pokemonOffset = 22,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_METAPOD] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("COCOON"),
.height = 7,
.weight = 99,
.description = gMetapodPokedexText,
.pokemonScale = 350,
.pokemonOffset = 18,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_BUTTERFREE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BUTTERFLY"),
.height = 11,
.weight = 320,
.description = gButterfreePokedexText,
.pokemonScale = 312,
.pokemonOffset = 2,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_WEEDLE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("HAIRY BUG"),
.height = 3,
.weight = 32,
.description = gWeedlePokedexText,
.pokemonScale = 455,
.pokemonOffset = 22,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_KAKUNA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("COCOON"),
.height = 6,
.weight = 100,
.description = gKakunaPokedexText,
.pokemonScale = 424,
.pokemonOffset = 17,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_BEEDRILL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("POISON BEE"),
.height = 10,
.weight = 295,
.description = gBeedrillPokedexText,
.pokemonScale = 366,
.pokemonOffset = 2,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_PIDGEY] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("TINY BIRD"),
.height = 3,
.weight = 18,
.description = gPidgeyPokedexText,
.pokemonScale = 508,
.pokemonOffset = -3,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_PIDGEOTTO] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BIRD"),
.height = 11,
.weight = 300,
.description = gPidgeottoPokedexText,
.pokemonScale = 331,
.pokemonOffset = 10,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_PIDGEOT] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BIRD"),
.height = 15,
.weight = 395,
.description = gPidgeotPokedexText,
.pokemonScale = 269,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_RATTATA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MOUSE"),
.height = 3,
.weight = 35,
.description = gRattataPokedexText,
.pokemonScale = 481,
.pokemonOffset = 21,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_RATICATE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MOUSE"),
.height = 7,
.weight = 185,
.description = gRaticatePokedexText,
.pokemonScale = 459,
.pokemonOffset = 18,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SPEAROW] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("TINY BIRD"),
.height = 3,
.weight = 20,
.description = gSpearowPokedexText,
.pokemonScale = 571,
.pokemonOffset = 22,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_FEAROW] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BEAK"),
.height = 12,
.weight = 380,
.description = gFearowPokedexText,
.pokemonScale = 278,
.pokemonOffset = 1,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_EKANS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SNAKE"),
.height = 20,
.weight = 69,
.description = gEkansPokedexText,
.pokemonScale = 298,
.pokemonOffset = 12,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ARBOK] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("COBRA"),
.height = 35,
.weight = 650,
.description = gArbokPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 296,
.trainerOffset = 2,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_PIKACHU] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MOUSE"),
.height = 4,
.weight = 60,
.description = gPikachuPokedexText,
.pokemonScale = 479,
.pokemonOffset = 19,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_RAICHU] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MOUSE"),
.height = 8,
.weight = 300,
.description = gRaichuPokedexText,
.pokemonScale = 426,
.pokemonOffset = 13,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SANDSHREW] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MOUSE"),
.height = 6,
.weight = 120,
.description = gSandshrewPokedexText,
.pokemonScale = 365,
.pokemonOffset = 18,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SANDSLASH] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MOUSE"),
.height = 10,
.weight = 295,
.description = gSandslashPokedexText,
.pokemonScale = 341,
.pokemonOffset = 11,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_NIDORAN_F] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("POISON PIN"),
.height = 4,
.weight = 70,
.description = gNidoranFPokedexText,
.pokemonScale = 488,
.pokemonOffset = 21,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_NIDORINA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("POISON PIN"),
.height = 8,
.weight = 200,
.description = gNidorinaPokedexText,
.pokemonScale = 381,
.pokemonOffset = 15,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_NIDOQUEEN] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DRILL"),
.height = 13,
.weight = 600,
.description = gNidoqueenPokedexText,
.pokemonScale = 293,
.pokemonOffset = 4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_NIDORAN_M] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("POISON PIN"),
.height = 5,
.weight = 90,
.description = gNidoranMPokedexText,
.pokemonScale = 511,
.pokemonOffset = 20,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_NIDORINO] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("POISON PIN"),
.height = 9,
.weight = 195,
.description = gNidorinoPokedexText,
.pokemonScale = 408,
.pokemonOffset = 15,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_NIDOKING] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DRILL"),
.height = 14,
.weight = 620,
.description = gNidokingPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CLEFAIRY] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FAIRY"),
.height = 6,
.weight = 75,
.description = gClefairyPokedexText,
.pokemonScale = 441,
.pokemonOffset = 20,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CLEFABLE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FAIRY"),
.height = 13,
.weight = 400,
.description = gClefablePokedexText,
.pokemonScale = 256,
.pokemonOffset = 5,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_VULPIX] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FOX"),
.height = 6,
.weight = 99,
.description = gVulpixPokedexText,
.pokemonScale = 542,
.pokemonOffset = 19,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_NINETALES] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FOX"),
.height = 11,
.weight = 199,
.description = gNinetalesPokedexText,
.pokemonScale = 339,
.pokemonOffset = 10,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_JIGGLYPUFF] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BALLOON"),
.height = 5,
.weight = 55,
.description = gJigglypuffPokedexText,
.pokemonScale = 433,
.pokemonOffset = 2,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_WIGGLYTUFF] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BALLOON"),
.height = 10,
.weight = 120,
.description = gWigglytuffPokedexText,
.pokemonScale = 328,
.pokemonOffset = 11,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ZUBAT] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BAT"),
.height = 8,
.weight = 75,
.description = gZubatPokedexText,
.pokemonScale = 362,
.pokemonOffset = -5,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GOLBAT] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BAT"),
.height = 16,
.weight = 550,
.description = gGolbatPokedexText,
.pokemonScale = 256,
.pokemonOffset = 1,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ODDISH] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WEED"),
.height = 5,
.weight = 54,
.description = gOddishPokedexText,
.pokemonScale = 423,
.pokemonOffset = 19,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GLOOM] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WEED"),
.height = 8,
.weight = 86,
.description = gGloomPokedexText,
.pokemonScale = 329,
.pokemonOffset = 13,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_VILEPLUME] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FLOWER"),
.height = 12,
.weight = 186,
.description = gVileplumePokedexText,
.pokemonScale = 256,
.pokemonOffset = 4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_PARAS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MUSHROOM"),
.height = 3,
.weight = 54,
.description = gParasPokedexText,
.pokemonScale = 593,
.pokemonOffset = 22,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_PARASECT] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MUSHROOM"),
.height = 10,
.weight = 295,
.description = gParasectPokedexText,
.pokemonScale = 307,
.pokemonOffset = 8,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_VENONAT] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("INSECT"),
.height = 10,
.weight = 300,
.description = gVenonatPokedexText,
.pokemonScale = 360,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = -1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_VENOMOTH] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("POISON MOTH"),
.height = 15,
.weight = 125,
.description = gVenomothPokedexText,
.pokemonScale = 285,
.pokemonOffset = 2,
.trainerScale = 256,
.trainerOffset = 1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_DIGLETT] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MOLE"),
.height = 2,
.weight = 8,
.description = gDiglettPokedexText,
.pokemonScale = 833,
.pokemonOffset = 25,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_DUGTRIO] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MOLE"),
.height = 7,
.weight = 333,
.description = gDugtrioPokedexText,
.pokemonScale = 406,
.pokemonOffset = 18,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MEOWTH] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SCRATCH CAT"),
.height = 4,
.weight = 42,
.description = gMeowthPokedexText,
.pokemonScale = 480,
.pokemonOffset = 19,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_PERSIAN] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("CLASSY CAT"),
.height = 10,
.weight = 320,
.description = gPersianPokedexText,
.pokemonScale = 320,
.pokemonOffset = 10,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_PSYDUCK] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DUCK"),
.height = 8,
.weight = 196,
.description = gPsyduckPokedexText,
.pokemonScale = 369,
.pokemonOffset = 15,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GOLDUCK] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DUCK"),
.height = 17,
.weight = 766,
.description = gGolduckPokedexText,
.pokemonScale = 256,
.pokemonOffset = 1,
.trainerScale = 273,
.trainerOffset = 1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MANKEY] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("PIG MONKEY"),
.height = 5,
.weight = 280,
.description = gMankeyPokedexText,
.pokemonScale = 404,
.pokemonOffset = 19,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_PRIMEAPE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("PIG MONKEY"),
.height = 10,
.weight = 320,
.description = gPrimeapePokedexText,
.pokemonScale = 326,
.pokemonOffset = 10,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GROWLITHE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("PUPPY"),
.height = 7,
.weight = 190,
.description = gGrowlithePokedexText,
.pokemonScale = 346,
.pokemonOffset = 14,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ARCANINE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LEGENDARY"),
.height = 19,
.weight = 1550,
.description = gArcaninePokedexText,
.pokemonScale = 256,
.pokemonOffset = 1,
.trainerScale = 312,
.trainerOffset = 4,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_POLIWAG] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("TADPOLE"),
.height = 6,
.weight = 124,
.description = gPoliwagPokedexText,
.pokemonScale = 369,
.pokemonOffset = 20,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_POLIWHIRL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("TADPOLE"),
.height = 10,
.weight = 200,
.description = gPoliwhirlPokedexText,
.pokemonScale = 288,
.pokemonOffset = 11,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_POLIWRATH] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("TADPOLE"),
.height = 13,
.weight = 540,
.description = gPoliwrathPokedexText,
.pokemonScale = 256,
.pokemonOffset = 6,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ABRA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("PSI"),
.height = 9,
.weight = 195,
.description = gAbraPokedexText,
.pokemonScale = 363,
.pokemonOffset = 14,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_KADABRA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("PSI"),
.height = 13,
.weight = 565,
.description = gKadabraPokedexText,
.pokemonScale = 256,
.pokemonOffset = 3,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ALAKAZAM] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("PSI"),
.height = 15,
.weight = 480,
.description = gAlakazamPokedexText,
.pokemonScale = 256,
.pokemonOffset = 3,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MACHOP] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SUPERPOWER"),
.height = 8,
.weight = 195,
.description = gMachopPokedexText,
.pokemonScale = 342,
.pokemonOffset = 14,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MACHOKE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SUPERPOWER"),
.height = 15,
.weight = 705,
.description = gMachokePokedexText,
.pokemonScale = 323,
.pokemonOffset = 9,
.trainerScale = 257,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MACHAMP] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SUPERPOWER"),
.height = 16,
.weight = 1300,
.description = gMachampPokedexText,
.pokemonScale = 280,
.pokemonOffset = 1,
.trainerScale = 269,
.trainerOffset = -1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_BELLSPROUT] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FLOWER"),
.height = 7,
.weight = 40,
.description = gBellsproutPokedexText,
.pokemonScale = 354,
.pokemonOffset = 16,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_WEEPINBELL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FLYCATCHER"),
.height = 10,
.weight = 64,
.description = gWeepinbellPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_VICTREEBEL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FLYCATCHER"),
.height = 17,
.weight = 155,
.description = gVictreebelPokedexText,
.pokemonScale = 256,
.pokemonOffset = 1,
.trainerScale = 312,
.trainerOffset = 3,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_TENTACOOL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("JELLYFISH"),
.height = 9,
.weight = 455,
.description = gTentacoolPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_TENTACRUEL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("JELLYFISH"),
.height = 16,
.weight = 550,
.description = gTentacruelPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 312,
.trainerOffset = 1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GEODUDE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ROCK"),
.height = 4,
.weight = 200,
.description = gGeodudePokedexText,
.pokemonScale = 347,
.pokemonOffset = 18,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GRAVELER] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ROCK"),
.height = 10,
.weight = 1050,
.description = gGravelerPokedexText,
.pokemonScale = 256,
.pokemonOffset = 2,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GOLEM] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MEGATON"),
.height = 14,
.weight = 3000,
.description = gGolemPokedexText,
.pokemonScale = 256,
.pokemonOffset = 3,
.trainerScale = 296,
.trainerOffset = 2,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_PONYTA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FIRE HORSE"),
.height = 10,
.weight = 300,
.description = gPonytaPokedexText,
.pokemonScale = 283,
.pokemonOffset = 8,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_RAPIDASH] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FIRE HORSE"),
.height = 17,
.weight = 950,
.description = gRapidashPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 289,
.trainerOffset = 1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SLOWPOKE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DOPEY"),
.height = 12,
.weight = 360,
.description = gSlowpokePokedexText,
.pokemonScale = 256,
.pokemonOffset = 10,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SLOWBRO] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("HERMIT CRAB"),
.height = 16,
.weight = 785,
.description = gSlowbroPokedexText,
.pokemonScale = 256,
.pokemonOffset = 6,
.trainerScale = 296,
.trainerOffset = 2,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MAGNEMITE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MAGNET"),
.height = 3,
.weight = 60,
.description = gMagnemitePokedexText,
.pokemonScale = 288,
.pokemonOffset = -9,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MAGNETON] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MAGNET"),
.height = 10,
.weight = 600,
.description = gMagnetonPokedexText,
.pokemonScale = 292,
.pokemonOffset = 1,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_FARFETCHD] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WILD DUCK"),
.height = 8,
.weight = 150,
.description = gFarfetchdPokedexText,
.pokemonScale = 330,
.pokemonOffset = 2,
.trainerScale = 293,
.trainerOffset = 2,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_DODUO] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("TWIN BIRD"),
.height = 14,
.weight = 392,
.description = gDoduoPokedexText,
.pokemonScale = 256,
.pokemonOffset = 3,
.trainerScale = 257,
.trainerOffset = -1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_DODRIO] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("TRIPLE BIRD"),
.height = 18,
.weight = 852,
.description = gDodrioPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 268,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SEEL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SEA LION"),
.height = 11,
.weight = 900,
.description = gSeelPokedexText,
.pokemonScale = 297,
.pokemonOffset = 8,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_DEWGONG] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SEA LION"),
.height = 17,
.weight = 1200,
.description = gDewgongPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 275,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GRIMER] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SLUDGE"),
.height = 9,
.weight = 300,
.description = gGrimerPokedexText,
.pokemonScale = 258,
.pokemonOffset = 10,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MUK] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SLUDGE"),
.height = 12,
.weight = 300,
.description = gMukPokedexText,
.pokemonScale = 256,
.pokemonOffset = 2,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SHELLDER] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BIVALVE"),
.height = 3,
.weight = 40,
.description = gShellderPokedexText,
.pokemonScale = 675,
.pokemonOffset = 24,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CLOYSTER] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BIVALVE"),
.height = 15,
.weight = 1325,
.description = gCloysterPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 269,
.trainerOffset = 1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GASTLY] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("GAS"),
.height = 13,
.weight = 1,
.description = gGastlyPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_HAUNTER] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("GAS"),
.height = 16,
.weight = 1,
.description = gHaunterPokedexText,
.pokemonScale = 256,
.pokemonOffset = 2,
.trainerScale = 293,
.trainerOffset = 2,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GENGAR] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SHADOW"),
.height = 15,
.weight = 405,
.description = gGengarPokedexText,
.pokemonScale = 256,
.pokemonOffset = 2,
.trainerScale = 302,
.trainerOffset = 2,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ONIX] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ROCK SNAKE"),
.height = 88,
.weight = 2100,
.description = gOnixPokedexText,
.pokemonScale = 256,
.pokemonOffset = 1,
.trainerScale = 515,
.trainerOffset = 14,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_DROWZEE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("HYPNOSIS"),
.height = 10,
.weight = 324,
.description = gDrowzeePokedexText,
.pokemonScale = 274,
.pokemonOffset = 6,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_HYPNO] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("HYPNOSIS"),
.height = 16,
.weight = 756,
.description = gHypnoPokedexText,
.pokemonScale = 256,
.pokemonOffset = 3,
.trainerScale = 257,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_KRABBY] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("RIVER CRAB"),
.height = 4,
.weight = 65,
.description = gKrabbyPokedexText,
.pokemonScale = 469,
.pokemonOffset = 20,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_KINGLER] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("PINCER"),
.height = 13,
.weight = 600,
.description = gKinglerPokedexText,
.pokemonScale = 256,
.pokemonOffset = 2,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_VOLTORB] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BALL"),
.height = 5,
.weight = 104,
.description = gVoltorbPokedexText,
.pokemonScale = 364,
.pokemonOffset = -8,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ELECTRODE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BALL"),
.height = 12,
.weight = 666,
.description = gElectrodePokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_EXEGGCUTE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("EGG"),
.height = 4,
.weight = 25,
.description = gExeggcutePokedexText,
.pokemonScale = 489,
.pokemonOffset = -4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_EXEGGUTOR] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("COCONUT"),
.height = 20,
.weight = 1200,
.description = gExeggutorPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 309,
.trainerOffset = 5,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CUBONE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LONELY"),
.height = 4,
.weight = 65,
.description = gCubonePokedexText,
.pokemonScale = 545,
.pokemonOffset = 21,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MAROWAK] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BONE KEEPER"),
.height = 10,
.weight = 450,
.description = gMarowakPokedexText,
.pokemonScale = 293,
.pokemonOffset = 12,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_HITMONLEE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("KICKING"),
.height = 15,
.weight = 498,
.description = gHitmonleePokedexText,
.pokemonScale = 256,
.pokemonOffset = 3,
.trainerScale = 259,
.trainerOffset = 1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_HITMONCHAN] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("PUNCHING"),
.height = 14,
.weight = 502,
.description = gHitmonchanPokedexText,
.pokemonScale = 256,
.pokemonOffset = 2,
.trainerScale = 277,
.trainerOffset = 2,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_LICKITUNG] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LICKING"),
.height = 12,
.weight = 655,
.description = gLickitungPokedexText,
.pokemonScale = 256,
.pokemonOffset = 4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_KOFFING] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("POISON GAS"),
.height = 6,
.weight = 10,
.description = gKoffingPokedexText,
.pokemonScale = 369,
.pokemonOffset = -1,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_WEEZING] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("POISON GAS"),
.height = 12,
.weight = 95,
.description = gWeezingPokedexText,
.pokemonScale = 305,
.pokemonOffset = 3,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_RHYHORN] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SPIKES"),
.height = 10,
.weight = 1150,
.description = gRhyhornPokedexText,
.pokemonScale = 267,
.pokemonOffset = 6,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_RHYDON] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DRILL"),
.height = 19,
.weight = 1200,
.description = gRhydonPokedexText,
.pokemonScale = 256,
.pokemonOffset = 1,
.trainerScale = 299,
.trainerOffset = 2,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CHANSEY] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("EGG"),
.height = 11,
.weight = 346,
.description = gChanseyPokedexText,
.pokemonScale = 257,
.pokemonOffset = 7,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_TANGELA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("VINE"),
.height = 10,
.weight = 350,
.description = gTangelaPokedexText,
.pokemonScale = 304,
.pokemonOffset = 1,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_KANGASKHAN] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("PARENT"),
.height = 22,
.weight = 800,
.description = gKangaskhanPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 387,
.trainerOffset = 8,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_HORSEA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DRAGON"),
.height = 4,
.weight = 80,
.description = gHorseaPokedexText,
.pokemonScale = 399,
.pokemonOffset = -1,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SEADRA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DRAGON"),
.height = 12,
.weight = 250,
.description = gSeadraPokedexText,
.pokemonScale = 299,
.pokemonOffset = 3,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GOLDEEN] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("GOLDFISH"),
.height = 6,
.weight = 150,
.description = gGoldeenPokedexText,
.pokemonScale = 379,
.pokemonOffset = 4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SEAKING] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("GOLDFISH"),
.height = 13,
.weight = 390,
.description = gSeakingPokedexText,
.pokemonScale = 256,
.pokemonOffset = 3,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_STARYU] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("STAR SHAPE"),
.height = 8,
.weight = 345,
.description = gStaryuPokedexText,
.pokemonScale = 326,
.pokemonOffset = 1,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_STARMIE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MYSTERIOUS"),
.height = 11,
.weight = 800,
.description = gStarmiePokedexText,
.pokemonScale = 301,
.pokemonOffset = 3,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MR_MIME] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BARRIER"),
.height = 13,
.weight = 545,
.description = gMrmimePokedexText,
.pokemonScale = 258,
.pokemonOffset = 6,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SCYTHER] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MANTIS"),
.height = 15,
.weight = 560,
.description = gScytherPokedexText,
.pokemonScale = 256,
.pokemonOffset = 1,
.trainerScale = 293,
.trainerOffset = 2,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_JYNX] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("HUMAN SHAPE"),
.height = 14,
.weight = 406,
.description = gJynxPokedexText,
.pokemonScale = 256,
.pokemonOffset = 3,
.trainerScale = 300,
.trainerOffset = 1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ELECTABUZZ] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ELECTRIC"),
.height = 11,
.weight = 300,
.description = gElectabuzzPokedexText,
.pokemonScale = 351,
.pokemonOffset = 8,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MAGMAR] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SPITFIRE"),
.height = 13,
.weight = 445,
.description = gMagmarPokedexText,
.pokemonScale = 277,
.pokemonOffset = 5,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_PINSIR] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("STAG BEETLE"),
.height = 15,
.weight = 550,
.description = gPinsirPokedexText,
.pokemonScale = 256,
.pokemonOffset = 2,
.trainerScale = 257,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_TAUROS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WILD BULL"),
.height = 14,
.weight = 884,
.description = gTaurosPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MAGIKARP] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FISH"),
.height = 9,
.weight = 100,
.description = gMagikarpPokedexText,
.pokemonScale = 310,
.pokemonOffset = 4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GYARADOS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ATROCIOUS"),
.height = 65,
.weight = 2350,
.description = gGyaradosPokedexText,
.pokemonScale = 256,
.pokemonOffset = 6,
.trainerScale = 481,
.trainerOffset = 13,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_LAPRAS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("TRANSPORT"),
.height = 25,
.weight = 2200,
.description = gLaprasPokedexText,
.pokemonScale = 257,
.pokemonOffset = 10,
.trainerScale = 423,
.trainerOffset = 8,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_DITTO] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("TRANSFORM"),
.height = 3,
.weight = 40,
.description = gDittoPokedexText,
.pokemonScale = 633,
.pokemonOffset = 23,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_EEVEE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("EVOLUTION"),
.height = 3,
.weight = 65,
.description = gEeveePokedexText,
.pokemonScale = 476,
.pokemonOffset = 18,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_VAPOREON] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BUBBLE JET"),
.height = 10,
.weight = 290,
.description = gVaporeonPokedexText,
.pokemonScale = 316,
.pokemonOffset = 8,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_JOLTEON] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LIGHTNING"),
.height = 8,
.weight = 245,
.description = gJolteonPokedexText,
.pokemonScale = 283,
.pokemonOffset = 8,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_FLAREON] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FLAME"),
.height = 9,
.weight = 250,
.description = gFlareonPokedexText,
.pokemonScale = 306,
.pokemonOffset = 12,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_PORYGON] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("VIRTUAL"),
.height = 8,
.weight = 365,
.description = gPorygonPokedexText,
.pokemonScale = 328,
.pokemonOffset = 15,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_OMANYTE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SPIRAL"),
.height = 4,
.weight = 75,
.description = gOmanytePokedexText,
.pokemonScale = 521,
.pokemonOffset = 22,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_OMASTAR] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SPIRAL"),
.height = 10,
.weight = 350,
.description = gOmastarPokedexText,
.pokemonScale = 307,
.pokemonOffset = 7,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_KABUTO] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SHELLFISH"),
.height = 5,
.weight = 115,
.description = gKabutoPokedexText,
.pokemonScale = 454,
.pokemonOffset = 21,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_KABUTOPS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SHELLFISH"),
.height = 13,
.weight = 405,
.description = gKabutopsPokedexText,
.pokemonScale = 271,
.pokemonOffset = 3,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_AERODACTYL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FOSSIL"),
.height = 18,
.weight = 590,
.description = gAerodactylPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 302,
.trainerOffset = 4,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SNORLAX] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SLEEPING"),
.height = 21,
.weight = 4600,
.description = gSnorlaxPokedexText,
.pokemonScale = 256,
.pokemonOffset = 4,
.trainerScale = 423,
.trainerOffset = 11,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ARTICUNO] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FREEZE"),
.height = 17,
.weight = 554,
.description = gArticunoPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 309,
.trainerOffset = 2,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ZAPDOS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ELECTRIC"),
.height = 16,
.weight = 526,
.description = gZapdosPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 318,
.trainerOffset = 3,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MOLTRES] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FLAME"),
.height = 20,
.weight = 600,
.description = gMoltresPokedexText,
.pokemonScale = 270,
.pokemonOffset = 0,
.trainerScale = 387,
.trainerOffset = 8,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_DRATINI] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DRAGON"),
.height = 18,
.weight = 33,
.description = gDratiniPokedexText,
.pokemonScale = 256,
.pokemonOffset = 8,
.trainerScale = 386,
.trainerOffset = 6,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_DRAGONAIR] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DRAGON"),
.height = 40,
.weight = 165,
.description = gDragonairPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 411,
.trainerOffset = 5,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_DRAGONITE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DRAGON"),
.height = 22,
.weight = 2100,
.description = gDragonitePokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 309,
.trainerOffset = 4,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MEWTWO] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("GENETIC"),
.height = 20,
.weight = 1220,
.description = gMewtwoPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 309,
.trainerOffset = 4,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MEW] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("NEW SPECIES"),
.height = 4,
.weight = 40,
.description = gMewPokedexText,
.pokemonScale = 457,
.pokemonOffset = -2,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CHIKORITA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LEAF"),
.height = 9,
.weight = 64,
.description = gChikoritaPokedexText,
.pokemonScale = 512,
.pokemonOffset = 20,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_BAYLEEF] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LEAF"),
.height = 12,
.weight = 158,
.description = gBayleefPokedexText,
.pokemonScale = 296,
.pokemonOffset = 4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MEGANIUM] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("HERB"),
.height = 18,
.weight = 1005,
.description = gMeganiumPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 277,
.trainerOffset = 1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CYNDAQUIL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FIRE MOUSE"),
.height = 5,
.weight = 79,
.description = gCyndaquilPokedexText,
.pokemonScale = 539,
.pokemonOffset = 21,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_QUILAVA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("VOLCANO"),
.height = 9,
.weight = 190,
.description = gQuilavaPokedexText,
.pokemonScale = 329,
.pokemonOffset = 11,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_TYPHLOSION] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("VOLCANO"),
.height = 17,
.weight = 795,
.description = gTyphlosionPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 268,
.trainerOffset = 1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_TOTODILE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BIG JAW"),
.height = 6,
.weight = 95,
.description = gTotodilePokedexText,
.pokemonScale = 487,
.pokemonOffset = 20,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CROCONAW] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BIG JAW"),
.height = 11,
.weight = 250,
.description = gCroconawPokedexText,
.pokemonScale = 378,
.pokemonOffset = 13,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_FERALIGATR] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BIG JAW"),
.height = 23,
.weight = 888,
.description = gFeraligatrPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 342,
.trainerOffset = 7,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SENTRET] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SCOUT"),
.height = 8,
.weight = 60,
.description = gSentretPokedexText,
.pokemonScale = 439,
.pokemonOffset = 12,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_FURRET] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LONG BODY"),
.height = 18,
.weight = 325,
.description = gFurretPokedexText,
.pokemonScale = 346,
.pokemonOffset = 11,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_HOOTHOOT] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("OWL"),
.height = 7,
.weight = 212,
.description = gHoothootPokedexText,
.pokemonScale = 380,
.pokemonOffset = -2,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_NOCTOWL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("OWL"),
.height = 16,
.weight = 408,
.description = gNoctowlPokedexText,
.pokemonScale = 278,
.pokemonOffset = 3,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_LEDYBA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FIVE STAR"),
.height = 10,
.weight = 108,
.description = gLedybaPokedexText,
.pokemonScale = 256,
.pokemonOffset = 4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_LEDIAN] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FIVE STAR"),
.height = 14,
.weight = 356,
.description = gLedianPokedexText,
.pokemonScale = 256,
.pokemonOffset = 2,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SPINARAK] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("STRING SPIT"),
.height = 5,
.weight = 85,
.description = gSpinarakPokedexText,
.pokemonScale = 414,
.pokemonOffset = 21,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ARIADOS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LONG LEG"),
.height = 11,
.weight = 335,
.description = gAriadosPokedexText,
.pokemonScale = 316,
.pokemonOffset = 8,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CROBAT] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BAT"),
.height = 18,
.weight = 750,
.description = gCrobatPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 281,
.trainerOffset = 1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CHINCHOU] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ANGLER"),
.height = 5,
.weight = 120,
.description = gChinchouPokedexText,
.pokemonScale = 424,
.pokemonOffset = -2,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_LANTURN] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LIGHT"),
.height = 12,
.weight = 225,
.description = gLanturnPokedexText,
.pokemonScale = 269,
.pokemonOffset = 6,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_PICHU] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("TINY MOUSE"),
.height = 3,
.weight = 20,
.description = gPichuPokedexText,
.pokemonScale = 508,
.pokemonOffset = 20,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CLEFFA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("STAR SHAPE"),
.height = 3,
.weight = 30,
.description = gCleffaPokedexText,
.pokemonScale = 462,
.pokemonOffset = 23,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_IGGLYBUFF] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BALLOON"),
.height = 3,
.weight = 10,
.description = gIgglybuffPokedexText,
.pokemonScale = 457,
.pokemonOffset = -1,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_TOGEPI] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SPIKE BALL"),
.height = 3,
.weight = 15,
.description = gTogepiPokedexText,
.pokemonScale = 507,
.pokemonOffset = 23,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_TOGETIC] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("HAPPINESS"),
.height = 6,
.weight = 32,
.description = gTogeticPokedexText,
.pokemonScale = 424,
.pokemonOffset = 17,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_NATU] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("TINY BIRD"),
.height = 2,
.weight = 20,
.description = gNatuPokedexText,
.pokemonScale = 610,
.pokemonOffset = 25,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_XATU] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MYSTIC"),
.height = 15,
.weight = 150,
.description = gXatuPokedexText,
.pokemonScale = 256,
.pokemonOffset = 6,
.trainerScale = 318,
.trainerOffset = 4,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MAREEP] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WOOL"),
.height = 6,
.weight = 78,
.description = gMareepPokedexText,
.pokemonScale = 379,
.pokemonOffset = 18,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_FLAAFFY] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WOOL"),
.height = 8,
.weight = 133,
.description = gFlaaffyPokedexText,
.pokemonScale = 372,
.pokemonOffset = 15,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_AMPHAROS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LIGHT"),
.height = 14,
.weight = 615,
.description = gAmpharosPokedexText,
.pokemonScale = 256,
.pokemonOffset = 4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_BELLOSSOM] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FLOWER"),
.height = 4,
.weight = 58,
.description = gBellossomPokedexText,
.pokemonScale = 472,
.pokemonOffset = 21,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MARILL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("AQUA MOUSE"),
.height = 4,
.weight = 85,
.description = gMarillPokedexText,
.pokemonScale = 476,
.pokemonOffset = 20,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_AZUMARILL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("AQUA RABBIT"),
.height = 8,
.weight = 285,
.description = gAzumarillPokedexText,
.pokemonScale = 448,
.pokemonOffset = 16,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SUDOWOODO] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("IMITATION"),
.height = 12,
.weight = 380,
.description = gSudowoodoPokedexText,
.pokemonScale = 305,
.pokemonOffset = 8,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_POLITOED] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FROG"),
.height = 11,
.weight = 339,
.description = gPolitoedPokedexText,
.pokemonScale = 289,
.pokemonOffset = 6,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_HOPPIP] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("COTTONWEED"),
.height = 4,
.weight = 5,
.description = gHoppipPokedexText,
.pokemonScale = 562,
.pokemonOffset = -7,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SKIPLOOM] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("COTTONWEED"),
.height = 6,
.weight = 10,
.description = gSkiploomPokedexText,
.pokemonScale = 387,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_JUMPLUFF] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("COTTONWEED"),
.height = 8,
.weight = 30,
.description = gJumpluffPokedexText,
.pokemonScale = 418,
.pokemonOffset = -4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_AIPOM] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LONG TAIL"),
.height = 8,
.weight = 115,
.description = gAipomPokedexText,
.pokemonScale = 363,
.pokemonOffset = 6,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SUNKERN] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SEED"),
.height = 3,
.weight = 18,
.description = gSunkernPokedexText,
.pokemonScale = 541,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SUNFLORA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SUN"),
.height = 8,
.weight = 85,
.description = gSunfloraPokedexText,
.pokemonScale = 444,
.pokemonOffset = 15,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_YANMA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("CLEAR WING"),
.height = 12,
.weight = 380,
.description = gYanmaPokedexText,
.pokemonScale = 274,
.pokemonOffset = -1,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_WOOPER] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WATER FISH"),
.height = 4,
.weight = 85,
.description = gWooperPokedexText,
.pokemonScale = 479,
.pokemonOffset = 21,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_QUAGSIRE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WATER FISH"),
.height = 14,
.weight = 750,
.description = gQuagsirePokedexText,
.pokemonScale = 256,
.pokemonOffset = 4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ESPEON] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SUN"),
.height = 9,
.weight = 265,
.description = gEspeonPokedexText,
.pokemonScale = 363,
.pokemonOffset = 14,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_UMBREON] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MOONLIGHT"),
.height = 10,
.weight = 270,
.description = gUmbreonPokedexText,
.pokemonScale = 317,
.pokemonOffset = 11,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MURKROW] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DARKNESS"),
.height = 5,
.weight = 21,
.description = gMurkrowPokedexText,
.pokemonScale = 401,
.pokemonOffset = -8,
.trainerScale = 256,
.trainerOffset = 1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SLOWKING] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ROYAL"),
.height = 20,
.weight = 795,
.description = gSlowkingPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 309,
.trainerOffset = 5,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MISDREAVUS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SCREECH"),
.height = 7,
.weight = 10,
.description = gMisdreavusPokedexText,
.pokemonScale = 407,
.pokemonOffset = -8,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_UNOWN] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SYMBOL"),
.height = 5,
.weight = 50,
.description = gUnownPokedexText,
.pokemonScale = 411,
.pokemonOffset = 2,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_WOBBUFFET] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("PATIENT"),
.height = 13,
.weight = 285,
.description = gWobbuffetPokedexText,
.pokemonScale = 274,
.pokemonOffset = 4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GIRAFARIG] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LONG NECK"),
.height = 15,
.weight = 415,
.description = gGirafarigPokedexText,
.pokemonScale = 281,
.pokemonOffset = 1,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_PINECO] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BAGWORM"),
.height = 6,
.weight = 72,
.description = gPinecoPokedexText,
.pokemonScale = 445,
.pokemonOffset = 2,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_FORRETRESS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BAGWORM"),
.height = 12,
.weight = 1258,
.description = gForretressPokedexText,
.pokemonScale = 293,
.pokemonOffset = 5,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_DUNSPARCE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LAND SNAKE"),
.height = 15,
.weight = 140,
.description = gDunsparcePokedexText,
.pokemonScale = 316,
.pokemonOffset = 17,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GLIGAR] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FLYSCORPION"),
.height = 11,
.weight = 648,
.description = gGligarPokedexText,
.pokemonScale = 350,
.pokemonOffset = -1,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_STEELIX] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("IRON SNAKE"),
.height = 92,
.weight = 4000,
.description = gSteelixPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 516,
.trainerOffset = 13,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SNUBBULL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FAIRY"),
.height = 6,
.weight = 78,
.description = gSnubbullPokedexText,
.pokemonScale = 465,
.pokemonOffset = 19,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GRANBULL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FAIRY"),
.height = 14,
.weight = 487,
.description = gGranbullPokedexText,
.pokemonScale = 256,
.pokemonOffset = 4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_QWILFISH] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BALLOON"),
.height = 5,
.weight = 39,
.description = gQwilfishPokedexText,
.pokemonScale = 430,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SCIZOR] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("PINCER"),
.height = 18,
.weight = 1180,
.description = gScizorPokedexText,
.pokemonScale = 278,
.pokemonOffset = 1,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SHUCKLE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MOLD"),
.height = 6,
.weight = 205,
.description = gShucklePokedexText,
.pokemonScale = 485,
.pokemonOffset = 18,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_HERACROSS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SINGLE HORN"),
.height = 15,
.weight = 540,
.description = gHeracrossPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SNEASEL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SHARP CLAW"),
.height = 9,
.weight = 280,
.description = gSneaselPokedexText,
.pokemonScale = 413,
.pokemonOffset = -3,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_TEDDIURSA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LITTLE BEAR"),
.height = 6,
.weight = 88,
.description = gTeddiursaPokedexText,
.pokemonScale = 455,
.pokemonOffset = 19,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_URSARING] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("HIBERNATOR"),
.height = 18,
.weight = 1258,
.description = gUrsaringPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SLUGMA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LAVA"),
.height = 7,
.weight = 350,
.description = gSlugmaPokedexText,
.pokemonScale = 329,
.pokemonOffset = 15,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MAGCARGO] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LAVA"),
.height = 8,
.weight = 550,
.description = gMagcargoPokedexText,
.pokemonScale = 332,
.pokemonOffset = 15,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SWINUB] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("PIG"),
.height = 4,
.weight = 65,
.description = gSwinubPokedexText,
.pokemonScale = 324,
.pokemonOffset = 20,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_PILOSWINE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SWINE"),
.height = 11,
.weight = 558,
.description = gPiloswinePokedexText,
.pokemonScale = 306,
.pokemonOffset = 10,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CORSOLA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("CORAL"),
.height = 6,
.weight = 50,
.description = gCorsolaPokedexText,
.pokemonScale = 410,
.pokemonOffset = 15,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_REMORAID] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("JET"),
.height = 6,
.weight = 120,
.description = gRemoraidPokedexText,
.pokemonScale = 316,
.pokemonOffset = 4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_OCTILLERY] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("JET"),
.height = 9,
.weight = 285,
.description = gOctilleryPokedexText,
.pokemonScale = 296,
.pokemonOffset = 3,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_DELIBIRD] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DELIVERY"),
.height = 9,
.weight = 160,
.description = gDelibirdPokedexText,
.pokemonScale = 293,
.pokemonOffset = 11,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MANTINE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("KITE"),
.height = 21,
.weight = 2200,
.description = gMantinePokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 342,
.trainerOffset = 7,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SKARMORY] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ARMOR BIRD"),
.height = 17,
.weight = 505,
.description = gSkarmoryPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 271,
.trainerOffset = 1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_HOUNDOUR] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DARK"),
.height = 6,
.weight = 108,
.description = gHoundourPokedexText,
.pokemonScale = 393,
.pokemonOffset = 16,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_HOUNDOOM] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DARK"),
.height = 14,
.weight = 350,
.description = gHoundoomPokedexText,
.pokemonScale = 256,
.pokemonOffset = 4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_KINGDRA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DRAGON"),
.height = 18,
.weight = 1520,
.description = gKingdraPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 287,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_PHANPY] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LONG NOSE"),
.height = 5,
.weight = 335,
.description = gPhanpyPokedexText,
.pokemonScale = 465,
.pokemonOffset = 21,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_DONPHAN] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ARMOR"),
.height = 11,
.weight = 1200,
.description = gDonphanPokedexText,
.pokemonScale = 313,
.pokemonOffset = 9,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_PORYGON2] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("VIRTUAL"),
.height = 6,
.weight = 325,
.description = gPorygon2PokedexText,
.pokemonScale = 320,
.pokemonOffset = 17,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_STANTLER] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BIG HORN"),
.height = 14,
.weight = 712,
.description = gStantlerPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SMEARGLE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("PAINTER"),
.height = 12,
.weight = 580,
.description = gSmearglePokedexText,
.pokemonScale = 287,
.pokemonOffset = 5,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_TYROGUE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SCUFFLE"),
.height = 7,
.weight = 210,
.description = gTyroguePokedexText,
.pokemonScale = 292,
.pokemonOffset = 9,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_HITMONTOP] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("HANDSTAND"),
.height = 14,
.weight = 480,
.description = gHitmontopPokedexText,
.pokemonScale = 256,
.pokemonOffset = 2,
.trainerScale = 257,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SMOOCHUM] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("KISS"),
.height = 4,
.weight = 60,
.description = gSmoochumPokedexText,
.pokemonScale = 440,
.pokemonOffset = 20,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ELEKID] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ELECTRIC"),
.height = 6,
.weight = 235,
.description = gElekidPokedexText,
.pokemonScale = 363,
.pokemonOffset = 14,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MAGBY] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LIVE COAL"),
.height = 7,
.weight = 214,
.description = gMagbyPokedexText,
.pokemonScale = 284,
.pokemonOffset = 13,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MILTANK] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MILK COW"),
.height = 12,
.weight = 755,
.description = gMiltankPokedexText,
.pokemonScale = 280,
.pokemonOffset = 5,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_BLISSEY] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("HAPPINESS"),
.height = 15,
.weight = 468,
.description = gBlisseyPokedexText,
.pokemonScale = 256,
.pokemonOffset = 4,
.trainerScale = 310,
.trainerOffset = 3,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_RAIKOU] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("THUNDER"),
.height = 19,
.weight = 1780,
.description = gRaikouPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 345,
.trainerOffset = 7,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ENTEI] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("VOLCANO"),
.height = 21,
.weight = 1980,
.description = gEnteiPokedexText,
.pokemonScale = 259,
.pokemonOffset = 0,
.trainerScale = 345,
.trainerOffset = 7,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SUICUNE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("AURORA"),
.height = 20,
.weight = 1870,
.description = gSuicunePokedexText,
.pokemonScale = 269,
.pokemonOffset = 0,
.trainerScale = 345,
.trainerOffset = 7,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_LARVITAR] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ROCK SKIN"),
.height = 6,
.weight = 720,
.description = gLarvitarPokedexText,
.pokemonScale = 472,
.pokemonOffset = 18,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_PUPITAR] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("HARD SHELL"),
.height = 12,
.weight = 1520,
.description = gPupitarPokedexText,
.pokemonScale = 292,
.pokemonOffset = 8,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_TYRANITAR] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ARMOR"),
.height = 20,
.weight = 2020,
.description = gTyranitarPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 345,
.trainerOffset = 7,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_LUGIA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DIVING"),
.height = 52,
.weight = 2160,
.description = gLugiaPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 721,
.trainerOffset = 19,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_HO_OH] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("RAINBOW"),
.height = 38,
.weight = 1990,
.description = gHoOhPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 610,
.trainerOffset = 17,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CELEBI] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("TIME TRAVEL"),
.height = 6,
.weight = 50,
.description = gCelebiPokedexText,
.pokemonScale = 393,
.pokemonOffset = -10,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_TREECKO] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WOOD GECKO"),
.height = 5,
.weight = 50,
.description = gTreeckoPokedexText,
.pokemonScale = 541,
.pokemonOffset = 19,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GROVYLE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WOOD GECKO"),
.height = 9,
.weight = 216,
.description = gGrovylePokedexText,
.pokemonScale = 360,
.pokemonOffset = 5,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SCEPTILE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FOREST"),
.height = 17,
.weight = 522,
.description = gSceptilePokedexText,
.pokemonScale = 256,
.pokemonOffset = -1,
.trainerScale = 275,
.trainerOffset = 2,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_TORCHIC] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("CHICK"),
.height = 4,
.weight = 25,
.description = gTorchicPokedexText,
.pokemonScale = 566,
.pokemonOffset = 19,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_COMBUSKEN] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("YOUNG FOWL"),
.height = 9,
.weight = 195,
.description = gCombuskenPokedexText,
.pokemonScale = 343,
.pokemonOffset = 5,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_BLAZIKEN] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BLAZE"),
.height = 19,
.weight = 520,
.description = gBlazikenPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 301,
.trainerOffset = 4,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MUDKIP] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MUD FISH"),
.height = 4,
.weight = 76,
.description = gMudkipPokedexText,
.pokemonScale = 535,
.pokemonOffset = 20,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MARSHTOMP] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MUD FISH"),
.height = 7,
.weight = 280,
.description = gMarshtompPokedexText,
.pokemonScale = 340,
.pokemonOffset = 7,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SWAMPERT] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MUD FISH"),
.height = 15,
.weight = 819,
.description = gSwampertPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_POOCHYENA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BITE"),
.height = 5,
.weight = 136,
.description = gPoochyenaPokedexText,
.pokemonScale = 481,
.pokemonOffset = 19,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MIGHTYENA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BITE"),
.height = 10,
.weight = 370,
.description = gMightyenaPokedexText,
.pokemonScale = 362,
.pokemonOffset = 9,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ZIGZAGOON] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("TINYRACCOON"),
.height = 4,
.weight = 175,
.description = gZigzagoonPokedexText,
.pokemonScale = 560,
.pokemonOffset = 22,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_LINOONE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("RUSHING"),
.height = 5,
.weight = 325,
.description = gLinoonePokedexText,
.pokemonScale = 321,
.pokemonOffset = 7,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_WURMPLE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WORM"),
.height = 3,
.weight = 36,
.description = gWurmplePokedexText,
.pokemonScale = 711,
.pokemonOffset = 24,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SILCOON] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("COCOON"),
.height = 6,
.weight = 100,
.description = gSilcoonPokedexText,
.pokemonScale = 431,
.pokemonOffset = 19,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_BEAUTIFLY] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BUTTERFLY"),
.height = 10,
.weight = 284,
.description = gBeautiflyPokedexText,
.pokemonScale = 298,
.pokemonOffset = -1,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CASCOON] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("COCOON"),
.height = 7,
.weight = 115,
.description = gCascoonPokedexText,
.pokemonScale = 391,
.pokemonOffset = 20,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_DUSTOX] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("POISON MOTH"),
.height = 12,
.weight = 316,
.description = gDustoxPokedexText,
.pokemonScale = 269,
.pokemonOffset = 1,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_LOTAD] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WATER WEED"),
.height = 5,
.weight = 26,
.description = gLotadPokedexText,
.pokemonScale = 406,
.pokemonOffset = 19,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_LOMBRE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("JOLLY"),
.height = 12,
.weight = 325,
.description = gLombrePokedexText,
.pokemonScale = 277,
.pokemonOffset = 9,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_LUDICOLO] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("CAREFREE"),
.height = 15,
.weight = 550,
.description = gLudicoloPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 268,
.trainerOffset = -1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SEEDOT] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ACORN"),
.height = 5,
.weight = 40,
.description = gSeedotPokedexText,
.pokemonScale = 472,
.pokemonOffset = 20,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_NUZLEAF] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WILY"),
.height = 10,
.weight = 280,
.description = gNuzleafPokedexText,
.pokemonScale = 299,
.pokemonOffset = 10,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SHIFTRY] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WICKED"),
.height = 13,
.weight = 596,
.description = gShiftryPokedexText,
.pokemonScale = 290,
.pokemonOffset = 4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_TAILLOW] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("TINYSWALLOW"),
.height = 3,
.weight = 23,
.description = gTaillowPokedexText,
.pokemonScale = 465,
.pokemonOffset = 21,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SWELLOW] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SWALLOW"),
.height = 7,
.weight = 198,
.description = gSwellowPokedexText,
.pokemonScale = 428,
.pokemonOffset = 15,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_WINGULL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SEAGULL"),
.height = 6,
.weight = 95,
.description = gWingullPokedexText,
.pokemonScale = 295,
.pokemonOffset = -2,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_PELIPPER] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WATER BIRD"),
.height = 12,
.weight = 280,
.description = gPelipperPokedexText,
.pokemonScale = 288,
.pokemonOffset = 1,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_RALTS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FEELING"),
.height = 4,
.weight = 66,
.description = gRaltsPokedexText,
.pokemonScale = 457,
.pokemonOffset = -3,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_KIRLIA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("EMOTION"),
.height = 8,
.weight = 202,
.description = gKirliaPokedexText,
.pokemonScale = 354,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GARDEVOIR] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("EMBRACE"),
.height = 16,
.weight = 484,
.description = gGardevoirPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SURSKIT] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("POND SKATER"),
.height = 5,
.weight = 17,
.description = gSurskitPokedexText,
.pokemonScale = 375,
.pokemonOffset = 17,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MASQUERAIN] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("EYEBALL"),
.height = 8,
.weight = 36,
.description = gMasquerainPokedexText,
.pokemonScale = 378,
.pokemonOffset = 8,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SHROOMISH] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MUSHROOM"),
.height = 4,
.weight = 45,
.description = gShroomishPokedexText,
.pokemonScale = 513,
.pokemonOffset = 22,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_BRELOOM] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MUSHROOM"),
.height = 12,
.weight = 392,
.description = gBreloomPokedexText,
.pokemonScale = 324,
.pokemonOffset = 6,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SLAKOTH] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SLACKER"),
.height = 8,
.weight = 240,
.description = gSlakothPokedexText,
.pokemonScale = 291,
.pokemonOffset = 16,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_VIGOROTH] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WILD MONKEY"),
.height = 14,
.weight = 465,
.description = gVigorothPokedexText,
.pokemonScale = 301,
.pokemonOffset = 2,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SLAKING] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LAZY"),
.height = 20,
.weight = 1305,
.description = gSlakingPokedexText,
.pokemonScale = 256,
.pokemonOffset = 2,
.trainerScale = 300,
.trainerOffset = 1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_NINCADA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("TRAINEE"),
.height = 5,
.weight = 55,
.description = gNincadaPokedexText,
.pokemonScale = 405,
.pokemonOffset = 21,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_NINJASK] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("NINJA"),
.height = 8,
.weight = 120,
.description = gNinjaskPokedexText,
.pokemonScale = 383,
.pokemonOffset = -9,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SHEDINJA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SHED"),
.height = 8,
.weight = 12,
.description = gShedinjaPokedexText,
.pokemonScale = 372,
.pokemonOffset = -8,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_WHISMUR] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WHISPER"),
.height = 6,
.weight = 163,
.description = gWhismurPokedexText,
.pokemonScale = 373,
.pokemonOffset = 17,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_LOUDRED] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BIG VOICE"),
.height = 10,
.weight = 405,
.description = gLoudredPokedexText,
.pokemonScale = 356,
.pokemonOffset = 10,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_EXPLOUD] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LOUD NOISE"),
.height = 15,
.weight = 840,
.description = gExploudPokedexText,
.pokemonScale = 284,
.pokemonOffset = 1,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MAKUHITA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("GUTS"),
.height = 10,
.weight = 864,
.description = gMakuhitaPokedexText,
.pokemonScale = 256,
.pokemonOffset = 10,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_HARIYAMA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ARM THRUST"),
.height = 23,
.weight = 2538,
.description = gHariyamaPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 343,
.trainerOffset = 7,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_AZURILL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("POLKA DOT"),
.height = 2,
.weight = 20,
.description = gAzurillPokedexText,
.pokemonScale = 603,
.pokemonOffset = 23,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_NOSEPASS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("COMPASS"),
.height = 10,
.weight = 970,
.description = gNosepassPokedexText,
.pokemonScale = 256,
.pokemonOffset = 9,
.trainerScale = 289,
.trainerOffset = 3,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SKITTY] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("KITTEN"),
.height = 6,
.weight = 110,
.description = gSkittyPokedexText,
.pokemonScale = 492,
.pokemonOffset = 19,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_DELCATTY] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("PRIM"),
.height = 11,
.weight = 326,
.description = gDelcattyPokedexText,
.pokemonScale = 322,
.pokemonOffset = 10,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SABLEYE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DARKNESS"),
.height = 5,
.weight = 110,
.description = gSableyePokedexText,
.pokemonScale = 451,
.pokemonOffset = 17,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MAWILE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DECEIVER"),
.height = 6,
.weight = 115,
.description = gMawilePokedexText,
.pokemonScale = 466,
.pokemonOffset = 17,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ARON] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("IRON ARMOR"),
.height = 4,
.weight = 600,
.description = gAronPokedexText,
.pokemonScale = 419,
.pokemonOffset = 23,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_LAIRON] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("IRON ARMOR"),
.height = 9,
.weight = 1200,
.description = gLaironPokedexText,
.pokemonScale = 275,
.pokemonOffset = 12,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_AGGRON] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("IRON ARMOR"),
.height = 21,
.weight = 3600,
.description = gAggronPokedexText,
.pokemonScale = 256,
.pokemonOffset = -1,
.trainerScale = 350,
.trainerOffset = 6,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MEDITITE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MEDITATE"),
.height = 6,
.weight = 112,
.description = gMedititePokedexText,
.pokemonScale = 465,
.pokemonOffset = 17,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MEDICHAM] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MEDITATE"),
.height = 13,
.weight = 315,
.description = gMedichamPokedexText,
.pokemonScale = 298,
.pokemonOffset = 5,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ELECTRIKE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LIGHTNING"),
.height = 6,
.weight = 152,
.description = gElectrikePokedexText,
.pokemonScale = 290,
.pokemonOffset = 15,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MANECTRIC] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DISCHARGE"),
.height = 15,
.weight = 402,
.description = gManectricPokedexText,
.pokemonScale = 256,
.pokemonOffset = 3,
.trainerScale = 257,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_PLUSLE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("CHEERING"),
.height = 4,
.weight = 42,
.description = gPluslePokedexText,
.pokemonScale = 515,
.pokemonOffset = -9,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MINUN] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("CHEERING"),
.height = 4,
.weight = 42,
.description = gMinunPokedexText,
.pokemonScale = 512,
.pokemonOffset = -7,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_VOLBEAT] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FIREFLY"),
.height = 7,
.weight = 177,
.description = gVolbeatPokedexText,
.pokemonScale = 442,
.pokemonOffset = 16,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ILLUMISE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FIREFLY"),
.height = 6,
.weight = 177,
.description = gIllumisePokedexText,
.pokemonScale = 572,
.pokemonOffset = 19,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ROSELIA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("THORN"),
.height = 3,
.weight = 20,
.description = gRoseliaPokedexText,
.pokemonScale = 677,
.pokemonOffset = 20,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GULPIN] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("STOMACH"),
.height = 4,
.weight = 103,
.description = gGulpinPokedexText,
.pokemonScale = 593,
.pokemonOffset = 23,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SWALOT] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("POISON BAG"),
.height = 17,
.weight = 800,
.description = gSwalotPokedexText,
.pokemonScale = 256,
.pokemonOffset = 6,
.trainerScale = 345,
.trainerOffset = 3,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CARVANHA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SAVAGE"),
.height = 8,
.weight = 208,
.description = gCarvanhaPokedexText,
.pokemonScale = 362,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SHARPEDO] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BRUTAL"),
.height = 18,
.weight = 888,
.description = gSharpedoPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 317,
.trainerOffset = 3,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_WAILMER] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BALL WHALE"),
.height = 20,
.weight = 1300,
.description = gWailmerPokedexText,
.pokemonScale = 256,
.pokemonOffset = 2,
.trainerScale = 493,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_WAILORD] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FLOAT WHALE"),
.height = 145,
.weight = 3980,
.description = gWailordPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 1352,
.trainerOffset = 18,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_NUMEL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("NUMB"),
.height = 7,
.weight = 240,
.description = gNumelPokedexText,
.pokemonScale = 342,
.pokemonOffset = 17,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CAMERUPT] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ERUPTION"),
.height = 19,
.weight = 2200,
.description = gCameruptPokedexText,
.pokemonScale = 256,
.pokemonOffset = 7,
.trainerScale = 345,
.trainerOffset = 6,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_TORKOAL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("COAL"),
.height = 5,
.weight = 804,
.description = gTorkoalPokedexText,
.pokemonScale = 390,
.pokemonOffset = 9,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SPOINK] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BOUNCE"),
.height = 7,
.weight = 306,
.description = gSpoinkPokedexText,
.pokemonScale = 423,
.pokemonOffset = 17,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GRUMPIG] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MANIPULATE"),
.height = 9,
.weight = 715,
.description = gGrumpigPokedexText,
.pokemonScale = 358,
.pokemonOffset = 10,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SPINDA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SPOT PANDA"),
.height = 11,
.weight = 50,
.description = gSpindaPokedexText,
.pokemonScale = 321,
.pokemonOffset = 4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_TRAPINCH] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ANT PIT"),
.height = 7,
.weight = 150,
.description = gTrapinchPokedexText,
.pokemonScale = 298,
.pokemonOffset = 17,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_VIBRAVA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("VIBRATION"),
.height = 11,
.weight = 153,
.description = gVibravaPokedexText,
.pokemonScale = 370,
.pokemonOffset = 11,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_FLYGON] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MYSTIC"),
.height = 20,
.weight = 820,
.description = gFlygonPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 268,
.trainerOffset = 1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CACNEA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("CACTUS"),
.height = 4,
.weight = 513,
.description = gCacneaPokedexText,
.pokemonScale = 455,
.pokemonOffset = 20,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CACTURNE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SCARECROW"),
.height = 13,
.weight = 774,
.description = gCacturnePokedexText,
.pokemonScale = 327,
.pokemonOffset = 5,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SWABLU] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("COTTON BIRD"),
.height = 4,
.weight = 12,
.description = gSwabluPokedexText,
.pokemonScale = 422,
.pokemonOffset = -8,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ALTARIA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("HUMMING"),
.height = 11,
.weight = 206,
.description = gAltariaPokedexText,
.pokemonScale = 327,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ZANGOOSE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("CAT FERRET"),
.height = 13,
.weight = 403,
.description = gZangoosePokedexText,
.pokemonScale = 256,
.pokemonOffset = 3,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SEVIPER] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FANG SNAKE"),
.height = 27,
.weight = 525,
.description = gSeviperPokedexText,
.pokemonScale = 275,
.pokemonOffset = 7,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_LUNATONE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("METEORITE"),
.height = 10,
.weight = 1680,
.description = gLunatonePokedexText,
.pokemonScale = 300,
.pokemonOffset = 3,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SOLROCK] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("METEORITE"),
.height = 12,
.weight = 1540,
.description = gSolrockPokedexText,
.pokemonScale = 328,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_BARBOACH] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WHISKERS"),
.height = 4,
.weight = 19,
.description = gBarboachPokedexText,
.pokemonScale = 581,
.pokemonOffset = -3,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_WHISCASH] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WHISKERS"),
.height = 9,
.weight = 236,
.description = gWhiscashPokedexText,
.pokemonScale = 317,
.pokemonOffset = 1,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CORPHISH] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("RUFFIAN"),
.height = 6,
.weight = 115,
.description = gCorphishPokedexText,
.pokemonScale = 484,
.pokemonOffset = 19,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CRAWDAUNT] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ROGUE"),
.height = 11,
.weight = 328,
.description = gCrawdauntPokedexText,
.pokemonScale = 365,
.pokemonOffset = 9,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_BALTOY] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("CLAY DOLL"),
.height = 5,
.weight = 215,
.description = gBaltoyPokedexText,
.pokemonScale = 457,
.pokemonOffset = 21,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CLAYDOL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("CLAY DOLL"),
.height = 15,
.weight = 1080,
.description = gClaydolPokedexText,
.pokemonScale = 256,
.pokemonOffset = 3,
.trainerScale = 280,
.trainerOffset = 1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_LILEEP] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SEA LILY"),
.height = 10,
.weight = 238,
.description = gLileepPokedexText,
.pokemonScale = 305,
.pokemonOffset = 8,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CRADILY] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BARNACLE"),
.height = 15,
.weight = 604,
.description = gCradilyPokedexText,
.pokemonScale = 267,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ANORITH] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("OLD SHRIMP"),
.height = 7,
.weight = 125,
.description = gAnorithPokedexText,
.pokemonScale = 296,
.pokemonOffset = 4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ARMALDO] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("PLATE"),
.height = 15,
.weight = 682,
.description = gArmaldoPokedexText,
.pokemonScale = 312,
.pokemonOffset = 3,
.trainerScale = 271,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_FEEBAS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FISH"),
.height = 6,
.weight = 74,
.description = gFeebasPokedexText,
.pokemonScale = 423,
.pokemonOffset = -4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_MILOTIC] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("TENDER"),
.height = 62,
.weight = 1620,
.description = gMiloticPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 360,
.trainerOffset = 7,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CASTFORM] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WEATHER"),
.height = 3,
.weight = 8,
.description = gCastformPokedexText,
.pokemonScale = 435,
.pokemonOffset = -5,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_KECLEON] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("COLOR SWAP"),
.height = 10,
.weight = 220,
.description = gKecleonPokedexText,
.pokemonScale = 316,
.pokemonOffset = 10,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SHUPPET] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("PUPPET"),
.height = 6,
.weight = 23,
.description = gShuppetPokedexText,
.pokemonScale = 440,
.pokemonOffset = 20,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_BANETTE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("MARIONETTE"),
.height = 11,
.weight = 125,
.description = gBanettePokedexText,
.pokemonScale = 262,
.pokemonOffset = 9,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_DUSKULL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("REQUIEM"),
.height = 8,
.weight = 150,
.description = gDuskullPokedexText,
.pokemonScale = 406,
.pokemonOffset = -4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_DUSCLOPS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BECKON"),
.height = 16,
.weight = 306,
.description = gDusclopsPokedexText,
.pokemonScale = 256,
.pokemonOffset = 3,
.trainerScale = 299,
.trainerOffset = 1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_TROPIUS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FRUIT"),
.height = 20,
.weight = 1000,
.description = gTropiusPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 344,
.trainerOffset = 7,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CHIMECHO] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WIND CHIME"),
.height = 6,
.weight = 10,
.description = gChimechoPokedexText,
.pokemonScale = 505,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_ABSOL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DISASTER"),
.height = 12,
.weight = 470,
.description = gAbsolPokedexText,
.pokemonScale = 301,
.pokemonOffset = 3,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_WYNAUT] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BRIGHT"),
.height = 6,
.weight = 140,
.description = gWynautPokedexText,
.pokemonScale = 484,
.pokemonOffset = 19,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SNORUNT] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SNOW HAT"),
.height = 7,
.weight = 168,
.description = gSnoruntPokedexText,
.pokemonScale = 380,
.pokemonOffset = 15,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GLALIE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("FACE"),
.height = 15,
.weight = 2565,
.description = gGlaliePokedexText,
.pokemonScale = 256,
.pokemonOffset = 3,
.trainerScale = 344,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SPHEAL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("CLAP"),
.height = 8,
.weight = 395,
.description = gSphealPokedexText,
.pokemonScale = 315,
.pokemonOffset = 16,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SEALEO] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BALL ROLL"),
.height = 11,
.weight = 876,
.description = gSealeoPokedexText,
.pokemonScale = 338,
.pokemonOffset = 13,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_WALREIN] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ICE BREAK"),
.height = 14,
.weight = 1506,
.description = gWalreinPokedexText,
.pokemonScale = 316,
.pokemonOffset = 4,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_CLAMPERL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("BIVALVE"),
.height = 4,
.weight = 525,
.description = gClamperlPokedexText,
.pokemonScale = 691,
.pokemonOffset = 22,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_HUNTAIL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DEEP SEA"),
.height = 17,
.weight = 270,
.description = gHuntailPokedexText,
.pokemonScale = 307,
.pokemonOffset = 1,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GOREBYSS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SOUTH SEA"),
.height = 18,
.weight = 226,
.description = gGorebyssPokedexText,
.pokemonScale = 278,
.pokemonOffset = 5,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_RELICANTH] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("LONGEVITY"),
.height = 10,
.weight = 234,
.description = gRelicanthPokedexText,
.pokemonScale = 316,
.pokemonOffset = 7,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_LUVDISC] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("RENDEZVOUS"),
.height = 6,
.weight = 87,
.description = gLuvdiscPokedexText,
.pokemonScale = 371,
.pokemonOffset = 2,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_BAGON] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ROCK HEAD"),
.height = 6,
.weight = 421,
.description = gBagonPokedexText,
.pokemonScale = 448,
.pokemonOffset = 18,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SHELGON] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ENDURANCE"),
.height = 11,
.weight = 1105,
.description = gShelgonPokedexText,
.pokemonScale = 311,
.pokemonOffset = 12,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_SALAMENCE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DRAGON"),
.height = 15,
.weight = 1026,
.description = gSalamencePokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_BELDUM] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("IRON BALL"),
.height = 6,
.weight = 952,
.description = gBeldumPokedexText,
.pokemonScale = 414,
.pokemonOffset = -1,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_METANG] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("IRON CLAW"),
.height = 12,
.weight = 2025,
.description = gMetangPokedexText,
.pokemonScale = 256,
.pokemonOffset = 6,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_METAGROSS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("IRON LEG"),
.height = 16,
.weight = 5500,
.description = gMetagrossPokedexText,
.pokemonScale = 256,
.pokemonOffset = 4,
.trainerScale = 447,
.trainerOffset = 9,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_REGIROCK] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ROCK PEAK"),
.height = 17,
.weight = 2300,
.description = gRegirockPokedexText,
.pokemonScale = 256,
.pokemonOffset = 2,
.trainerScale = 309,
.trainerOffset = 1,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_REGICE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("ICEBERG"),
.height = 18,
.weight = 1750,
.description = gRegicePokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 301,
.trainerOffset = 2,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_REGISTEEL] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("IRON"),
.height = 19,
.weight = 2050,
.description = gRegisteelPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 359,
.trainerOffset = 6,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_LATIAS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("EON"),
.height = 14,
.weight = 400,
.description = gLatiasPokedexText,
.pokemonScale = 304,
.pokemonOffset = 3,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_LATIOS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("EON"),
.height = 20,
.weight = 600,
.description = gLatiosPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 294,
.trainerOffset = 3,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_KYOGRE] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SEA BASIN"),
.height = 45,
.weight = 3520,
.description = gKyogrePokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 614,
.trainerOffset = 13,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_GROUDON] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("CONTINENT"),
.height = 35,
.weight = 9500,
.description = gGroudonPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 515,
.trainerOffset = 14,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_RAYQUAZA] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("SKY HIGH"),
.height = 70,
.weight = 2065,
.description = gRayquazaPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 448,
.trainerOffset = 12,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_JIRACHI] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("WISH"),
.height = 3,
.weight = 11,
.description = gJirachiPokedexText,
.pokemonScale = 608,
.pokemonOffset = -8,
.trainerScale = 256,
.trainerOffset = 0,
},
2018-12-03 14:49:16 +01:00
[NATIONAL_DEX_DEOXYS] =
{
2018-11-27 04:00:38 +00:00
.categoryName = _("DNA"),
.height = 17,
.weight = 608,
.description = gDeoxysPokedexText,
.pokemonScale = 256,
.pokemonOffset = 0,
.trainerScale = 290,
.trainerOffset = 2,
},
};