Moved Gen 6 data to gBaseStats
This commit is contained in:
parent
46c99b040f
commit
9d1ab936d5
3 changed files with 1382 additions and 546 deletions
|
@ -18,19 +18,6 @@ enum
|
|||
FLAG_SET_CAUGHT
|
||||
};
|
||||
|
||||
struct PokedexEntry
|
||||
{
|
||||
/*0x00*/ u8 categoryName[13];
|
||||
/*0x0C*/ u16 height; //in decimeters
|
||||
/*0x0E*/ u16 weight; //in hectograms
|
||||
/*0x10*/ const u8 *description;
|
||||
/*0x14*/ u16 unused;
|
||||
/*0x16*/ u16 pokemonScale;
|
||||
/*0x18*/ u16 pokemonOffset;
|
||||
/*0x1A*/ u16 trainerScale;
|
||||
/*0x1C*/ u16 trainerOffset;
|
||||
}; /*size = 0x20*/
|
||||
|
||||
struct PokedexEntryForms
|
||||
{
|
||||
u8 categoryName[13];
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -1,5 +1,6 @@
|
|||
const struct PokedexEntryForms gPokedexEntriesForms[] =
|
||||
{
|
||||
// No official dex entry for this form
|
||||
#if P_GEN_6_POKEMON == TRUE
|
||||
[SPECIES_DIANCIE_MEGA] =
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue