// Maximum value for a female Pokémon is 254 (MON_FEMALE) which is 100% female.
// 255 (MON_GENDERLESS) is reserved for genderless Pokémon.
#define PERCENT_FEMALE(percent) min(254, ((percent * 255) / 100))

#define OLD_UNOWN_SPECIES_INFO                                         \
    {                                                                  \
        .baseHP = 50,                                                  \
        .baseAttack = 150,                                             \
        .baseDefense = 50,                                             \
        .baseSpAttack = 150,                                           \
        .baseSpDefense = 50,                                           \
        .baseSpeed = 150,                                              \
        .types = {TYPE_NORMAL, TYPE_NORMAL},                           \
        .catchRate = 3,                                                \
        .expYield = 1,                                                 \
        .evYield_HP = 2,                                               \
        .evYield_Attack = 2,                                           \
        .evYield_Defense = 2,                                          \
        .evYield_Speed = 2,                                            \
        .evYield_SpAttack = 2,                                         \
        .evYield_SpDefense = 2,                                        \
        .itemCommon = ITEM_NONE,                                       \
        .itemRare = ITEM_NONE,                                         \
        .genderRatio = MON_GENDERLESS,                                 \
        .eggCycles = 120,                                              \
        .friendship = 0,                                               \
        .growthRate = GROWTH_MEDIUM_FAST,                              \
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED}, \
        .abilities = {ABILITY_NONE, ABILITY_NONE},                     \
        .safariZoneFleeRate = 0,                                       \
        .bodyColor = BODY_COLOR_BLACK,                                 \
        .noFlip = FALSE,                                               \
    }

const struct SpeciesInfo gSpeciesInfo[] =
{
    [SPECIES_NONE] = {0},
    [SPECIES_BULBASAUR] =
    {
        .baseHP = 45,
        .baseAttack = 49,
        .baseDefense = 49,
        .baseSpeed = 45,
        .baseSpAttack = 65,
        .baseSpDefense = 65,
        .types = {TYPE_GRASS, TYPE_POISON},
        .catchRate = 45,
        .expYield = 64,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_GRASS},
        .abilities = {ABILITY_OVERGROW, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_IVYSAUR] =
    {
        .baseHP = 60,
        .baseAttack = 62,
        .baseDefense = 63,
        .baseSpeed = 60,
        .baseSpAttack = 80,
        .baseSpDefense = 80,
        .types = {TYPE_GRASS, TYPE_POISON},
        .catchRate = 45,
        .expYield = 141,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_GRASS},
        .abilities = {ABILITY_OVERGROW, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_VENUSAUR] =
    {
        .baseHP = 80,
        .baseAttack = 82,
        .baseDefense = 83,
        .baseSpeed = 80,
        .baseSpAttack = 100,
        .baseSpDefense = 100,
        .types = {TYPE_GRASS, TYPE_POISON},
        .catchRate = 45,
        .expYield = 208,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 2,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_GRASS},
        .abilities = {ABILITY_OVERGROW, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_CHARMANDER] =
    {
        .baseHP = 39,
        .baseAttack = 52,
        .baseDefense = 43,
        .baseSpeed = 65,
        .baseSpAttack = 60,
        .baseSpDefense = 50,
        .types = {TYPE_FIRE, TYPE_FIRE},
        .catchRate = 45,
        .expYield = 65,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_BLAZE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_CHARMELEON] =
    {
        .baseHP = 58,
        .baseAttack = 64,
        .baseDefense = 58,
        .baseSpeed = 80,
        .baseSpAttack = 80,
        .baseSpDefense = 65,
        .types = {TYPE_FIRE, TYPE_FIRE},
        .catchRate = 45,
        .expYield = 142,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_BLAZE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_CHARIZARD] =
    {
        .baseHP = 78,
        .baseAttack = 84,
        .baseDefense = 78,
        .baseSpeed = 100,
        .baseSpAttack = 109,
        .baseSpDefense = 85,
        .types = {TYPE_FIRE, TYPE_FLYING},
        .catchRate = 45,
        .expYield = 209,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 3,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_BLAZE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_SQUIRTLE] =
    {
        .baseHP = 44,
        .baseAttack = 48,
        .baseDefense = 65,
        .baseSpeed = 43,
        .baseSpAttack = 50,
        .baseSpDefense = 64,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 45,
        .expYield = 66,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_TORRENT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_WARTORTLE] =
    {
        .baseHP = 59,
        .baseAttack = 63,
        .baseDefense = 80,
        .baseSpeed = 58,
        .baseSpAttack = 65,
        .baseSpDefense = 80,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 45,
        .expYield = 143,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_TORRENT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_BLASTOISE] =
    {
        .baseHP = 79,
        .baseAttack = 83,
        .baseDefense = 100,
        .baseSpeed = 78,
        .baseSpAttack = 85,
        .baseSpDefense = 105,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 45,
        .expYield = 210,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 3,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_TORRENT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_CATERPIE] =
    {
        .baseHP = 45,
        .baseAttack = 30,
        .baseDefense = 35,
        .baseSpeed = 45,
        .baseSpAttack = 20,
        .baseSpDefense = 20,
        .types = {TYPE_BUG, TYPE_BUG},
        .catchRate = 255,
        .expYield = 53,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_SHIELD_DUST, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_METAPOD] =
    {
        .baseHP = 50,
        .baseAttack = 20,
        .baseDefense = 55,
        .baseSpeed = 30,
        .baseSpAttack = 25,
        .baseSpDefense = 25,
        .types = {TYPE_BUG, TYPE_BUG},
        .catchRate = 120,
        .expYield = 72,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_BUTTERFREE] =
    {
        .baseHP = 60,
        .baseAttack = 45,
        .baseDefense = 50,
        .baseSpeed = 70,
        .baseSpAttack = 80,
        .baseSpDefense = 80,
        .types = {TYPE_BUG, TYPE_FLYING},
        .catchRate = 45,
        .expYield = 160,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 2,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_SILVER_POWDER,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_COMPOUND_EYES, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_WHITE,
        .noFlip = FALSE,
    },
    [SPECIES_WEEDLE] =
    {
        .baseHP = 40,
        .baseAttack = 35,
        .baseDefense = 30,
        .baseSpeed = 50,
        .baseSpAttack = 20,
        .baseSpDefense = 20,
        .types = {TYPE_BUG, TYPE_POISON},
        .catchRate = 255,
        .expYield = 52,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_SHIELD_DUST, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_KAKUNA] =
    {
        .baseHP = 45,
        .baseAttack = 25,
        .baseDefense = 50,
        .baseSpeed = 35,
        .baseSpAttack = 25,
        .baseSpDefense = 25,
        .types = {TYPE_BUG, TYPE_POISON},
        .catchRate = 120,
        .expYield = 71,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_BEEDRILL] =
    {
        .baseHP = 65,
        .baseAttack = 80,
        .baseDefense = 40,
        .baseSpeed = 75,
        .baseSpAttack = 45,
        .baseSpDefense = 80,
        .types = {TYPE_BUG, TYPE_POISON},
        .catchRate = 45,
        .expYield = 159,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_POISON_BARB,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_SWARM, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_PIDGEY] =
    {
        .baseHP = 40,
        .baseAttack = 45,
        .baseDefense = 40,
        .baseSpeed = 56,
        .baseSpAttack = 35,
        .baseSpDefense = 35,
        .types = {TYPE_NORMAL, TYPE_FLYING},
        .catchRate = 255,
        .expYield = 55,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FLYING},
        .abilities = {ABILITY_KEEN_EYE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_PIDGEOTTO] =
    {
        .baseHP = 63,
        .baseAttack = 60,
        .baseDefense = 55,
        .baseSpeed = 71,
        .baseSpAttack = 50,
        .baseSpDefense = 50,
        .types = {TYPE_NORMAL, TYPE_FLYING},
        .catchRate = 120,
        .expYield = 113,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FLYING},
        .abilities = {ABILITY_KEEN_EYE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_PIDGEOT] =
    {
        .baseHP = 83,
        .baseAttack = 80,
        .baseDefense = 75,
        .baseSpeed = 91,
        .baseSpAttack = 70,
        .baseSpDefense = 70,
        .types = {TYPE_NORMAL, TYPE_FLYING},
        .catchRate = 45,
        .expYield = 172,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 3,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FLYING},
        .abilities = {ABILITY_KEEN_EYE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_RATTATA] =
    {
        .baseHP = 30,
        .baseAttack = 56,
        .baseDefense = 35,
        .baseSpeed = 72,
        .baseSpAttack = 25,
        .baseSpDefense = 35,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 255,
        .expYield = 57,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_RUN_AWAY, ABILITY_GUTS},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_RATICATE] =
    {
        .baseHP = 55,
        .baseAttack = 81,
        .baseDefense = 60,
        .baseSpeed = 97,
        .baseSpAttack = 50,
        .baseSpDefense = 70,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 127,
        .expYield = 116,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_ORAN_BERRY,
        .itemRare = ITEM_SITRUS_BERRY,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_RUN_AWAY, ABILITY_GUTS},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_SPEAROW] =
    {
        .baseHP = 40,
        .baseAttack = 60,
        .baseDefense = 30,
        .baseSpeed = 70,
        .baseSpAttack = 31,
        .baseSpDefense = 31,
        .types = {TYPE_NORMAL, TYPE_FLYING},
        .catchRate = 255,
        .expYield = 58,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FLYING},
        .abilities = {ABILITY_KEEN_EYE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_FEAROW] =
    {
        .baseHP = 65,
        .baseAttack = 90,
        .baseDefense = 65,
        .baseSpeed = 100,
        .baseSpAttack = 61,
        .baseSpDefense = 61,
        .types = {TYPE_NORMAL, TYPE_FLYING},
        .catchRate = 90,
        .expYield = 162,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_SHARP_BEAK,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FLYING},
        .abilities = {ABILITY_KEEN_EYE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_EKANS] =
    {
        .baseHP = 35,
        .baseAttack = 60,
        .baseDefense = 44,
        .baseSpeed = 55,
        .baseSpAttack = 40,
        .baseSpDefense = 54,
        .types = {TYPE_POISON, TYPE_POISON},
        .catchRate = 255,
        .expYield = 62,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_INTIMIDATE, ABILITY_SHED_SKIN},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_ARBOK] =
    {
        .baseHP = 60,
        .baseAttack = 85,
        .baseDefense = 69,
        .baseSpeed = 80,
        .baseSpAttack = 65,
        .baseSpDefense = 79,
        .types = {TYPE_POISON, TYPE_POISON},
        .catchRate = 90,
        .expYield = 147,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_POISON_BARB,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_INTIMIDATE, ABILITY_SHED_SKIN},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_PIKACHU] =
    {
        .baseHP = 35,
        .baseAttack = 55,
        .baseDefense = 30,
        .baseSpeed = 90,
        .baseSpAttack = 50,
        .baseSpDefense = 40,
        .types = {TYPE_ELECTRIC, TYPE_ELECTRIC},
        .catchRate = 190,
        .expYield = 82,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 10,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FAIRY},
        .abilities = {ABILITY_STATIC, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_RAICHU] =
    {
        .baseHP = 60,
        .baseAttack = 90,
        .baseDefense = 55,
        .baseSpeed = 100,
        .baseSpAttack = 90,
        .baseSpDefense = 80,
        .types = {TYPE_ELECTRIC, TYPE_ELECTRIC},
        .catchRate = 75,
        .expYield = 122,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 3,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 10,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FAIRY},
        .abilities = {ABILITY_STATIC, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_SANDSHREW] =
    {
        .baseHP = 50,
        .baseAttack = 75,
        .baseDefense = 85,
        .baseSpeed = 40,
        .baseSpAttack = 20,
        .baseSpDefense = 30,
        .types = {TYPE_GROUND, TYPE_GROUND},
        .catchRate = 255,
        .expYield = 93,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_SAND_VEIL, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_SANDSLASH] =
    {
        .baseHP = 75,
        .baseAttack = 100,
        .baseDefense = 110,
        .baseSpeed = 65,
        .baseSpAttack = 45,
        .baseSpDefense = 55,
        .types = {TYPE_GROUND, TYPE_GROUND},
        .catchRate = 90,
        .expYield = 163,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_SOFT_SAND,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_SAND_VEIL, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_NIDORAN_F] =
    {
        .baseHP = 55,
        .baseAttack = 47,
        .baseDefense = 52,
        .baseSpeed = 41,
        .baseSpAttack = 40,
        .baseSpDefense = 40,
        .types = {TYPE_POISON, TYPE_POISON},
        .catchRate = 235,
        .expYield = 59,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_FEMALE,
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_FIELD},
        .abilities = {ABILITY_POISON_POINT, ABILITY_NONE},
        .safariZoneFleeRate = 50,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_NIDORINA] =
    {
        .baseHP = 70,
        .baseAttack = 62,
        .baseDefense = 67,
        .baseSpeed = 56,
        .baseSpAttack = 55,
        .baseSpDefense = 55,
        .types = {TYPE_POISON, TYPE_POISON},
        .catchRate = 120,
        .expYield = 117,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_FEMALE,
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_POISON_POINT, ABILITY_NONE},
        .safariZoneFleeRate = 75,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_NIDOQUEEN] =
    {
        .baseHP = 90,
        .baseAttack = 82,
        .baseDefense = 87,
        .baseSpeed = 76,
        .baseSpAttack = 75,
        .baseSpDefense = 85,
        .types = {TYPE_POISON, TYPE_GROUND},
        .catchRate = 45,
        .expYield = 194,
        .evYield_HP = 3,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_FEMALE,
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_POISON_POINT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_NIDORAN_M] =
    {
        .baseHP = 46,
        .baseAttack = 57,
        .baseDefense = 40,
        .baseSpeed = 50,
        .baseSpAttack = 40,
        .baseSpDefense = 40,
        .types = {TYPE_POISON, TYPE_POISON},
        .catchRate = 235,
        .expYield = 60,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_MALE,
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_FIELD},
        .abilities = {ABILITY_POISON_POINT, ABILITY_NONE},
        .safariZoneFleeRate = 50,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_NIDORINO] =
    {
        .baseHP = 61,
        .baseAttack = 72,
        .baseDefense = 57,
        .baseSpeed = 65,
        .baseSpAttack = 55,
        .baseSpDefense = 55,
        .types = {TYPE_POISON, TYPE_POISON},
        .catchRate = 120,
        .expYield = 118,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_MALE,
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_FIELD},
        .abilities = {ABILITY_POISON_POINT, ABILITY_NONE},
        .safariZoneFleeRate = 75,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_NIDOKING] =
    {
        .baseHP = 81,
        .baseAttack = 92,
        .baseDefense = 77,
        .baseSpeed = 85,
        .baseSpAttack = 85,
        .baseSpDefense = 75,
        .types = {TYPE_POISON, TYPE_GROUND},
        .catchRate = 45,
        .expYield = 195,
        .evYield_HP = 0,
        .evYield_Attack = 3,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_MALE,
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_FIELD},
        .abilities = {ABILITY_POISON_POINT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_CLEFAIRY] =
    {
        .baseHP = 70,
        .baseAttack = 45,
        .baseDefense = 48,
        .baseSpeed = 35,
        .baseSpAttack = 60,
        .baseSpDefense = 65,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 150,
        .expYield = 68,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_MOON_STONE,
        .genderRatio = PERCENT_FEMALE(75),
        .eggCycles = 10,
        .friendship = 140,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_FAIRY, EGG_GROUP_FAIRY},
        .abilities = {ABILITY_CUTE_CHARM, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_CLEFABLE] =
    {
        .baseHP = 95,
        .baseAttack = 70,
        .baseDefense = 73,
        .baseSpeed = 60,
        .baseSpAttack = 85,
        .baseSpDefense = 90,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 25,
        .expYield = 129,
        .evYield_HP = 3,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_MOON_STONE,
        .genderRatio = PERCENT_FEMALE(75),
        .eggCycles = 10,
        .friendship = 140,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_FAIRY, EGG_GROUP_FAIRY},
        .abilities = {ABILITY_CUTE_CHARM, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_VULPIX] =
    {
        .baseHP = 38,
        .baseAttack = 41,
        .baseDefense = 40,
        .baseSpeed = 65,
        .baseSpAttack = 50,
        .baseSpDefense = 65,
        .types = {TYPE_FIRE, TYPE_FIRE},
        .catchRate = 190,
        .expYield = 63,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_RAWST_BERRY,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(75),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_FLASH_FIRE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_NINETALES] =
    {
        .baseHP = 73,
        .baseAttack = 76,
        .baseDefense = 75,
        .baseSpeed = 100,
        .baseSpAttack = 81,
        .baseSpDefense = 100,
        .types = {TYPE_FIRE, TYPE_FIRE},
        .catchRate = 75,
        .expYield = 178,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_RAWST_BERRY,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(75),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_FLASH_FIRE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_JIGGLYPUFF] =
    {
        .baseHP = 115,
        .baseAttack = 45,
        .baseDefense = 20,
        .baseSpeed = 20,
        .baseSpAttack = 45,
        .baseSpDefense = 25,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 170,
        .expYield = 76,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_ORAN_BERRY,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(75),
        .eggCycles = 10,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_FAIRY, EGG_GROUP_FAIRY},
        .abilities = {ABILITY_CUTE_CHARM, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_WIGGLYTUFF] =
    {
        .baseHP = 140,
        .baseAttack = 70,
        .baseDefense = 45,
        .baseSpeed = 45,
        .baseSpAttack = 75,
        .baseSpDefense = 50,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 50,
        .expYield = 109,
        .evYield_HP = 3,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_ORAN_BERRY,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(75),
        .eggCycles = 10,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_FAIRY, EGG_GROUP_FAIRY},
        .abilities = {ABILITY_CUTE_CHARM, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_ZUBAT] =
    {
        .baseHP = 40,
        .baseAttack = 45,
        .baseDefense = 35,
        .baseSpeed = 55,
        .baseSpAttack = 30,
        .baseSpDefense = 40,
        .types = {TYPE_POISON, TYPE_FLYING},
        .catchRate = 255,
        .expYield = 54,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FLYING},
        .abilities = {ABILITY_INNER_FOCUS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_GOLBAT] =
    {
        .baseHP = 75,
        .baseAttack = 80,
        .baseDefense = 70,
        .baseSpeed = 90,
        .baseSpAttack = 65,
        .baseSpDefense = 75,
        .types = {TYPE_POISON, TYPE_FLYING},
        .catchRate = 90,
        .expYield = 171,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FLYING},
        .abilities = {ABILITY_INNER_FOCUS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_ODDISH] =
    {
        .baseHP = 45,
        .baseAttack = 50,
        .baseDefense = 55,
        .baseSpeed = 30,
        .baseSpAttack = 75,
        .baseSpDefense = 65,
        .types = {TYPE_GRASS, TYPE_POISON},
        .catchRate = 255,
        .expYield = 78,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_GRASS, EGG_GROUP_GRASS},
        .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_GLOOM] =
    {
        .baseHP = 60,
        .baseAttack = 65,
        .baseDefense = 70,
        .baseSpeed = 40,
        .baseSpAttack = 85,
        .baseSpDefense = 75,
        .types = {TYPE_GRASS, TYPE_POISON},
        .catchRate = 120,
        .expYield = 132,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 2,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_GRASS, EGG_GROUP_GRASS},
        .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_VILEPLUME] =
    {
        .baseHP = 75,
        .baseAttack = 80,
        .baseDefense = 85,
        .baseSpeed = 50,
        .baseSpAttack = 100,
        .baseSpDefense = 90,
        .types = {TYPE_GRASS, TYPE_POISON},
        .catchRate = 45,
        .expYield = 184,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 3,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_GRASS, EGG_GROUP_GRASS},
        .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_PARAS] =
    {
        .baseHP = 35,
        .baseAttack = 70,
        .baseDefense = 55,
        .baseSpeed = 25,
        .baseSpAttack = 45,
        .baseSpDefense = 55,
        .types = {TYPE_BUG, TYPE_GRASS},
        .catchRate = 190,
        .expYield = 70,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_TINY_MUSHROOM,
        .itemRare = ITEM_BIG_MUSHROOM,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_GRASS},
        .abilities = {ABILITY_EFFECT_SPORE, ABILITY_NONE},
        .safariZoneFleeRate = 50,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_PARASECT] =
    {
        .baseHP = 60,
        .baseAttack = 95,
        .baseDefense = 80,
        .baseSpeed = 30,
        .baseSpAttack = 60,
        .baseSpDefense = 80,
        .types = {TYPE_BUG, TYPE_GRASS},
        .catchRate = 75,
        .expYield = 128,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_TINY_MUSHROOM,
        .itemRare = ITEM_BIG_MUSHROOM,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_GRASS},
        .abilities = {ABILITY_EFFECT_SPORE, ABILITY_NONE},
        .safariZoneFleeRate = 75,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_VENONAT] =
    {
        .baseHP = 60,
        .baseAttack = 55,
        .baseDefense = 50,
        .baseSpeed = 45,
        .baseSpAttack = 40,
        .baseSpDefense = 55,
        .types = {TYPE_BUG, TYPE_POISON},
        .catchRate = 190,
        .expYield = 75,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_COMPOUND_EYES, ABILITY_NONE},
        .safariZoneFleeRate = 50,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_VENOMOTH] =
    {
        .baseHP = 70,
        .baseAttack = 65,
        .baseDefense = 60,
        .baseSpeed = 90,
        .baseSpAttack = 90,
        .baseSpDefense = 75,
        .types = {TYPE_BUG, TYPE_POISON},
        .catchRate = 75,
        .expYield = 138,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_SILVER_POWDER,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_SHIELD_DUST, ABILITY_NONE},
        .safariZoneFleeRate = 75,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_DIGLETT] =
    {
        .baseHP = 10,
        .baseAttack = 55,
        .baseDefense = 25,
        .baseSpeed = 95,
        .baseSpAttack = 35,
        .baseSpDefense = 45,
        .types = {TYPE_GROUND, TYPE_GROUND},
        .catchRate = 255,
        .expYield = 81,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_SAND_VEIL, ABILITY_ARENA_TRAP},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_DUGTRIO] =
    {
        .baseHP = 35,
        .baseAttack = 80,
        .baseDefense = 50,
        .baseSpeed = 120,
        .baseSpAttack = 50,
        .baseSpDefense = 70,
        .types = {TYPE_GROUND, TYPE_GROUND},
        .catchRate = 50,
        .expYield = 153,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_SAND_VEIL, ABILITY_ARENA_TRAP},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_MEOWTH] =
    {
        .baseHP = 40,
        .baseAttack = 45,
        .baseDefense = 35,
        .baseSpeed = 90,
        .baseSpAttack = 40,
        .baseSpDefense = 40,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 255,
        .expYield = 69,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NUGGET,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_PICKUP, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_PERSIAN] =
    {
        .baseHP = 65,
        .baseAttack = 70,
        .baseDefense = 60,
        .baseSpeed = 115,
        .baseSpAttack = 65,
        .baseSpDefense = 65,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 90,
        .expYield = 148,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_LIMBER, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_PSYDUCK] =
    {
        .baseHP = 50,
        .baseAttack = 52,
        .baseDefense = 48,
        .baseSpeed = 55,
        .baseSpAttack = 65,
        .baseSpDefense = 50,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 190,
        .expYield = 80,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_FIELD},
        .abilities = {ABILITY_DAMP, ABILITY_CLOUD_NINE},
        .safariZoneFleeRate = 50,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_GOLDUCK] =
    {
        .baseHP = 80,
        .baseAttack = 82,
        .baseDefense = 78,
        .baseSpeed = 85,
        .baseSpAttack = 95,
        .baseSpDefense = 80,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 75,
        .expYield = 174,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 2,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_FIELD},
        .abilities = {ABILITY_DAMP, ABILITY_CLOUD_NINE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_MANKEY] =
    {
        .baseHP = 40,
        .baseAttack = 80,
        .baseDefense = 35,
        .baseSpeed = 70,
        .baseSpAttack = 35,
        .baseSpDefense = 45,
        .types = {TYPE_FIGHTING, TYPE_FIGHTING},
        .catchRate = 190,
        .expYield = 74,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_VITAL_SPIRIT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_PRIMEAPE] =
    {
        .baseHP = 65,
        .baseAttack = 105,
        .baseDefense = 60,
        .baseSpeed = 95,
        .baseSpAttack = 60,
        .baseSpDefense = 70,
        .types = {TYPE_FIGHTING, TYPE_FIGHTING},
        .catchRate = 75,
        .expYield = 149,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_VITAL_SPIRIT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_GROWLITHE] =
    {
        .baseHP = 55,
        .baseAttack = 70,
        .baseDefense = 45,
        .baseSpeed = 60,
        .baseSpAttack = 70,
        .baseSpDefense = 50,
        .types = {TYPE_FIRE, TYPE_FIRE},
        .catchRate = 190,
        .expYield = 91,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_RAWST_BERRY,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(25),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_INTIMIDATE, ABILITY_FLASH_FIRE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_ARCANINE] =
    {
        .baseHP = 90,
        .baseAttack = 110,
        .baseDefense = 80,
        .baseSpeed = 95,
        .baseSpAttack = 100,
        .baseSpDefense = 80,
        .types = {TYPE_FIRE, TYPE_FIRE},
        .catchRate = 75,
        .expYield = 213,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_RAWST_BERRY,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(25),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_INTIMIDATE, ABILITY_FLASH_FIRE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_POLIWAG] =
    {
        .baseHP = 40,
        .baseAttack = 50,
        .baseDefense = 40,
        .baseSpeed = 90,
        .baseSpAttack = 40,
        .baseSpDefense = 40,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 255,
        .expYield = 77,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_WATER_ABSORB, ABILITY_DAMP},
        .safariZoneFleeRate = 50,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = TRUE,
    },
    [SPECIES_POLIWHIRL] =
    {
        .baseHP = 65,
        .baseAttack = 65,
        .baseDefense = 65,
        .baseSpeed = 90,
        .baseSpAttack = 50,
        .baseSpDefense = 50,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 120,
        .expYield = 131,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_WATER_ABSORB, ABILITY_DAMP},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = TRUE,
    },
    [SPECIES_POLIWRATH] =
    {
        .baseHP = 90,
        .baseAttack = 85,
        .baseDefense = 95,
        .baseSpeed = 70,
        .baseSpAttack = 70,
        .baseSpDefense = 90,
        .types = {TYPE_WATER, TYPE_FIGHTING},
        .catchRate = 45,
        .expYield = 185,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 3,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_WATER_ABSORB, ABILITY_DAMP},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = TRUE,
    },
    [SPECIES_ABRA] =
    {
        .baseHP = 25,
        .baseAttack = 20,
        .baseDefense = 15,
        .baseSpeed = 90,
        .baseSpAttack = 105,
        .baseSpDefense = 55,
        .types = {TYPE_PSYCHIC, TYPE_PSYCHIC},
        .catchRate = 200,
        .expYield = 73,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_TWISTED_SPOON,
        .genderRatio = PERCENT_FEMALE(25),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_HUMAN_LIKE, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_SYNCHRONIZE, ABILITY_INNER_FOCUS},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_KADABRA] =
    {
        .baseHP = 40,
        .baseAttack = 35,
        .baseDefense = 30,
        .baseSpeed = 105,
        .baseSpAttack = 120,
        .baseSpDefense = 70,
        .types = {TYPE_PSYCHIC, TYPE_PSYCHIC},
        .catchRate = 100,
        .expYield = 145,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 2,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_TWISTED_SPOON,
        .genderRatio = PERCENT_FEMALE(25),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_HUMAN_LIKE, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_SYNCHRONIZE, ABILITY_INNER_FOCUS},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_ALAKAZAM] =
    {
        .baseHP = 55,
        .baseAttack = 50,
        .baseDefense = 45,
        .baseSpeed = 120,
        .baseSpAttack = 135,
        .baseSpDefense = 85,
        .types = {TYPE_PSYCHIC, TYPE_PSYCHIC},
        .catchRate = 50,
        .expYield = 186,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 3,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_TWISTED_SPOON,
        .genderRatio = PERCENT_FEMALE(25),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_HUMAN_LIKE, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_SYNCHRONIZE, ABILITY_INNER_FOCUS},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_MACHOP] =
    {
        .baseHP = 70,
        .baseAttack = 80,
        .baseDefense = 50,
        .baseSpeed = 35,
        .baseSpAttack = 35,
        .baseSpDefense = 35,
        .types = {TYPE_FIGHTING, TYPE_FIGHTING},
        .catchRate = 180,
        .expYield = 88,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(25),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_HUMAN_LIKE, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_GUTS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_MACHOKE] =
    {
        .baseHP = 80,
        .baseAttack = 100,
        .baseDefense = 70,
        .baseSpeed = 45,
        .baseSpAttack = 50,
        .baseSpDefense = 60,
        .types = {TYPE_FIGHTING, TYPE_FIGHTING},
        .catchRate = 90,
        .expYield = 146,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_FOCUS_BAND,
        .genderRatio = PERCENT_FEMALE(25),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_HUMAN_LIKE, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_GUTS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_MACHAMP] =
    {
        .baseHP = 90,
        .baseAttack = 130,
        .baseDefense = 80,
        .baseSpeed = 55,
        .baseSpAttack = 65,
        .baseSpDefense = 85,
        .types = {TYPE_FIGHTING, TYPE_FIGHTING},
        .catchRate = 45,
        .expYield = 193,
        .evYield_HP = 0,
        .evYield_Attack = 3,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_FOCUS_BAND,
        .genderRatio = PERCENT_FEMALE(25),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_HUMAN_LIKE, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_GUTS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_BELLSPROUT] =
    {
        .baseHP = 50,
        .baseAttack = 75,
        .baseDefense = 35,
        .baseSpeed = 40,
        .baseSpAttack = 70,
        .baseSpDefense = 30,
        .types = {TYPE_GRASS, TYPE_POISON},
        .catchRate = 255,
        .expYield = 84,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_GRASS, EGG_GROUP_GRASS},
        .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_WEEPINBELL] =
    {
        .baseHP = 65,
        .baseAttack = 90,
        .baseDefense = 50,
        .baseSpeed = 55,
        .baseSpAttack = 85,
        .baseSpDefense = 45,
        .types = {TYPE_GRASS, TYPE_POISON},
        .catchRate = 120,
        .expYield = 151,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_GRASS, EGG_GROUP_GRASS},
        .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_VICTREEBEL] =
    {
        .baseHP = 80,
        .baseAttack = 105,
        .baseDefense = 65,
        .baseSpeed = 70,
        .baseSpAttack = 100,
        .baseSpDefense = 60,
        .types = {TYPE_GRASS, TYPE_POISON},
        .catchRate = 45,
        .expYield = 191,
        .evYield_HP = 0,
        .evYield_Attack = 3,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_GRASS, EGG_GROUP_GRASS},
        .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_TENTACOOL] =
    {
        .baseHP = 40,
        .baseAttack = 40,
        .baseDefense = 35,
        .baseSpeed = 70,
        .baseSpAttack = 50,
        .baseSpDefense = 100,
        .types = {TYPE_WATER, TYPE_POISON},
        .catchRate = 190,
        .expYield = 105,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_WATER_3, EGG_GROUP_WATER_3},
        .abilities = {ABILITY_CLEAR_BODY, ABILITY_LIQUID_OOZE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_TENTACRUEL] =
    {
        .baseHP = 80,
        .baseAttack = 70,
        .baseDefense = 65,
        .baseSpeed = 100,
        .baseSpAttack = 80,
        .baseSpDefense = 120,
        .types = {TYPE_WATER, TYPE_POISON},
        .catchRate = 60,
        .expYield = 205,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 2,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_WATER_3, EGG_GROUP_WATER_3},
        .abilities = {ABILITY_CLEAR_BODY, ABILITY_LIQUID_OOZE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_GEODUDE] =
    {
        .baseHP = 40,
        .baseAttack = 80,
        .baseDefense = 100,
        .baseSpeed = 20,
        .baseSpAttack = 30,
        .baseSpDefense = 30,
        .types = {TYPE_ROCK, TYPE_GROUND},
        .catchRate = 255,
        .expYield = 86,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_ROCK_HEAD, ABILITY_STURDY},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_GRAVELER] =
    {
        .baseHP = 55,
        .baseAttack = 95,
        .baseDefense = 115,
        .baseSpeed = 35,
        .baseSpAttack = 45,
        .baseSpDefense = 45,
        .types = {TYPE_ROCK, TYPE_GROUND},
        .catchRate = 120,
        .expYield = 134,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_HARD_STONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_ROCK_HEAD, ABILITY_STURDY},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_GOLEM] =
    {
        .baseHP = 80,
        .baseAttack = 110,
        .baseDefense = 130,
        .baseSpeed = 45,
        .baseSpAttack = 55,
        .baseSpDefense = 65,
        .types = {TYPE_ROCK, TYPE_GROUND},
        .catchRate = 45,
        .expYield = 177,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 3,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_HARD_STONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_ROCK_HEAD, ABILITY_STURDY},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_PONYTA] =
    {
        .baseHP = 50,
        .baseAttack = 85,
        .baseDefense = 55,
        .baseSpeed = 90,
        .baseSpAttack = 65,
        .baseSpDefense = 65,
        .types = {TYPE_FIRE, TYPE_FIRE},
        .catchRate = 190,
        .expYield = 152,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_RUN_AWAY, ABILITY_FLASH_FIRE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_RAPIDASH] =
    {
        .baseHP = 65,
        .baseAttack = 100,
        .baseDefense = 70,
        .baseSpeed = 105,
        .baseSpAttack = 80,
        .baseSpDefense = 80,
        .types = {TYPE_FIRE, TYPE_FIRE},
        .catchRate = 60,
        .expYield = 192,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_RUN_AWAY, ABILITY_FLASH_FIRE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_SLOWPOKE] =
    {
        .baseHP = 90,
        .baseAttack = 65,
        .baseDefense = 65,
        .baseSpeed = 15,
        .baseSpAttack = 40,
        .baseSpDefense = 40,
        .types = {TYPE_WATER, TYPE_PSYCHIC},
        .catchRate = 190,
        .expYield = 99,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_OBLIVIOUS, ABILITY_OWN_TEMPO},
        .safariZoneFleeRate = 50,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_SLOWBRO] =
    {
        .baseHP = 95,
        .baseAttack = 75,
        .baseDefense = 110,
        .baseSpeed = 30,
        .baseSpAttack = 100,
        .baseSpDefense = 80,
        .types = {TYPE_WATER, TYPE_PSYCHIC},
        .catchRate = 75,
        .expYield = 164,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_OBLIVIOUS, ABILITY_OWN_TEMPO},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_MAGNEMITE] =
    {
        .baseHP = 25,
        .baseAttack = 35,
        .baseDefense = 70,
        .baseSpeed = 45,
        .baseSpAttack = 95,
        .baseSpDefense = 55,
        .types = {TYPE_ELECTRIC, TYPE_STEEL},
        .catchRate = 190,
        .expYield = 89,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_MAGNET_PULL, ABILITY_STURDY},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_MAGNETON] =
    {
        .baseHP = 50,
        .baseAttack = 60,
        .baseDefense = 95,
        .baseSpeed = 70,
        .baseSpAttack = 120,
        .baseSpDefense = 70,
        .types = {TYPE_ELECTRIC, TYPE_STEEL},
        .catchRate = 60,
        .expYield = 161,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 2,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_MAGNET,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_MAGNET_PULL, ABILITY_STURDY},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_FARFETCHD] =
    {
        .baseHP = 52,
        .baseAttack = 65,
        .baseDefense = 55,
        .baseSpeed = 60,
        .baseSpAttack = 58,
        .baseSpDefense = 62,
        .types = {TYPE_NORMAL, TYPE_FLYING},
        .catchRate = 45,
        .expYield = 94,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_STICK,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FIELD},
        .abilities = {ABILITY_KEEN_EYE, ABILITY_INNER_FOCUS},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_DODUO] =
    {
        .baseHP = 35,
        .baseAttack = 85,
        .baseDefense = 45,
        .baseSpeed = 75,
        .baseSpAttack = 35,
        .baseSpDefense = 35,
        .types = {TYPE_NORMAL, TYPE_FLYING},
        .catchRate = 190,
        .expYield = 96,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FLYING},
        .abilities = {ABILITY_RUN_AWAY, ABILITY_EARLY_BIRD},
        .safariZoneFleeRate = 50,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_DODRIO] =
    {
        .baseHP = 60,
        .baseAttack = 110,
        .baseDefense = 70,
        .baseSpeed = 100,
        .baseSpAttack = 60,
        .baseSpDefense = 60,
        .types = {TYPE_NORMAL, TYPE_FLYING},
        .catchRate = 45,
        .expYield = 158,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_SHARP_BEAK,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FLYING},
        .abilities = {ABILITY_RUN_AWAY, ABILITY_EARLY_BIRD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_SEEL] =
    {
        .baseHP = 65,
        .baseAttack = 45,
        .baseDefense = 55,
        .baseSpeed = 45,
        .baseSpAttack = 45,
        .baseSpDefense = 70,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 190,
        .expYield = 100,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_ASPEAR_BERRY,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_FIELD},
        .abilities = {ABILITY_THICK_FAT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_WHITE,
        .noFlip = FALSE,
    },
    [SPECIES_DEWGONG] =
    {
        .baseHP = 90,
        .baseAttack = 70,
        .baseDefense = 80,
        .baseSpeed = 70,
        .baseSpAttack = 70,
        .baseSpDefense = 95,
        .types = {TYPE_WATER, TYPE_ICE},
        .catchRate = 75,
        .expYield = 176,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 2,
        .itemCommon = ITEM_ASPEAR_BERRY,
        .itemRare = ITEM_NEVER_MELT_ICE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_FIELD},
        .abilities = {ABILITY_THICK_FAT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_WHITE,
        .noFlip = FALSE,
    },
    [SPECIES_GRIMER] =
    {
        .baseHP = 80,
        .baseAttack = 80,
        .baseDefense = 50,
        .baseSpeed = 25,
        .baseSpAttack = 40,
        .baseSpDefense = 50,
        .types = {TYPE_POISON, TYPE_POISON},
        .catchRate = 190,
        .expYield = 90,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_STENCH, ABILITY_STICKY_HOLD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_MUK] =
    {
        .baseHP = 105,
        .baseAttack = 105,
        .baseDefense = 75,
        .baseSpeed = 50,
        .baseSpAttack = 65,
        .baseSpDefense = 100,
        .types = {TYPE_POISON, TYPE_POISON},
        .catchRate = 75,
        .expYield = 157,
        .evYield_HP = 1,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_STENCH, ABILITY_STICKY_HOLD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_SHELLDER] =
    {
        .baseHP = 30,
        .baseAttack = 65,
        .baseDefense = 100,
        .baseSpeed = 40,
        .baseSpAttack = 45,
        .baseSpDefense = 25,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 190,
        .expYield = 97,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_PEARL,
        .itemRare = ITEM_BIG_PEARL,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_WATER_3, EGG_GROUP_WATER_3},
        .abilities = {ABILITY_SHELL_ARMOR, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_CLOYSTER] =
    {
        .baseHP = 50,
        .baseAttack = 95,
        .baseDefense = 180,
        .baseSpeed = 70,
        .baseSpAttack = 85,
        .baseSpDefense = 45,
        .types = {TYPE_WATER, TYPE_ICE},
        .catchRate = 60,
        .expYield = 203,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_PEARL,
        .itemRare = ITEM_BIG_PEARL,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_WATER_3, EGG_GROUP_WATER_3},
        .abilities = {ABILITY_SHELL_ARMOR, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_GASTLY] =
    {
        .baseHP = 30,
        .baseAttack = 35,
        .baseDefense = 30,
        .baseSpeed = 80,
        .baseSpAttack = 100,
        .baseSpDefense = 35,
        .types = {TYPE_GHOST, TYPE_POISON},
        .catchRate = 190,
        .expYield = 95,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_LEVITATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_HAUNTER] =
    {
        .baseHP = 45,
        .baseAttack = 50,
        .baseDefense = 45,
        .baseSpeed = 95,
        .baseSpAttack = 115,
        .baseSpDefense = 55,
        .types = {TYPE_GHOST, TYPE_POISON},
        .catchRate = 90,
        .expYield = 126,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 2,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_SPELL_TAG,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_LEVITATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_GENGAR] =
    {
        .baseHP = 60,
        .baseAttack = 65,
        .baseDefense = 60,
        .baseSpeed = 110,
        .baseSpAttack = 130,
        .baseSpDefense = 75,
        .types = {TYPE_GHOST, TYPE_POISON},
        .catchRate = 45,
        .expYield = 190,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 3,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_SPELL_TAG,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_LEVITATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_ONIX] =
    {
        .baseHP = 35,
        .baseAttack = 45,
        .baseDefense = 160,
        .baseSpeed = 70,
        .baseSpAttack = 30,
        .baseSpDefense = 45,
        .types = {TYPE_ROCK, TYPE_GROUND},
        .catchRate = 45,
        .expYield = 108,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_HARD_STONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_ROCK_HEAD, ABILITY_STURDY},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_DROWZEE] =
    {
        .baseHP = 60,
        .baseAttack = 48,
        .baseDefense = 45,
        .baseSpeed = 42,
        .baseSpAttack = 43,
        .baseSpDefense = 90,
        .types = {TYPE_PSYCHIC, TYPE_PSYCHIC},
        .catchRate = 190,
        .expYield = 102,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_HUMAN_LIKE, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_INSOMNIA, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_HYPNO] =
    {
        .baseHP = 85,
        .baseAttack = 73,
        .baseDefense = 70,
        .baseSpeed = 67,
        .baseSpAttack = 73,
        .baseSpDefense = 115,
        .types = {TYPE_PSYCHIC, TYPE_PSYCHIC},
        .catchRate = 75,
        .expYield = 165,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 2,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_HUMAN_LIKE, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_INSOMNIA, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_KRABBY] =
    {
        .baseHP = 30,
        .baseAttack = 105,
        .baseDefense = 90,
        .baseSpeed = 50,
        .baseSpAttack = 25,
        .baseSpDefense = 25,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 225,
        .expYield = 115,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_3, EGG_GROUP_WATER_3},
        .abilities = {ABILITY_HYPER_CUTTER, ABILITY_SHELL_ARMOR},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_KINGLER] =
    {
        .baseHP = 55,
        .baseAttack = 130,
        .baseDefense = 115,
        .baseSpeed = 75,
        .baseSpAttack = 50,
        .baseSpDefense = 50,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 60,
        .expYield = 206,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_3, EGG_GROUP_WATER_3},
        .abilities = {ABILITY_HYPER_CUTTER, ABILITY_SHELL_ARMOR},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = TRUE,
    },
    [SPECIES_VOLTORB] =
    {
        .baseHP = 40,
        .baseAttack = 30,
        .baseDefense = 50,
        .baseSpeed = 100,
        .baseSpAttack = 55,
        .baseSpDefense = 55,
        .types = {TYPE_ELECTRIC, TYPE_ELECTRIC},
        .catchRate = 190,
        .expYield = 103,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_SOUNDPROOF, ABILITY_STATIC},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_ELECTRODE] =
    {
        .baseHP = 60,
        .baseAttack = 50,
        .baseDefense = 70,
        .baseSpeed = 140,
        .baseSpAttack = 80,
        .baseSpDefense = 80,
        .types = {TYPE_ELECTRIC, TYPE_ELECTRIC},
        .catchRate = 60,
        .expYield = 150,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_SOUNDPROOF, ABILITY_STATIC},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_EXEGGCUTE] =
    {
        .baseHP = 60,
        .baseAttack = 40,
        .baseDefense = 80,
        .baseSpeed = 40,
        .baseSpAttack = 60,
        .baseSpDefense = 45,
        .types = {TYPE_GRASS, TYPE_PSYCHIC},
        .catchRate = 90,
        .expYield = 98,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_GRASS, EGG_GROUP_GRASS},
        .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE},
        .safariZoneFleeRate = 75,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_EXEGGUTOR] =
    {
        .baseHP = 95,
        .baseAttack = 95,
        .baseDefense = 85,
        .baseSpeed = 55,
        .baseSpAttack = 125,
        .baseSpDefense = 65,
        .types = {TYPE_GRASS, TYPE_PSYCHIC},
        .catchRate = 45,
        .expYield = 212,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 2,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_GRASS, EGG_GROUP_GRASS},
        .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_CUBONE] =
    {
        .baseHP = 50,
        .baseAttack = 50,
        .baseDefense = 95,
        .baseSpeed = 35,
        .baseSpAttack = 40,
        .baseSpDefense = 50,
        .types = {TYPE_GROUND, TYPE_GROUND},
        .catchRate = 190,
        .expYield = 87,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_THICK_CLUB,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_MONSTER},
        .abilities = {ABILITY_ROCK_HEAD, ABILITY_LIGHTNING_ROD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_MAROWAK] =
    {
        .baseHP = 60,
        .baseAttack = 80,
        .baseDefense = 110,
        .baseSpeed = 45,
        .baseSpAttack = 50,
        .baseSpDefense = 80,
        .types = {TYPE_GROUND, TYPE_GROUND},
        .catchRate = 75,
        .expYield = 124,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_THICK_CLUB,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_MONSTER},
        .abilities = {ABILITY_ROCK_HEAD, ABILITY_LIGHTNING_ROD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_HITMONLEE] =
    {
        .baseHP = 50,
        .baseAttack = 120,
        .baseDefense = 53,
        .baseSpeed = 87,
        .baseSpAttack = 35,
        .baseSpDefense = 110,
        .types = {TYPE_FIGHTING, TYPE_FIGHTING},
        .catchRate = 45,
        .expYield = 139,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_MALE,
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_HUMAN_LIKE, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_LIMBER, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_HITMONCHAN] =
    {
        .baseHP = 50,
        .baseAttack = 105,
        .baseDefense = 79,
        .baseSpeed = 76,
        .baseSpAttack = 35,
        .baseSpDefense = 110,
        .types = {TYPE_FIGHTING, TYPE_FIGHTING},
        .catchRate = 45,
        .expYield = 140,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 2,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_MALE,
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_HUMAN_LIKE, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_KEEN_EYE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_LICKITUNG] =
    {
        .baseHP = 90,
        .baseAttack = 55,
        .baseDefense = 75,
        .baseSpeed = 30,
        .baseSpAttack = 60,
        .baseSpDefense = 75,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 45,
        .expYield = 127,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_MONSTER},
        .abilities = {ABILITY_OWN_TEMPO, ABILITY_OBLIVIOUS},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_KOFFING] =
    {
        .baseHP = 40,
        .baseAttack = 65,
        .baseDefense = 95,
        .baseSpeed = 35,
        .baseSpAttack = 60,
        .baseSpDefense = 45,
        .types = {TYPE_POISON, TYPE_POISON},
        .catchRate = 190,
        .expYield = 114,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_LEVITATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_WEEZING] =
    {
        .baseHP = 65,
        .baseAttack = 90,
        .baseDefense = 120,
        .baseSpeed = 60,
        .baseSpAttack = 85,
        .baseSpDefense = 70,
        .types = {TYPE_POISON, TYPE_POISON},
        .catchRate = 60,
        .expYield = 173,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_LEVITATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_RHYHORN] =
    {
        .baseHP = 80,
        .baseAttack = 85,
        .baseDefense = 95,
        .baseSpeed = 25,
        .baseSpAttack = 30,
        .baseSpDefense = 30,
        .types = {TYPE_GROUND, TYPE_ROCK},
        .catchRate = 120,
        .expYield = 135,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_FIELD},
        .abilities = {ABILITY_LIGHTNING_ROD, ABILITY_ROCK_HEAD},
        .safariZoneFleeRate = 75,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_RHYDON] =
    {
        .baseHP = 105,
        .baseAttack = 130,
        .baseDefense = 120,
        .baseSpeed = 40,
        .baseSpAttack = 45,
        .baseSpDefense = 45,
        .types = {TYPE_GROUND, TYPE_ROCK},
        .catchRate = 60,
        .expYield = 204,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_FIELD},
        .abilities = {ABILITY_LIGHTNING_ROD, ABILITY_ROCK_HEAD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_CHANSEY] =
    {
        .baseHP = 250,
        .baseAttack = 5,
        .baseDefense = 5,
        .baseSpeed = 50,
        .baseSpAttack = 35,
        .baseSpDefense = 105,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 30,
        .expYield = 255,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_LUCKY_EGG,
        .genderRatio = MON_FEMALE,
        .eggCycles = 40,
        .friendship = 140,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_FAIRY, EGG_GROUP_FAIRY},
        .abilities = {ABILITY_NATURAL_CURE, ABILITY_SERENE_GRACE},
        .safariZoneFleeRate = 125,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_TANGELA] =
    {
        .baseHP = 65,
        .baseAttack = 55,
        .baseDefense = 115,
        .baseSpeed = 60,
        .baseSpAttack = 100,
        .baseSpDefense = 40,
        .types = {TYPE_GRASS, TYPE_GRASS},
        .catchRate = 45,
        .expYield = 166,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_GRASS, EGG_GROUP_GRASS},
        .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_KANGASKHAN] =
    {
        .baseHP = 105,
        .baseAttack = 95,
        .baseDefense = 80,
        .baseSpeed = 90,
        .baseSpAttack = 40,
        .baseSpDefense = 80,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 45,
        .expYield = 175,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_FEMALE,
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_MONSTER},
        .abilities = {ABILITY_EARLY_BIRD, ABILITY_NONE},
        .safariZoneFleeRate = 125,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_HORSEA] =
    {
        .baseHP = 30,
        .baseAttack = 40,
        .baseDefense = 70,
        .baseSpeed = 60,
        .baseSpAttack = 70,
        .baseSpDefense = 25,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 225,
        .expYield = 83,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_SWIFT_SWIM, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_SEADRA] =
    {
        .baseHP = 55,
        .baseAttack = 65,
        .baseDefense = 95,
        .baseSpeed = 85,
        .baseSpAttack = 95,
        .baseSpDefense = 45,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 75,
        .expYield = 155,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_POISON_POINT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_GOLDEEN] =
    {
        .baseHP = 45,
        .baseAttack = 67,
        .baseDefense = 60,
        .baseSpeed = 63,
        .baseSpAttack = 35,
        .baseSpDefense = 50,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 225,
        .expYield = 111,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_2, EGG_GROUP_WATER_2},
        .abilities = {ABILITY_SWIFT_SWIM, ABILITY_WATER_VEIL},
        .safariZoneFleeRate = 50,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_SEAKING] =
    {
        .baseHP = 80,
        .baseAttack = 92,
        .baseDefense = 65,
        .baseSpeed = 68,
        .baseSpAttack = 65,
        .baseSpDefense = 80,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 60,
        .expYield = 170,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_2, EGG_GROUP_WATER_2},
        .abilities = {ABILITY_SWIFT_SWIM, ABILITY_WATER_VEIL},
        .safariZoneFleeRate = 75,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_STARYU] =
    {
        .baseHP = 30,
        .baseAttack = 45,
        .baseDefense = 55,
        .baseSpeed = 85,
        .baseSpAttack = 70,
        .baseSpDefense = 55,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 225,
        .expYield = 106,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_STARDUST,
        .itemRare = ITEM_STAR_PIECE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_WATER_3, EGG_GROUP_WATER_3},
        .abilities = {ABILITY_ILLUMINATE, ABILITY_NATURAL_CURE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_STARMIE] =
    {
        .baseHP = 60,
        .baseAttack = 75,
        .baseDefense = 85,
        .baseSpeed = 115,
        .baseSpAttack = 100,
        .baseSpDefense = 85,
        .types = {TYPE_WATER, TYPE_PSYCHIC},
        .catchRate = 60,
        .expYield = 207,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_STARDUST,
        .itemRare = ITEM_STAR_PIECE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_WATER_3, EGG_GROUP_WATER_3},
        .abilities = {ABILITY_ILLUMINATE, ABILITY_NATURAL_CURE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_MR_MIME] =
    {
        .baseHP = 40,
        .baseAttack = 45,
        .baseDefense = 65,
        .baseSpeed = 90,
        .baseSpAttack = 100,
        .baseSpDefense = 120,
        .types = {TYPE_PSYCHIC, TYPE_PSYCHIC},
        .catchRate = 45,
        .expYield = 136,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 2,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_HUMAN_LIKE, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_SOUNDPROOF, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_SCYTHER] =
    {
        .baseHP = 70,
        .baseAttack = 110,
        .baseDefense = 80,
        .baseSpeed = 105,
        .baseSpAttack = 55,
        .baseSpDefense = 80,
        .types = {TYPE_BUG, TYPE_FLYING},
        .catchRate = 45,
        .expYield = 187,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_SWARM, ABILITY_NONE},
        .safariZoneFleeRate = 125,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_JYNX] =
    {
        .baseHP = 65,
        .baseAttack = 50,
        .baseDefense = 35,
        .baseSpeed = 95,
        .baseSpAttack = 115,
        .baseSpDefense = 95,
        .types = {TYPE_ICE, TYPE_PSYCHIC},
        .catchRate = 45,
        .expYield = 137,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 2,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_FEMALE,
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_HUMAN_LIKE, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_OBLIVIOUS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_ELECTABUZZ] =
    {
        .baseHP = 65,
        .baseAttack = 83,
        .baseDefense = 57,
        .baseSpeed = 105,
        .baseSpAttack = 95,
        .baseSpDefense = 85,
        .types = {TYPE_ELECTRIC, TYPE_ELECTRIC},
        .catchRate = 45,
        .expYield = 156,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(25),
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_HUMAN_LIKE, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_STATIC, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = TRUE,
    },
    [SPECIES_MAGMAR] =
    {
        .baseHP = 65,
        .baseAttack = 95,
        .baseDefense = 57,
        .baseSpeed = 93,
        .baseSpAttack = 100,
        .baseSpDefense = 85,
        .types = {TYPE_FIRE, TYPE_FIRE},
        .catchRate = 45,
        .expYield = 167,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 2,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(25),
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_HUMAN_LIKE, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_FLAME_BODY, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_PINSIR] =
    {
        .baseHP = 65,
        .baseAttack = 125,
        .baseDefense = 100,
        .baseSpeed = 85,
        .baseSpAttack = 55,
        .baseSpDefense = 70,
        .types = {TYPE_BUG, TYPE_BUG},
        .catchRate = 45,
        .expYield = 200,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_HYPER_CUTTER, ABILITY_NONE},
        .safariZoneFleeRate = 125,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_TAUROS] =
    {
        .baseHP = 75,
        .baseAttack = 100,
        .baseDefense = 95,
        .baseSpeed = 110,
        .baseSpAttack = 40,
        .baseSpDefense = 70,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 45,
        .expYield = 211,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_MALE,
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_INTIMIDATE, ABILITY_NONE},
        .safariZoneFleeRate = 125,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_MAGIKARP] =
    {
        .baseHP = 20,
        .baseAttack = 10,
        .baseDefense = 55,
        .baseSpeed = 80,
        .baseSpAttack = 15,
        .baseSpDefense = 20,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 255,
        .expYield = 20,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 5,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_WATER_2, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_SWIFT_SWIM, ABILITY_NONE},
        .safariZoneFleeRate = 25,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_GYARADOS] =
    {
        .baseHP = 95,
        .baseAttack = 125,
        .baseDefense = 79,
        .baseSpeed = 81,
        .baseSpAttack = 60,
        .baseSpDefense = 100,
        .types = {TYPE_WATER, TYPE_FLYING},
        .catchRate = 45,
        .expYield = 214,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 5,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_WATER_2, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_INTIMIDATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_LAPRAS] =
    {
        .baseHP = 130,
        .baseAttack = 85,
        .baseDefense = 80,
        .baseSpeed = 60,
        .baseSpAttack = 85,
        .baseSpDefense = 95,
        .types = {TYPE_WATER, TYPE_ICE},
        .catchRate = 45,
        .expYield = 219,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 40,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_WATER_ABSORB, ABILITY_SHELL_ARMOR},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_DITTO] =
    {
        .baseHP = 48,
        .baseAttack = 48,
        .baseDefense = 48,
        .baseSpeed = 48,
        .baseSpAttack = 48,
        .baseSpDefense = 48,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 35,
        .expYield = 61,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_METAL_POWDER,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_DITTO, EGG_GROUP_DITTO},
        .abilities = {ABILITY_LIMBER, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_EEVEE] =
    {
        .baseHP = 55,
        .baseAttack = 55,
        .baseDefense = 50,
        .baseSpeed = 55,
        .baseSpAttack = 45,
        .baseSpDefense = 65,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 45,
        .expYield = 92,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 35,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_RUN_AWAY, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_VAPOREON] =
    {
        .baseHP = 130,
        .baseAttack = 65,
        .baseDefense = 60,
        .baseSpeed = 65,
        .baseSpAttack = 110,
        .baseSpDefense = 95,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 45,
        .expYield = 196,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 35,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_WATER_ABSORB, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_JOLTEON] =
    {
        .baseHP = 65,
        .baseAttack = 65,
        .baseDefense = 60,
        .baseSpeed = 130,
        .baseSpAttack = 110,
        .baseSpDefense = 95,
        .types = {TYPE_ELECTRIC, TYPE_ELECTRIC},
        .catchRate = 45,
        .expYield = 197,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 35,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_VOLT_ABSORB, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_FLAREON] =
    {
        .baseHP = 65,
        .baseAttack = 130,
        .baseDefense = 60,
        .baseSpeed = 65,
        .baseSpAttack = 95,
        .baseSpDefense = 110,
        .types = {TYPE_FIRE, TYPE_FIRE},
        .catchRate = 45,
        .expYield = 198,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 35,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_FLASH_FIRE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_PORYGON] =
    {
        .baseHP = 65,
        .baseAttack = 60,
        .baseDefense = 70,
        .baseSpeed = 40,
        .baseSpAttack = 85,
        .baseSpDefense = 75,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 45,
        .expYield = 130,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_TRACE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_OMANYTE] =
    {
        .baseHP = 35,
        .baseAttack = 40,
        .baseDefense = 100,
        .baseSpeed = 35,
        .baseSpAttack = 90,
        .baseSpDefense = 55,
        .types = {TYPE_ROCK, TYPE_WATER},
        .catchRate = 45,
        .expYield = 120,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 30,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_WATER_3},
        .abilities = {ABILITY_SWIFT_SWIM, ABILITY_SHELL_ARMOR},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_OMASTAR] =
    {
        .baseHP = 70,
        .baseAttack = 60,
        .baseDefense = 125,
        .baseSpeed = 55,
        .baseSpAttack = 115,
        .baseSpDefense = 70,
        .types = {TYPE_ROCK, TYPE_WATER},
        .catchRate = 45,
        .expYield = 199,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 30,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_WATER_3},
        .abilities = {ABILITY_SWIFT_SWIM, ABILITY_SHELL_ARMOR},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_KABUTO] =
    {
        .baseHP = 30,
        .baseAttack = 80,
        .baseDefense = 90,
        .baseSpeed = 55,
        .baseSpAttack = 55,
        .baseSpDefense = 45,
        .types = {TYPE_ROCK, TYPE_WATER},
        .catchRate = 45,
        .expYield = 119,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 30,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_WATER_3},
        .abilities = {ABILITY_SWIFT_SWIM, ABILITY_BATTLE_ARMOR},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_KABUTOPS] =
    {
        .baseHP = 60,
        .baseAttack = 115,
        .baseDefense = 105,
        .baseSpeed = 80,
        .baseSpAttack = 65,
        .baseSpDefense = 70,
        .types = {TYPE_ROCK, TYPE_WATER},
        .catchRate = 45,
        .expYield = 201,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 30,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_WATER_3},
        .abilities = {ABILITY_SWIFT_SWIM, ABILITY_BATTLE_ARMOR},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_AERODACTYL] =
    {
        .baseHP = 80,
        .baseAttack = 105,
        .baseDefense = 65,
        .baseSpeed = 130,
        .baseSpAttack = 60,
        .baseSpDefense = 75,
        .types = {TYPE_ROCK, TYPE_FLYING},
        .catchRate = 45,
        .expYield = 202,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 35,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FLYING},
        .abilities = {ABILITY_ROCK_HEAD, ABILITY_PRESSURE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_SNORLAX] =
    {
        .baseHP = 160,
        .baseAttack = 110,
        .baseDefense = 65,
        .baseSpeed = 30,
        .baseSpAttack = 65,
        .baseSpDefense = 110,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 25,
        .expYield = 154,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_CHESTO_BERRY,
        .itemRare = ITEM_CHESTO_BERRY,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 40,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_MONSTER},
        .abilities = {ABILITY_IMMUNITY, ABILITY_THICK_FAT},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLACK,
        .noFlip = FALSE,
    },
    [SPECIES_ARTICUNO] =
    {
        .baseHP = 90,
        .baseAttack = 85,
        .baseDefense = 100,
        .baseSpeed = 85,
        .baseSpAttack = 95,
        .baseSpDefense = 125,
        .types = {TYPE_ICE, TYPE_FLYING},
        .catchRate = 3,
        .expYield = 215,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 3,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 80,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_PRESSURE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_ZAPDOS] =
    {
        .baseHP = 90,
        .baseAttack = 90,
        .baseDefense = 85,
        .baseSpeed = 100,
        .baseSpAttack = 125,
        .baseSpDefense = 90,
        .types = {TYPE_ELECTRIC, TYPE_FLYING},
        .catchRate = 3,
        .expYield = 216,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 3,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 80,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_PRESSURE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_MOLTRES] =
    {
        .baseHP = 90,
        .baseAttack = 100,
        .baseDefense = 90,
        .baseSpeed = 90,
        .baseSpAttack = 125,
        .baseSpDefense = 85,
        .types = {TYPE_FIRE, TYPE_FLYING},
        .catchRate = 3,
        .expYield = 217,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 3,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 80,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_PRESSURE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_DRATINI] =
    {
        .baseHP = 41,
        .baseAttack = 64,
        .baseDefense = 45,
        .baseSpeed = 50,
        .baseSpAttack = 50,
        .baseSpDefense = 50,
        .types = {TYPE_DRAGON, TYPE_DRAGON},
        .catchRate = 45,
        .expYield = 67,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 40,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE},
        .safariZoneFleeRate = 100,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_DRAGONAIR] =
    {
        .baseHP = 61,
        .baseAttack = 84,
        .baseDefense = 65,
        .baseSpeed = 70,
        .baseSpAttack = 70,
        .baseSpDefense = 70,
        .types = {TYPE_DRAGON, TYPE_DRAGON},
        .catchRate = 45,
        .expYield = 144,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_DRAGON_FANG,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 40,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE},
        .safariZoneFleeRate = 125,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_DRAGONITE] =
    {
        .baseHP = 91,
        .baseAttack = 134,
        .baseDefense = 95,
        .baseSpeed = 80,
        .baseSpAttack = 100,
        .baseSpDefense = 100,
        .types = {TYPE_DRAGON, TYPE_FLYING},
        .catchRate = 45,
        .expYield = 218,
        .evYield_HP = 0,
        .evYield_Attack = 3,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_DRAGON_FANG,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 40,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_INNER_FOCUS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_MEWTWO] =
    {
        .baseHP = 106,
        .baseAttack = 110,
        .baseDefense = 90,
        .baseSpeed = 130,
        .baseSpAttack = 154,
        .baseSpDefense = 90,
        .types = {TYPE_PSYCHIC, TYPE_PSYCHIC},
        .catchRate = 3,
        .expYield = 220,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 3,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 120,
        .friendship = 0,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_PRESSURE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_MEW] =
    {
        .baseHP = 100,
        .baseAttack = 100,
        .baseDefense = 100,
        .baseSpeed = 100,
        .baseSpAttack = 100,
        .baseSpDefense = 100,
        .types = {TYPE_PSYCHIC, TYPE_PSYCHIC},
        .catchRate = 45,
        .expYield = 64,
        .evYield_HP = 3,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 120,
        .friendship = 100,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_SYNCHRONIZE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_CHIKORITA] =
    {
        .baseHP = 45,
        .baseAttack = 49,
        .baseDefense = 65,
        .baseSpeed = 45,
        .baseSpAttack = 49,
        .baseSpDefense = 65,
        .types = {TYPE_GRASS, TYPE_GRASS},
        .catchRate = 45,
        .expYield = 64,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_LUM_BERRY,
        .itemRare = ITEM_LUM_BERRY,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_GRASS},
        .abilities = {ABILITY_OVERGROW, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_BAYLEEF] =
    {
        .baseHP = 60,
        .baseAttack = 62,
        .baseDefense = 80,
        .baseSpeed = 60,
        .baseSpAttack = 63,
        .baseSpDefense = 80,
        .types = {TYPE_GRASS, TYPE_GRASS},
        .catchRate = 45,
        .expYield = 141,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_GRASS},
        .abilities = {ABILITY_OVERGROW, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_MEGANIUM] =
    {
        .baseHP = 80,
        .baseAttack = 82,
        .baseDefense = 100,
        .baseSpeed = 80,
        .baseSpAttack = 83,
        .baseSpDefense = 100,
        .types = {TYPE_GRASS, TYPE_GRASS},
        .catchRate = 45,
        .expYield = 208,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 2,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_GRASS},
        .abilities = {ABILITY_OVERGROW, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_CYNDAQUIL] =
    {
        .baseHP = 39,
        .baseAttack = 52,
        .baseDefense = 43,
        .baseSpeed = 65,
        .baseSpAttack = 60,
        .baseSpDefense = 50,
        .types = {TYPE_FIRE, TYPE_FIRE},
        .catchRate = 45,
        .expYield = 65,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_BLAZE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_QUILAVA] =
    {
        .baseHP = 58,
        .baseAttack = 64,
        .baseDefense = 58,
        .baseSpeed = 80,
        .baseSpAttack = 80,
        .baseSpDefense = 65,
        .types = {TYPE_FIRE, TYPE_FIRE},
        .catchRate = 45,
        .expYield = 142,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_BLAZE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_TYPHLOSION] =
    {
        .baseHP = 78,
        .baseAttack = 84,
        .baseDefense = 78,
        .baseSpeed = 100,
        .baseSpAttack = 109,
        .baseSpDefense = 85,
        .types = {TYPE_FIRE, TYPE_FIRE},
        .catchRate = 45,
        .expYield = 209,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 3,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_BLAZE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_TOTODILE] =
    {
        .baseHP = 50,
        .baseAttack = 65,
        .baseDefense = 64,
        .baseSpeed = 43,
        .baseSpAttack = 44,
        .baseSpDefense = 48,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 45,
        .expYield = 66,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_TORRENT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_CROCONAW] =
    {
        .baseHP = 65,
        .baseAttack = 80,
        .baseDefense = 80,
        .baseSpeed = 58,
        .baseSpAttack = 59,
        .baseSpDefense = 63,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 45,
        .expYield = 143,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_TORRENT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = TRUE,
    },
    [SPECIES_FERALIGATR] =
    {
        .baseHP = 85,
        .baseAttack = 105,
        .baseDefense = 100,
        .baseSpeed = 78,
        .baseSpAttack = 79,
        .baseSpDefense = 83,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 45,
        .expYield = 210,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_TORRENT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_SENTRET] =
    {
        .baseHP = 35,
        .baseAttack = 46,
        .baseDefense = 34,
        .baseSpeed = 20,
        .baseSpAttack = 35,
        .baseSpDefense = 45,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 255,
        .expYield = 57,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_ORAN_BERRY,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_RUN_AWAY, ABILITY_KEEN_EYE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_FURRET] =
    {
        .baseHP = 85,
        .baseAttack = 76,
        .baseDefense = 64,
        .baseSpeed = 90,
        .baseSpAttack = 45,
        .baseSpDefense = 55,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 90,
        .expYield = 116,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_ORAN_BERRY,
        .itemRare = ITEM_SITRUS_BERRY,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_RUN_AWAY, ABILITY_KEEN_EYE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_HOOTHOOT] =
    {
        .baseHP = 60,
        .baseAttack = 30,
        .baseDefense = 30,
        .baseSpeed = 50,
        .baseSpAttack = 36,
        .baseSpDefense = 56,
        .types = {TYPE_NORMAL, TYPE_FLYING},
        .catchRate = 255,
        .expYield = 58,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FLYING},
        .abilities = {ABILITY_INSOMNIA, ABILITY_KEEN_EYE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_NOCTOWL] =
    {
        .baseHP = 100,
        .baseAttack = 50,
        .baseDefense = 50,
        .baseSpeed = 70,
        .baseSpAttack = 76,
        .baseSpDefense = 96,
        .types = {TYPE_NORMAL, TYPE_FLYING},
        .catchRate = 90,
        .expYield = 162,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FLYING},
        .abilities = {ABILITY_INSOMNIA, ABILITY_KEEN_EYE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_LEDYBA] =
    {
        .baseHP = 40,
        .baseAttack = 20,
        .baseDefense = 30,
        .baseSpeed = 55,
        .baseSpAttack = 40,
        .baseSpDefense = 80,
        .types = {TYPE_BUG, TYPE_FLYING},
        .catchRate = 255,
        .expYield = 54,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_SWARM, ABILITY_EARLY_BIRD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_LEDIAN] =
    {
        .baseHP = 55,
        .baseAttack = 35,
        .baseDefense = 50,
        .baseSpeed = 85,
        .baseSpAttack = 55,
        .baseSpDefense = 110,
        .types = {TYPE_BUG, TYPE_FLYING},
        .catchRate = 90,
        .expYield = 134,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 2,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_SWARM, ABILITY_EARLY_BIRD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_SPINARAK] =
    {
        .baseHP = 40,
        .baseAttack = 60,
        .baseDefense = 40,
        .baseSpeed = 30,
        .baseSpAttack = 40,
        .baseSpDefense = 40,
        .types = {TYPE_BUG, TYPE_POISON},
        .catchRate = 255,
        .expYield = 54,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_SWARM, ABILITY_INSOMNIA},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_ARIADOS] =
    {
        .baseHP = 70,
        .baseAttack = 90,
        .baseDefense = 70,
        .baseSpeed = 40,
        .baseSpAttack = 60,
        .baseSpDefense = 60,
        .types = {TYPE_BUG, TYPE_POISON},
        .catchRate = 90,
        .expYield = 134,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_SWARM, ABILITY_INSOMNIA},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_CROBAT] =
    {
        .baseHP = 85,
        .baseAttack = 90,
        .baseDefense = 80,
        .baseSpeed = 130,
        .baseSpAttack = 70,
        .baseSpDefense = 80,
        .types = {TYPE_POISON, TYPE_FLYING},
        .catchRate = 90,
        .expYield = 204,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 3,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FLYING},
        .abilities = {ABILITY_INNER_FOCUS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_CHINCHOU] =
    {
        .baseHP = 75,
        .baseAttack = 38,
        .baseDefense = 38,
        .baseSpeed = 67,
        .baseSpAttack = 56,
        .baseSpDefense = 56,
        .types = {TYPE_WATER, TYPE_ELECTRIC},
        .catchRate = 190,
        .expYield = 90,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_YELLOW_SHARD,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_WATER_2, EGG_GROUP_WATER_2},
        .abilities = {ABILITY_VOLT_ABSORB, ABILITY_ILLUMINATE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_LANTURN] =
    {
        .baseHP = 125,
        .baseAttack = 58,
        .baseDefense = 58,
        .baseSpeed = 67,
        .baseSpAttack = 76,
        .baseSpDefense = 76,
        .types = {TYPE_WATER, TYPE_ELECTRIC},
        .catchRate = 75,
        .expYield = 156,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_YELLOW_SHARD,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_WATER_2, EGG_GROUP_WATER_2},
        .abilities = {ABILITY_VOLT_ABSORB, ABILITY_ILLUMINATE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_PICHU] =
    {
        .baseHP = 20,
        .baseAttack = 40,
        .baseDefense = 15,
        .baseSpeed = 60,
        .baseSpAttack = 35,
        .baseSpDefense = 35,
        .types = {TYPE_ELECTRIC, TYPE_ELECTRIC},
        .catchRate = 190,
        .expYield = 42,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 10,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_STATIC, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_CLEFFA] =
    {
        .baseHP = 50,
        .baseAttack = 25,
        .baseDefense = 28,
        .baseSpeed = 15,
        .baseSpAttack = 45,
        .baseSpDefense = 55,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 150,
        .expYield = 37,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_MOON_STONE,
        .genderRatio = PERCENT_FEMALE(75),
        .eggCycles = 10,
        .friendship = 140,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_CUTE_CHARM, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_IGGLYBUFF] =
    {
        .baseHP = 90,
        .baseAttack = 30,
        .baseDefense = 15,
        .baseSpeed = 15,
        .baseSpAttack = 40,
        .baseSpDefense = 20,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 170,
        .expYield = 39,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_ORAN_BERRY,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(75),
        .eggCycles = 10,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_CUTE_CHARM, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = TRUE,
    },
    [SPECIES_TOGEPI] =
    {
        .baseHP = 35,
        .baseAttack = 20,
        .baseDefense = 65,
        .baseSpeed = 20,
        .baseSpAttack = 40,
        .baseSpDefense = 65,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 190,
        .expYield = 74,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 10,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_HUSTLE, ABILITY_SERENE_GRACE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_WHITE,
        .noFlip = FALSE,
    },
    [SPECIES_TOGETIC] =
    {
        .baseHP = 55,
        .baseAttack = 40,
        .baseDefense = 85,
        .baseSpeed = 40,
        .baseSpAttack = 80,
        .baseSpDefense = 105,
        .types = {TYPE_NORMAL, TYPE_FLYING},
        .catchRate = 75,
        .expYield = 114,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 2,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 10,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FAIRY},
        .abilities = {ABILITY_HUSTLE, ABILITY_SERENE_GRACE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_WHITE,
        .noFlip = FALSE,
    },
    [SPECIES_NATU] =
    {
        .baseHP = 40,
        .baseAttack = 50,
        .baseDefense = 45,
        .baseSpeed = 70,
        .baseSpAttack = 70,
        .baseSpDefense = 45,
        .types = {TYPE_PSYCHIC, TYPE_FLYING},
        .catchRate = 190,
        .expYield = 73,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FLYING},
        .abilities = {ABILITY_SYNCHRONIZE, ABILITY_EARLY_BIRD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_XATU] =
    {
        .baseHP = 65,
        .baseAttack = 75,
        .baseDefense = 70,
        .baseSpeed = 95,
        .baseSpAttack = 95,
        .baseSpDefense = 70,
        .types = {TYPE_PSYCHIC, TYPE_FLYING},
        .catchRate = 75,
        .expYield = 171,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FLYING},
        .abilities = {ABILITY_SYNCHRONIZE, ABILITY_EARLY_BIRD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_MAREEP] =
    {
        .baseHP = 55,
        .baseAttack = 40,
        .baseDefense = 40,
        .baseSpeed = 35,
        .baseSpAttack = 65,
        .baseSpDefense = 45,
        .types = {TYPE_ELECTRIC, TYPE_ELECTRIC},
        .catchRate = 235,
        .expYield = 59,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_FIELD},
        .abilities = {ABILITY_STATIC, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_WHITE,
        .noFlip = FALSE,
    },
    [SPECIES_FLAAFFY] =
    {
        .baseHP = 70,
        .baseAttack = 55,
        .baseDefense = 55,
        .baseSpeed = 45,
        .baseSpAttack = 80,
        .baseSpDefense = 60,
        .types = {TYPE_ELECTRIC, TYPE_ELECTRIC},
        .catchRate = 120,
        .expYield = 117,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 2,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_FIELD},
        .abilities = {ABILITY_STATIC, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_AMPHAROS] =
    {
        .baseHP = 90,
        .baseAttack = 75,
        .baseDefense = 75,
        .baseSpeed = 55,
        .baseSpAttack = 115,
        .baseSpDefense = 90,
        .types = {TYPE_ELECTRIC, TYPE_ELECTRIC},
        .catchRate = 45,
        .expYield = 194,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 3,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_FIELD},
        .abilities = {ABILITY_STATIC, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_BELLOSSOM] =
    {
        .baseHP = 75,
        .baseAttack = 80,
        .baseDefense = 85,
        .baseSpeed = 50,
        .baseSpAttack = 90,
        .baseSpDefense = 100,
        .types = {TYPE_GRASS, TYPE_GRASS},
        .catchRate = 45,
        .expYield = 184,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 3,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_GRASS, EGG_GROUP_GRASS},
        .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_MARILL] =
    {
        .baseHP = 70,
        .baseAttack = 20,
        .baseDefense = 50,
        .baseSpeed = 40,
        .baseSpAttack = 20,
        .baseSpDefense = 50,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 190,
        .expYield = 58,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 10,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_FAIRY},
        .abilities = {ABILITY_THICK_FAT, ABILITY_HUGE_POWER},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_AZUMARILL] =
    {
        .baseHP = 100,
        .baseAttack = 50,
        .baseDefense = 80,
        .baseSpeed = 50,
        .baseSpAttack = 50,
        .baseSpDefense = 80,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 75,
        .expYield = 153,
        .evYield_HP = 3,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 10,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_FAIRY},
        .abilities = {ABILITY_THICK_FAT, ABILITY_HUGE_POWER},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_SUDOWOODO] =
    {
        .baseHP = 70,
        .baseAttack = 100,
        .baseDefense = 115,
        .baseSpeed = 30,
        .baseSpAttack = 30,
        .baseSpDefense = 65,
        .types = {TYPE_ROCK, TYPE_ROCK},
        .catchRate = 65,
        .expYield = 135,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_STURDY, ABILITY_ROCK_HEAD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_POLITOED] =
    {
        .baseHP = 90,
        .baseAttack = 75,
        .baseDefense = 75,
        .baseSpeed = 70,
        .baseSpAttack = 90,
        .baseSpDefense = 100,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 45,
        .expYield = 185,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 3,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_KINGS_ROCK,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_WATER_ABSORB, ABILITY_DAMP},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = TRUE,
    },
    [SPECIES_HOPPIP] =
    {
        .baseHP = 35,
        .baseAttack = 35,
        .baseDefense = 40,
        .baseSpeed = 50,
        .baseSpAttack = 35,
        .baseSpDefense = 55,
        .types = {TYPE_GRASS, TYPE_FLYING},
        .catchRate = 255,
        .expYield = 74,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FAIRY, EGG_GROUP_GRASS},
        .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_SKIPLOOM] =
    {
        .baseHP = 55,
        .baseAttack = 45,
        .baseDefense = 50,
        .baseSpeed = 80,
        .baseSpAttack = 45,
        .baseSpDefense = 65,
        .types = {TYPE_GRASS, TYPE_FLYING},
        .catchRate = 120,
        .expYield = 136,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FAIRY, EGG_GROUP_GRASS},
        .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_JUMPLUFF] =
    {
        .baseHP = 75,
        .baseAttack = 55,
        .baseDefense = 70,
        .baseSpeed = 110,
        .baseSpAttack = 55,
        .baseSpDefense = 85,
        .types = {TYPE_GRASS, TYPE_FLYING},
        .catchRate = 45,
        .expYield = 176,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 3,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FAIRY, EGG_GROUP_GRASS},
        .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_AIPOM] =
    {
        .baseHP = 55,
        .baseAttack = 70,
        .baseDefense = 55,
        .baseSpeed = 85,
        .baseSpAttack = 40,
        .baseSpDefense = 55,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 45,
        .expYield = 94,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_RUN_AWAY, ABILITY_PICKUP},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_SUNKERN] =
    {
        .baseHP = 30,
        .baseAttack = 30,
        .baseDefense = 30,
        .baseSpeed = 30,
        .baseSpAttack = 30,
        .baseSpDefense = 30,
        .types = {TYPE_GRASS, TYPE_GRASS},
        .catchRate = 235,
        .expYield = 52,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_GRASS, EGG_GROUP_GRASS},
        .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_SUNFLORA] =
    {
        .baseHP = 75,
        .baseAttack = 75,
        .baseDefense = 55,
        .baseSpeed = 30,
        .baseSpAttack = 105,
        .baseSpDefense = 85,
        .types = {TYPE_GRASS, TYPE_GRASS},
        .catchRate = 120,
        .expYield = 146,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 2,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_GRASS, EGG_GROUP_GRASS},
        .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_YANMA] =
    {
        .baseHP = 65,
        .baseAttack = 65,
        .baseDefense = 45,
        .baseSpeed = 95,
        .baseSpAttack = 75,
        .baseSpDefense = 45,
        .types = {TYPE_BUG, TYPE_FLYING},
        .catchRate = 75,
        .expYield = 147,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_SPEED_BOOST, ABILITY_COMPOUND_EYES},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_WOOPER] =
    {
        .baseHP = 55,
        .baseAttack = 45,
        .baseDefense = 45,
        .baseSpeed = 15,
        .baseSpAttack = 25,
        .baseSpDefense = 25,
        .types = {TYPE_WATER, TYPE_GROUND},
        .catchRate = 255,
        .expYield = 52,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_FIELD},
        .abilities = {ABILITY_DAMP, ABILITY_WATER_ABSORB},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_QUAGSIRE] =
    {
        .baseHP = 95,
        .baseAttack = 85,
        .baseDefense = 85,
        .baseSpeed = 35,
        .baseSpAttack = 65,
        .baseSpDefense = 65,
        .types = {TYPE_WATER, TYPE_GROUND},
        .catchRate = 90,
        .expYield = 137,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_FIELD},
        .abilities = {ABILITY_DAMP, ABILITY_WATER_ABSORB},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_ESPEON] =
    {
        .baseHP = 65,
        .baseAttack = 65,
        .baseDefense = 60,
        .baseSpeed = 110,
        .baseSpAttack = 130,
        .baseSpDefense = 95,
        .types = {TYPE_PSYCHIC, TYPE_PSYCHIC},
        .catchRate = 45,
        .expYield = 197,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 2,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 35,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_SYNCHRONIZE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_UMBREON] =
    {
        .baseHP = 95,
        .baseAttack = 65,
        .baseDefense = 110,
        .baseSpeed = 65,
        .baseSpAttack = 60,
        .baseSpDefense = 130,
        .types = {TYPE_DARK, TYPE_DARK},
        .catchRate = 45,
        .expYield = 197,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 2,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 35,
        .friendship = 35,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_SYNCHRONIZE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLACK,
        .noFlip = FALSE,
    },
    [SPECIES_MURKROW] =
    {
        .baseHP = 60,
        .baseAttack = 85,
        .baseDefense = 42,
        .baseSpeed = 91,
        .baseSpAttack = 85,
        .baseSpDefense = 42,
        .types = {TYPE_DARK, TYPE_FLYING},
        .catchRate = 30,
        .expYield = 107,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 35,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FLYING},
        .abilities = {ABILITY_INSOMNIA, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLACK,
        .noFlip = FALSE,
    },
    [SPECIES_SLOWKING] =
    {
        .baseHP = 95,
        .baseAttack = 75,
        .baseDefense = 80,
        .baseSpeed = 30,
        .baseSpAttack = 100,
        .baseSpDefense = 110,
        .types = {TYPE_WATER, TYPE_PSYCHIC},
        .catchRate = 70,
        .expYield = 164,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 3,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_KINGS_ROCK,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_OBLIVIOUS, ABILITY_OWN_TEMPO},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_MISDREAVUS] =
    {
        .baseHP = 60,
        .baseAttack = 60,
        .baseDefense = 60,
        .baseSpeed = 85,
        .baseSpAttack = 85,
        .baseSpDefense = 85,
        .types = {TYPE_GHOST, TYPE_GHOST},
        .catchRate = 45,
        .expYield = 147,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_SPELL_TAG,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 25,
        .friendship = 35,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_LEVITATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_UNOWN] =
    {
        .baseHP = 48,
        .baseAttack = 72,
        .baseDefense = 48,
        .baseSpeed = 48,
        .baseSpAttack = 72,
        .baseSpDefense = 48,
        .types = {TYPE_PSYCHIC, TYPE_PSYCHIC},
        .catchRate = 225,
        .expYield = 61,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 40,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_LEVITATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLACK,
        .noFlip = TRUE,
    },
    [SPECIES_WOBBUFFET] =
    {
        .baseHP = 190,
        .baseAttack = 33,
        .baseDefense = 58,
        .baseSpeed = 33,
        .baseSpAttack = 33,
        .baseSpDefense = 58,
        .types = {TYPE_PSYCHIC, TYPE_PSYCHIC},
        .catchRate = 45,
        .expYield = 177,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_SHADOW_TAG, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_GIRAFARIG] =
    {
        .baseHP = 70,
        .baseAttack = 80,
        .baseDefense = 65,
        .baseSpeed = 85,
        .baseSpAttack = 90,
        .baseSpDefense = 65,
        .types = {TYPE_NORMAL, TYPE_PSYCHIC},
        .catchRate = 60,
        .expYield = 149,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 2,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_PERSIM_BERRY,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_INNER_FOCUS, ABILITY_EARLY_BIRD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_PINECO] =
    {
        .baseHP = 50,
        .baseAttack = 65,
        .baseDefense = 90,
        .baseSpeed = 15,
        .baseSpAttack = 35,
        .baseSpDefense = 35,
        .types = {TYPE_BUG, TYPE_BUG},
        .catchRate = 190,
        .expYield = 60,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_STURDY, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_FORRETRESS] =
    {
        .baseHP = 75,
        .baseAttack = 90,
        .baseDefense = 140,
        .baseSpeed = 40,
        .baseSpAttack = 60,
        .baseSpDefense = 60,
        .types = {TYPE_BUG, TYPE_STEEL},
        .catchRate = 75,
        .expYield = 118,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_STURDY, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_DUNSPARCE] =
    {
        .baseHP = 100,
        .baseAttack = 70,
        .baseDefense = 70,
        .baseSpeed = 45,
        .baseSpAttack = 65,
        .baseSpDefense = 65,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 190,
        .expYield = 75,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_SERENE_GRACE, ABILITY_RUN_AWAY},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_GLIGAR] =
    {
        .baseHP = 65,
        .baseAttack = 75,
        .baseDefense = 105,
        .baseSpeed = 85,
        .baseSpAttack = 35,
        .baseSpDefense = 65,
        .types = {TYPE_GROUND, TYPE_FLYING},
        .catchRate = 60,
        .expYield = 108,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_HYPER_CUTTER, ABILITY_SAND_VEIL},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_STEELIX] =
    {
        .baseHP = 75,
        .baseAttack = 85,
        .baseDefense = 200,
        .baseSpeed = 30,
        .baseSpAttack = 55,
        .baseSpDefense = 65,
        .types = {TYPE_STEEL, TYPE_GROUND},
        .catchRate = 25,
        .expYield = 196,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_METAL_COAT,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_ROCK_HEAD, ABILITY_STURDY},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_SNUBBULL] =
    {
        .baseHP = 60,
        .baseAttack = 80,
        .baseDefense = 50,
        .baseSpeed = 30,
        .baseSpAttack = 40,
        .baseSpDefense = 40,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 190,
        .expYield = 63,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(75),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FAIRY},
        .abilities = {ABILITY_INTIMIDATE, ABILITY_RUN_AWAY},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_GRANBULL] =
    {
        .baseHP = 90,
        .baseAttack = 120,
        .baseDefense = 75,
        .baseSpeed = 45,
        .baseSpAttack = 60,
        .baseSpDefense = 60,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 75,
        .expYield = 178,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(75),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FAIRY},
        .abilities = {ABILITY_INTIMIDATE, ABILITY_INTIMIDATE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_QWILFISH] =
    {
        .baseHP = 65,
        .baseAttack = 95,
        .baseDefense = 75,
        .baseSpeed = 85,
        .baseSpAttack = 55,
        .baseSpDefense = 55,
        .types = {TYPE_WATER, TYPE_POISON},
        .catchRate = 45,
        .expYield = 100,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_2, EGG_GROUP_WATER_2},
        .abilities = {ABILITY_POISON_POINT, ABILITY_SWIFT_SWIM},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_SCIZOR] =
    {
        .baseHP = 70,
        .baseAttack = 130,
        .baseDefense = 100,
        .baseSpeed = 65,
        .baseSpAttack = 55,
        .baseSpDefense = 80,
        .types = {TYPE_BUG, TYPE_STEEL},
        .catchRate = 25,
        .expYield = 200,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_SWARM, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_SHUCKLE] =
    {
        .baseHP = 20,
        .baseAttack = 10,
        .baseDefense = 230,
        .baseSpeed = 5,
        .baseSpAttack = 10,
        .baseSpDefense = 230,
        .types = {TYPE_BUG, TYPE_ROCK},
        .catchRate = 190,
        .expYield = 80,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_BERRY_JUICE,
        .itemRare = ITEM_BERRY_JUICE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_STURDY, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_HERACROSS] =
    {
        .baseHP = 80,
        .baseAttack = 125,
        .baseDefense = 75,
        .baseSpeed = 85,
        .baseSpAttack = 40,
        .baseSpDefense = 95,
        .types = {TYPE_BUG, TYPE_FIGHTING},
        .catchRate = 45,
        .expYield = 200,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_SWARM, ABILITY_GUTS},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_SNEASEL] =
    {
        .baseHP = 55,
        .baseAttack = 95,
        .baseDefense = 55,
        .baseSpeed = 115,
        .baseSpAttack = 35,
        .baseSpDefense = 75,
        .types = {TYPE_DARK, TYPE_ICE},
        .catchRate = 60,
        .expYield = 132,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 35,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_INNER_FOCUS, ABILITY_KEEN_EYE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLACK,
        .noFlip = TRUE,
    },
    [SPECIES_TEDDIURSA] =
    {
        .baseHP = 60,
        .baseAttack = 80,
        .baseDefense = 50,
        .baseSpeed = 40,
        .baseSpAttack = 50,
        .baseSpDefense = 50,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 120,
        .expYield = 124,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_ORAN_BERRY,
        .itemRare = ITEM_SITRUS_BERRY,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_PICKUP, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = TRUE,
    },
    [SPECIES_URSARING] =
    {
        .baseHP = 90,
        .baseAttack = 130,
        .baseDefense = 75,
        .baseSpeed = 55,
        .baseSpAttack = 75,
        .baseSpDefense = 75,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 60,
        .expYield = 189,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_ORAN_BERRY,
        .itemRare = ITEM_SITRUS_BERRY,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_GUTS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_SLUGMA] =
    {
        .baseHP = 40,
        .baseAttack = 40,
        .baseDefense = 40,
        .baseSpeed = 20,
        .baseSpAttack = 70,
        .baseSpDefense = 40,
        .types = {TYPE_FIRE, TYPE_FIRE},
        .catchRate = 190,
        .expYield = 78,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_MAGMA_ARMOR, ABILITY_FLAME_BODY},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_MAGCARGO] =
    {
        .baseHP = 50,
        .baseAttack = 50,
        .baseDefense = 120,
        .baseSpeed = 30,
        .baseSpAttack = 80,
        .baseSpDefense = 80,
        .types = {TYPE_FIRE, TYPE_ROCK},
        .catchRate = 75,
        .expYield = 154,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_MAGMA_ARMOR, ABILITY_FLAME_BODY},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_SWINUB] =
    {
        .baseHP = 50,
        .baseAttack = 50,
        .baseDefense = 40,
        .baseSpeed = 50,
        .baseSpAttack = 30,
        .baseSpDefense = 30,
        .types = {TYPE_ICE, TYPE_GROUND},
        .catchRate = 225,
        .expYield = 78,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_ASPEAR_BERRY,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_OBLIVIOUS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_PILOSWINE] =
    {
        .baseHP = 100,
        .baseAttack = 100,
        .baseDefense = 80,
        .baseSpeed = 50,
        .baseSpAttack = 60,
        .baseSpDefense = 60,
        .types = {TYPE_ICE, TYPE_GROUND},
        .catchRate = 75,
        .expYield = 160,
        .evYield_HP = 1,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_ASPEAR_BERRY,
        .itemRare = ITEM_NEVER_MELT_ICE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_OBLIVIOUS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_CORSOLA] =
    {
        .baseHP = 55,
        .baseAttack = 55,
        .baseDefense = 85,
        .baseSpeed = 35,
        .baseSpAttack = 65,
        .baseSpDefense = 85,
        .types = {TYPE_WATER, TYPE_ROCK},
        .catchRate = 60,
        .expYield = 113,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_RED_SHARD,
        .genderRatio = PERCENT_FEMALE(75),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_WATER_3},
        .abilities = {ABILITY_HUSTLE, ABILITY_NATURAL_CURE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_REMORAID] =
    {
        .baseHP = 35,
        .baseAttack = 65,
        .baseDefense = 35,
        .baseSpeed = 65,
        .baseSpAttack = 65,
        .baseSpDefense = 35,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 190,
        .expYield = 78,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_WATER_2},
        .abilities = {ABILITY_HUSTLE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_OCTILLERY] =
    {
        .baseHP = 75,
        .baseAttack = 105,
        .baseDefense = 75,
        .baseSpeed = 45,
        .baseSpAttack = 105,
        .baseSpDefense = 75,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 75,
        .expYield = 164,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_WATER_2},
        .abilities = {ABILITY_SUCTION_CUPS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_DELIBIRD] =
    {
        .baseHP = 45,
        .baseAttack = 55,
        .baseDefense = 45,
        .baseSpeed = 75,
        .baseSpAttack = 65,
        .baseSpDefense = 45,
        .types = {TYPE_ICE, TYPE_FLYING},
        .catchRate = 45,
        .expYield = 183,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_FIELD},
        .abilities = {ABILITY_VITAL_SPIRIT, ABILITY_HUSTLE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_MANTINE] =
    {
        .baseHP = 65,
        .baseAttack = 40,
        .baseDefense = 70,
        .baseSpeed = 70,
        .baseSpAttack = 80,
        .baseSpDefense = 140,
        .types = {TYPE_WATER, TYPE_FLYING},
        .catchRate = 25,
        .expYield = 168,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 2,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_SWIFT_SWIM, ABILITY_WATER_ABSORB},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_SKARMORY] =
    {
        .baseHP = 65,
        .baseAttack = 80,
        .baseDefense = 140,
        .baseSpeed = 70,
        .baseSpAttack = 40,
        .baseSpDefense = 70,
        .types = {TYPE_STEEL, TYPE_FLYING},
        .catchRate = 25,
        .expYield = 168,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_SHARP_BEAK,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FLYING},
        .abilities = {ABILITY_KEEN_EYE, ABILITY_STURDY},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_HOUNDOUR] =
    {
        .baseHP = 45,
        .baseAttack = 60,
        .baseDefense = 30,
        .baseSpeed = 65,
        .baseSpAttack = 80,
        .baseSpDefense = 50,
        .types = {TYPE_DARK, TYPE_FIRE},
        .catchRate = 120,
        .expYield = 114,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_EARLY_BIRD, ABILITY_FLASH_FIRE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLACK,
        .noFlip = FALSE,
    },
    [SPECIES_HOUNDOOM] =
    {
        .baseHP = 75,
        .baseAttack = 90,
        .baseDefense = 50,
        .baseSpeed = 95,
        .baseSpAttack = 110,
        .baseSpDefense = 80,
        .types = {TYPE_DARK, TYPE_FIRE},
        .catchRate = 45,
        .expYield = 204,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 2,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_EARLY_BIRD, ABILITY_FLASH_FIRE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLACK,
        .noFlip = FALSE,
    },
    [SPECIES_KINGDRA] =
    {
        .baseHP = 75,
        .baseAttack = 95,
        .baseDefense = 95,
        .baseSpeed = 85,
        .baseSpAttack = 95,
        .baseSpDefense = 95,
        .types = {TYPE_WATER, TYPE_DRAGON},
        .catchRate = 45,
        .expYield = 207,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_DRAGON_SCALE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_SWIFT_SWIM, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_PHANPY] =
    {
        .baseHP = 90,
        .baseAttack = 60,
        .baseDefense = 60,
        .baseSpeed = 40,
        .baseSpAttack = 40,
        .baseSpDefense = 40,
        .types = {TYPE_GROUND, TYPE_GROUND},
        .catchRate = 120,
        .expYield = 124,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_PICKUP, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_DONPHAN] =
    {
        .baseHP = 90,
        .baseAttack = 120,
        .baseDefense = 120,
        .baseSpeed = 50,
        .baseSpAttack = 60,
        .baseSpDefense = 60,
        .types = {TYPE_GROUND, TYPE_GROUND},
        .catchRate = 60,
        .expYield = 189,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_STURDY, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_PORYGON2] =
    {
        .baseHP = 85,
        .baseAttack = 80,
        .baseDefense = 90,
        .baseSpeed = 60,
        .baseSpAttack = 105,
        .baseSpDefense = 95,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 45,
        .expYield = 180,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 2,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_UP_GRADE,
        .itemRare = ITEM_UP_GRADE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_TRACE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_STANTLER] =
    {
        .baseHP = 73,
        .baseAttack = 95,
        .baseDefense = 62,
        .baseSpeed = 85,
        .baseSpAttack = 85,
        .baseSpDefense = 65,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 45,
        .expYield = 165,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_INTIMIDATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_SMEARGLE] =
    {
        .baseHP = 55,
        .baseAttack = 20,
        .baseDefense = 35,
        .baseSpeed = 75,
        .baseSpAttack = 20,
        .baseSpDefense = 45,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 45,
        .expYield = 106,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_OWN_TEMPO, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_WHITE,
        .noFlip = FALSE,
    },
    [SPECIES_TYROGUE] =
    {
        .baseHP = 35,
        .baseAttack = 35,
        .baseDefense = 35,
        .baseSpeed = 35,
        .baseSpAttack = 35,
        .baseSpDefense = 35,
        .types = {TYPE_FIGHTING, TYPE_FIGHTING},
        .catchRate = 75,
        .expYield = 91,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_MALE,
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_GUTS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_HITMONTOP] =
    {
        .baseHP = 50,
        .baseAttack = 95,
        .baseDefense = 95,
        .baseSpeed = 70,
        .baseSpAttack = 35,
        .baseSpDefense = 110,
        .types = {TYPE_FIGHTING, TYPE_FIGHTING},
        .catchRate = 45,
        .expYield = 138,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 2,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_MALE,
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_HUMAN_LIKE, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_INTIMIDATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_SMOOCHUM] =
    {
        .baseHP = 45,
        .baseAttack = 30,
        .baseDefense = 15,
        .baseSpeed = 65,
        .baseSpAttack = 85,
        .baseSpDefense = 65,
        .types = {TYPE_ICE, TYPE_PSYCHIC},
        .catchRate = 45,
        .expYield = 87,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_FEMALE,
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_OBLIVIOUS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_ELEKID] =
    {
        .baseHP = 45,
        .baseAttack = 63,
        .baseDefense = 37,
        .baseSpeed = 95,
        .baseSpAttack = 65,
        .baseSpDefense = 55,
        .types = {TYPE_ELECTRIC, TYPE_ELECTRIC},
        .catchRate = 45,
        .expYield = 106,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(25),
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_STATIC, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = TRUE,
    },
    [SPECIES_MAGBY] =
    {
        .baseHP = 45,
        .baseAttack = 75,
        .baseDefense = 37,
        .baseSpeed = 83,
        .baseSpAttack = 70,
        .baseSpDefense = 55,
        .types = {TYPE_FIRE, TYPE_FIRE},
        .catchRate = 45,
        .expYield = 117,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(25),
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_FLAME_BODY, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_MILTANK] =
    {
        .baseHP = 95,
        .baseAttack = 80,
        .baseDefense = 105,
        .baseSpeed = 100,
        .baseSpAttack = 40,
        .baseSpDefense = 70,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 45,
        .expYield = 200,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_MOOMOO_MILK,
        .itemRare = ITEM_MOOMOO_MILK,
        .genderRatio = MON_FEMALE,
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_THICK_FAT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_BLISSEY] =
    {
        .baseHP = 255,
        .baseAttack = 10,
        .baseDefense = 10,
        .baseSpeed = 55,
        .baseSpAttack = 75,
        .baseSpDefense = 135,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 30,
        .expYield = 255,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_LUCKY_EGG,
        .genderRatio = MON_FEMALE,
        .eggCycles = 40,
        .friendship = 140,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_FAIRY, EGG_GROUP_FAIRY},
        .abilities = {ABILITY_NATURAL_CURE, ABILITY_SERENE_GRACE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_RAIKOU] =
    {
        .baseHP = 90,
        .baseAttack = 85,
        .baseDefense = 75,
        .baseSpeed = 115,
        .baseSpAttack = 115,
        .baseSpDefense = 100,
        .types = {TYPE_ELECTRIC, TYPE_ELECTRIC},
        .catchRate = 3,
        .expYield = 216,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 80,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_PRESSURE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_ENTEI] =
    {
        .baseHP = 115,
        .baseAttack = 115,
        .baseDefense = 85,
        .baseSpeed = 100,
        .baseSpAttack = 90,
        .baseSpDefense = 75,
        .types = {TYPE_FIRE, TYPE_FIRE},
        .catchRate = 3,
        .expYield = 217,
        .evYield_HP = 1,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 80,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_PRESSURE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_SUICUNE] =
    {
        .baseHP = 100,
        .baseAttack = 75,
        .baseDefense = 115,
        .baseSpeed = 85,
        .baseSpAttack = 90,
        .baseSpDefense = 115,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 3,
        .expYield = 215,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 2,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 80,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_PRESSURE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_LARVITAR] =
    {
        .baseHP = 50,
        .baseAttack = 64,
        .baseDefense = 50,
        .baseSpeed = 41,
        .baseSpAttack = 45,
        .baseSpDefense = 50,
        .types = {TYPE_ROCK, TYPE_GROUND},
        .catchRate = 45,
        .expYield = 67,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 40,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_MONSTER},
        .abilities = {ABILITY_GUTS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_PUPITAR] =
    {
        .baseHP = 70,
        .baseAttack = 84,
        .baseDefense = 70,
        .baseSpeed = 51,
        .baseSpAttack = 65,
        .baseSpDefense = 70,
        .types = {TYPE_ROCK, TYPE_GROUND},
        .catchRate = 45,
        .expYield = 144,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 40,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_MONSTER},
        .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_TYRANITAR] =
    {
        .baseHP = 100,
        .baseAttack = 134,
        .baseDefense = 110,
        .baseSpeed = 61,
        .baseSpAttack = 95,
        .baseSpDefense = 100,
        .types = {TYPE_ROCK, TYPE_DARK},
        .catchRate = 45,
        .expYield = 218,
        .evYield_HP = 0,
        .evYield_Attack = 3,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 40,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_MONSTER},
        .abilities = {ABILITY_SAND_STREAM, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_LUGIA] =
    {
        .baseHP = 106,
        .baseAttack = 90,
        .baseDefense = 130,
        .baseSpeed = 110,
        .baseSpAttack = 90,
        .baseSpDefense = 154,
        .types = {TYPE_PSYCHIC, TYPE_FLYING},
        .catchRate = 3,
        .expYield = 220,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 3,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 120,
        .friendship = 0,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_PRESSURE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_WHITE,
        .noFlip = FALSE,
    },
    [SPECIES_HO_OH] =
    {
        .baseHP = 106,
        .baseAttack = 130,
        .baseDefense = 90,
        .baseSpeed = 90,
        .baseSpAttack = 110,
        .baseSpDefense = 154,
        .types = {TYPE_FIRE, TYPE_FLYING},
        .catchRate = 3,
        .expYield = 220,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 3,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 120,
        .friendship = 0,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_PRESSURE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_CELEBI] =
    {
        .baseHP = 100,
        .baseAttack = 100,
        .baseDefense = 100,
        .baseSpeed = 100,
        .baseSpAttack = 100,
        .baseSpDefense = 100,
        .types = {TYPE_PSYCHIC, TYPE_GRASS},
        .catchRate = 45,
        .expYield = 64,
        .evYield_HP = 3,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_LUM_BERRY,
        .itemRare = ITEM_LUM_BERRY,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 120,
        .friendship = 100,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_NATURAL_CURE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_OLD_UNOWN_B] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_C] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_D] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_E] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_F] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_G] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_H] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_I] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_J] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_K] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_L] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_M] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_N] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_O] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_P] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_Q] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_R] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_S] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_T] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_U] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_V] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_W] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_X] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_Y] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_OLD_UNOWN_Z] = OLD_UNOWN_SPECIES_INFO,
    [SPECIES_TREECKO] =
    {
        .baseHP = 40,
        .baseAttack = 45,
        .baseDefense = 35,
        .baseSpeed = 70,
        .baseSpAttack = 65,
        .baseSpDefense = 55,
        .types = {TYPE_GRASS, TYPE_GRASS},
        .catchRate = 45,
        .expYield = 65,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_OVERGROW, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_GROVYLE] =
    {
        .baseHP = 50,
        .baseAttack = 65,
        .baseDefense = 45,
        .baseSpeed = 95,
        .baseSpAttack = 85,
        .baseSpDefense = 65,
        .types = {TYPE_GRASS, TYPE_GRASS},
        .catchRate = 45,
        .expYield = 141,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_OVERGROW, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_SCEPTILE] =
    {
        .baseHP = 70,
        .baseAttack = 85,
        .baseDefense = 65,
        .baseSpeed = 120,
        .baseSpAttack = 105,
        .baseSpDefense = 85,
        .types = {TYPE_GRASS, TYPE_GRASS},
        .catchRate = 45,
        .expYield = 208,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 3,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_OVERGROW, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_TORCHIC] =
    {
        .baseHP = 45,
        .baseAttack = 60,
        .baseDefense = 40,
        .baseSpeed = 45,
        .baseSpAttack = 70,
        .baseSpDefense = 50,
        .types = {TYPE_FIRE, TYPE_FIRE},
        .catchRate = 45,
        .expYield = 65,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_BLAZE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_COMBUSKEN] =
    {
        .baseHP = 60,
        .baseAttack = 85,
        .baseDefense = 60,
        .baseSpeed = 55,
        .baseSpAttack = 85,
        .baseSpDefense = 60,
        .types = {TYPE_FIRE, TYPE_FIGHTING},
        .catchRate = 45,
        .expYield = 142,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_BLAZE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_BLAZIKEN] =
    {
        .baseHP = 80,
        .baseAttack = 120,
        .baseDefense = 70,
        .baseSpeed = 80,
        .baseSpAttack = 110,
        .baseSpDefense = 70,
        .types = {TYPE_FIRE, TYPE_FIGHTING},
        .catchRate = 45,
        .expYield = 209,
        .evYield_HP = 0,
        .evYield_Attack = 3,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_BLAZE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_MUDKIP] =
    {
        .baseHP = 50,
        .baseAttack = 70,
        .baseDefense = 50,
        .baseSpeed = 40,
        .baseSpAttack = 50,
        .baseSpDefense = 50,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 45,
        .expYield = 65,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_TORRENT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_MARSHTOMP] =
    {
        .baseHP = 70,
        .baseAttack = 85,
        .baseDefense = 70,
        .baseSpeed = 50,
        .baseSpAttack = 60,
        .baseSpDefense = 70,
        .types = {TYPE_WATER, TYPE_GROUND},
        .catchRate = 45,
        .expYield = 143,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_TORRENT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_SWAMPERT] =
    {
        .baseHP = 100,
        .baseAttack = 110,
        .baseDefense = 90,
        .baseSpeed = 60,
        .baseSpAttack = 85,
        .baseSpDefense = 90,
        .types = {TYPE_WATER, TYPE_GROUND},
        .catchRate = 45,
        .expYield = 210,
        .evYield_HP = 0,
        .evYield_Attack = 3,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_TORRENT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_POOCHYENA] =
    {
        .baseHP = 35,
        .baseAttack = 55,
        .baseDefense = 35,
        .baseSpeed = 35,
        .baseSpAttack = 30,
        .baseSpDefense = 30,
        .types = {TYPE_DARK, TYPE_DARK},
        .catchRate = 255,
        .expYield = 55,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_PECHA_BERRY,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_RUN_AWAY, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_MIGHTYENA] =
    {
        .baseHP = 70,
        .baseAttack = 90,
        .baseDefense = 70,
        .baseSpeed = 70,
        .baseSpAttack = 60,
        .baseSpDefense = 60,
        .types = {TYPE_DARK, TYPE_DARK},
        .catchRate = 127,
        .expYield = 128,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_PECHA_BERRY,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_INTIMIDATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_ZIGZAGOON] =
    {
        .baseHP = 38,
        .baseAttack = 30,
        .baseDefense = 41,
        .baseSpeed = 60,
        .baseSpAttack = 30,
        .baseSpDefense = 41,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 255,
        .expYield = 60,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_ORAN_BERRY,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_PICKUP, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_LINOONE] =
    {
        .baseHP = 78,
        .baseAttack = 70,
        .baseDefense = 61,
        .baseSpeed = 100,
        .baseSpAttack = 50,
        .baseSpDefense = 61,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 90,
        .expYield = 128,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_ORAN_BERRY,
        .itemRare = ITEM_SITRUS_BERRY,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_PICKUP, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_WHITE,
        .noFlip = FALSE,
    },
    [SPECIES_WURMPLE] =
    {
        .baseHP = 45,
        .baseAttack = 45,
        .baseDefense = 35,
        .baseSpeed = 20,
        .baseSpAttack = 20,
        .baseSpDefense = 30,
        .types = {TYPE_BUG, TYPE_BUG},
        .catchRate = 255,
        .expYield = 54,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_SHIELD_DUST, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_SILCOON] =
    {
        .baseHP = 50,
        .baseAttack = 35,
        .baseDefense = 55,
        .baseSpeed = 15,
        .baseSpAttack = 25,
        .baseSpDefense = 25,
        .types = {TYPE_BUG, TYPE_BUG},
        .catchRate = 120,
        .expYield = 71,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_WHITE,
        .noFlip = FALSE,
    },
    [SPECIES_BEAUTIFLY] =
    {
        .baseHP = 60,
        .baseAttack = 70,
        .baseDefense = 50,
        .baseSpeed = 65,
        .baseSpAttack = 90,
        .baseSpDefense = 50,
        .types = {TYPE_BUG, TYPE_FLYING},
        .catchRate = 45,
        .expYield = 161,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 3,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_SILVER_POWDER,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_SWARM, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_CASCOON] =
    {
        .baseHP = 50,
        .baseAttack = 35,
        .baseDefense = 55,
        .baseSpeed = 15,
        .baseSpAttack = 25,
        .baseSpDefense = 25,
        .types = {TYPE_BUG, TYPE_BUG},
        .catchRate = 120,
        .expYield = 72,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_DUSTOX] =
    {
        .baseHP = 60,
        .baseAttack = 50,
        .baseDefense = 70,
        .baseSpeed = 65,
        .baseSpAttack = 50,
        .baseSpDefense = 90,
        .types = {TYPE_BUG, TYPE_POISON},
        .catchRate = 45,
        .expYield = 160,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 3,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_SILVER_POWDER,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_SHIELD_DUST, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_LOTAD] =
    {
        .baseHP = 40,
        .baseAttack = 30,
        .baseDefense = 30,
        .baseSpeed = 30,
        .baseSpAttack = 40,
        .baseSpDefense = 50,
        .types = {TYPE_WATER, TYPE_GRASS},
        .catchRate = 255,
        .expYield = 74,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_GRASS},
        .abilities = {ABILITY_SWIFT_SWIM, ABILITY_RAIN_DISH},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_LOMBRE] =
    {
        .baseHP = 60,
        .baseAttack = 50,
        .baseDefense = 50,
        .baseSpeed = 50,
        .baseSpAttack = 60,
        .baseSpDefense = 70,
        .types = {TYPE_WATER, TYPE_GRASS},
        .catchRate = 120,
        .expYield = 141,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 2,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_GRASS},
        .abilities = {ABILITY_SWIFT_SWIM, ABILITY_RAIN_DISH},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_LUDICOLO] =
    {
        .baseHP = 80,
        .baseAttack = 70,
        .baseDefense = 70,
        .baseSpeed = 70,
        .baseSpAttack = 90,
        .baseSpDefense = 100,
        .types = {TYPE_WATER, TYPE_GRASS},
        .catchRate = 45,
        .expYield = 181,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 3,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_GRASS},
        .abilities = {ABILITY_SWIFT_SWIM, ABILITY_RAIN_DISH},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_SEEDOT] =
    {
        .baseHP = 40,
        .baseAttack = 40,
        .baseDefense = 50,
        .baseSpeed = 30,
        .baseSpAttack = 30,
        .baseSpDefense = 30,
        .types = {TYPE_GRASS, TYPE_GRASS},
        .catchRate = 255,
        .expYield = 74,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_GRASS},
        .abilities = {ABILITY_CHLOROPHYLL, ABILITY_EARLY_BIRD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_NUZLEAF] =
    {
        .baseHP = 70,
        .baseAttack = 70,
        .baseDefense = 40,
        .baseSpeed = 60,
        .baseSpAttack = 60,
        .baseSpDefense = 40,
        .types = {TYPE_GRASS, TYPE_DARK},
        .catchRate = 120,
        .expYield = 141,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_GRASS},
        .abilities = {ABILITY_CHLOROPHYLL, ABILITY_EARLY_BIRD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_SHIFTRY] =
    {
        .baseHP = 90,
        .baseAttack = 100,
        .baseDefense = 60,
        .baseSpeed = 80,
        .baseSpAttack = 90,
        .baseSpDefense = 60,
        .types = {TYPE_GRASS, TYPE_DARK},
        .catchRate = 45,
        .expYield = 181,
        .evYield_HP = 0,
        .evYield_Attack = 3,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_GRASS},
        .abilities = {ABILITY_CHLOROPHYLL, ABILITY_EARLY_BIRD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_NINCADA] =
    {
        .baseHP = 31,
        .baseAttack = 45,
        .baseDefense = 90,
        .baseSpeed = 40,
        .baseSpAttack = 30,
        .baseSpDefense = 30,
        .types = {TYPE_BUG, TYPE_GROUND},
        .catchRate = 255,
        .expYield = 65,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_ERRATIC,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_COMPOUND_EYES, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_NINJASK] =
    {
        .baseHP = 61,
        .baseAttack = 90,
        .baseDefense = 45,
        .baseSpeed = 160,
        .baseSpAttack = 50,
        .baseSpDefense = 50,
        .types = {TYPE_BUG, TYPE_FLYING},
        .catchRate = 120,
        .expYield = 155,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_ERRATIC,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_SPEED_BOOST, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_SHEDINJA] =
    {
        .baseHP = 1,
        .baseAttack = 90,
        .baseDefense = 45,
        .baseSpeed = 40,
        .baseSpAttack = 30,
        .baseSpDefense = 30,
        .types = {TYPE_BUG, TYPE_GHOST},
        .catchRate = 45,
        .expYield = 95,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_ERRATIC,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_WONDER_GUARD, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_TAILLOW] =
    {
        .baseHP = 40,
        .baseAttack = 55,
        .baseDefense = 30,
        .baseSpeed = 85,
        .baseSpAttack = 30,
        .baseSpDefense = 30,
        .types = {TYPE_NORMAL, TYPE_FLYING},
        .catchRate = 200,
        .expYield = 59,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FLYING},
        .abilities = {ABILITY_GUTS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_SWELLOW] =
    {
        .baseHP = 60,
        .baseAttack = 85,
        .baseDefense = 60,
        .baseSpeed = 125,
        .baseSpAttack = 50,
        .baseSpDefense = 50,
        .types = {TYPE_NORMAL, TYPE_FLYING},
        .catchRate = 45,
        .expYield = 162,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_FLYING},
        .abilities = {ABILITY_GUTS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_SHROOMISH] =
    {
        .baseHP = 60,
        .baseAttack = 40,
        .baseDefense = 60,
        .baseSpeed = 35,
        .baseSpAttack = 40,
        .baseSpDefense = 60,
        .types = {TYPE_GRASS, TYPE_GRASS},
        .catchRate = 255,
        .expYield = 65,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_FLUCTUATING,
        .eggGroups = {EGG_GROUP_FAIRY, EGG_GROUP_GRASS},
        .abilities = {ABILITY_EFFECT_SPORE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_BRELOOM] =
    {
        .baseHP = 60,
        .baseAttack = 130,
        .baseDefense = 80,
        .baseSpeed = 70,
        .baseSpAttack = 60,
        .baseSpDefense = 60,
        .types = {TYPE_GRASS, TYPE_FIGHTING},
        .catchRate = 90,
        .expYield = 165,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_FLUCTUATING,
        .eggGroups = {EGG_GROUP_FAIRY, EGG_GROUP_GRASS},
        .abilities = {ABILITY_EFFECT_SPORE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_SPINDA] =
    {
        .baseHP = 60,
        .baseAttack = 60,
        .baseDefense = 60,
        .baseSpeed = 60,
        .baseSpAttack = 60,
        .baseSpDefense = 60,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 255,
        .expYield = 85,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_CHESTO_BERRY,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_OWN_TEMPO, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = TRUE,
    },
    [SPECIES_WINGULL] =
    {
        .baseHP = 40,
        .baseAttack = 30,
        .baseDefense = 30,
        .baseSpeed = 85,
        .baseSpAttack = 55,
        .baseSpDefense = 30,
        .types = {TYPE_WATER, TYPE_FLYING},
        .catchRate = 190,
        .expYield = 64,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_FLYING},
        .abilities = {ABILITY_KEEN_EYE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_WHITE,
        .noFlip = FALSE,
    },
    [SPECIES_PELIPPER] =
    {
        .baseHP = 60,
        .baseAttack = 50,
        .baseDefense = 100,
        .baseSpeed = 65,
        .baseSpAttack = 85,
        .baseSpDefense = 70,
        .types = {TYPE_WATER, TYPE_FLYING},
        .catchRate = 45,
        .expYield = 164,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_FLYING},
        .abilities = {ABILITY_KEEN_EYE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_SURSKIT] =
    {
        .baseHP = 40,
        .baseAttack = 30,
        .baseDefense = 32,
        .baseSpeed = 65,
        .baseSpAttack = 50,
        .baseSpDefense = 52,
        .types = {TYPE_BUG, TYPE_WATER},
        .catchRate = 200,
        .expYield = 63,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_BUG},
        .abilities = {ABILITY_SWIFT_SWIM, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_MASQUERAIN] =
    {
        .baseHP = 70,
        .baseAttack = 60,
        .baseDefense = 62,
        .baseSpeed = 60,
        .baseSpAttack = 80,
        .baseSpDefense = 82,
        .types = {TYPE_BUG, TYPE_FLYING},
        .catchRate = 75,
        .expYield = 128,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_SILVER_POWDER,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_BUG},
        .abilities = {ABILITY_INTIMIDATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_WAILMER] =
    {
        .baseHP = 130,
        .baseAttack = 70,
        .baseDefense = 35,
        .baseSpeed = 60,
        .baseSpAttack = 70,
        .baseSpDefense = 35,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 125,
        .expYield = 137,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 40,
        .friendship = 70,
        .growthRate = GROWTH_FLUCTUATING,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_WATER_2},
        .abilities = {ABILITY_WATER_VEIL, ABILITY_OBLIVIOUS},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_WAILORD] =
    {
        .baseHP = 170,
        .baseAttack = 90,
        .baseDefense = 45,
        .baseSpeed = 60,
        .baseSpAttack = 90,
        .baseSpDefense = 45,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 60,
        .expYield = 206,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 40,
        .friendship = 70,
        .growthRate = GROWTH_FLUCTUATING,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_WATER_2},
        .abilities = {ABILITY_WATER_VEIL, ABILITY_OBLIVIOUS},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_SKITTY] =
    {
        .baseHP = 50,
        .baseAttack = 45,
        .baseDefense = 45,
        .baseSpeed = 50,
        .baseSpAttack = 35,
        .baseSpDefense = 35,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 255,
        .expYield = 65,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_LEPPA_BERRY,
        .genderRatio = PERCENT_FEMALE(75),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FAIRY},
        .abilities = {ABILITY_CUTE_CHARM, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_DELCATTY] =
    {
        .baseHP = 70,
        .baseAttack = 65,
        .baseDefense = 65,
        .baseSpeed = 70,
        .baseSpAttack = 55,
        .baseSpDefense = 55,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 60,
        .expYield = 138,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_LEPPA_BERRY,
        .genderRatio = PERCENT_FEMALE(75),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FAIRY},
        .abilities = {ABILITY_CUTE_CHARM, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_KECLEON] =
    {
        .baseHP = 60,
        .baseAttack = 90,
        .baseDefense = 70,
        .baseSpeed = 40,
        .baseSpAttack = 60,
        .baseSpDefense = 120,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 200,
        .expYield = 132,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_PERSIM_BERRY,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_COLOR_CHANGE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_BALTOY] =
    {
        .baseHP = 40,
        .baseAttack = 40,
        .baseDefense = 55,
        .baseSpeed = 55,
        .baseSpAttack = 40,
        .baseSpDefense = 70,
        .types = {TYPE_GROUND, TYPE_PSYCHIC},
        .catchRate = 255,
        .expYield = 58,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_LEVITATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_CLAYDOL] =
    {
        .baseHP = 60,
        .baseAttack = 70,
        .baseDefense = 105,
        .baseSpeed = 75,
        .baseSpAttack = 70,
        .baseSpDefense = 120,
        .types = {TYPE_GROUND, TYPE_PSYCHIC},
        .catchRate = 90,
        .expYield = 189,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 2,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_LEVITATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLACK,
        .noFlip = FALSE,
    },
    [SPECIES_NOSEPASS] =
    {
        .baseHP = 30,
        .baseAttack = 45,
        .baseDefense = 135,
        .baseSpeed = 30,
        .baseSpAttack = 45,
        .baseSpDefense = 90,
        .types = {TYPE_ROCK, TYPE_ROCK},
        .catchRate = 255,
        .expYield = 108,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_STURDY, ABILITY_MAGNET_PULL},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_TORKOAL] =
    {
        .baseHP = 70,
        .baseAttack = 85,
        .baseDefense = 140,
        .baseSpeed = 20,
        .baseSpAttack = 85,
        .baseSpDefense = 70,
        .types = {TYPE_FIRE, TYPE_FIRE},
        .catchRate = 90,
        .expYield = 161,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_WHITE_SMOKE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_SABLEYE] =
    {
        .baseHP = 50,
        .baseAttack = 75,
        .baseDefense = 75,
        .baseSpeed = 50,
        .baseSpAttack = 65,
        .baseSpDefense = 65,
        .types = {TYPE_DARK, TYPE_GHOST},
        .catchRate = 45,
        .expYield = 98,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 25,
        .friendship = 35,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_HUMAN_LIKE, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_KEEN_EYE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_BARBOACH] =
    {
        .baseHP = 50,
        .baseAttack = 48,
        .baseDefense = 43,
        .baseSpeed = 60,
        .baseSpAttack = 46,
        .baseSpDefense = 41,
        .types = {TYPE_WATER, TYPE_GROUND},
        .catchRate = 190,
        .expYield = 92,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_2, EGG_GROUP_WATER_2},
        .abilities = {ABILITY_OBLIVIOUS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_WHISCASH] =
    {
        .baseHP = 110,
        .baseAttack = 78,
        .baseDefense = 73,
        .baseSpeed = 60,
        .baseSpAttack = 76,
        .baseSpDefense = 71,
        .types = {TYPE_WATER, TYPE_GROUND},
        .catchRate = 75,
        .expYield = 158,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_WATER_2, EGG_GROUP_WATER_2},
        .abilities = {ABILITY_OBLIVIOUS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_LUVDISC] =
    {
        .baseHP = 43,
        .baseAttack = 30,
        .baseDefense = 55,
        .baseSpeed = 97,
        .baseSpAttack = 40,
        .baseSpDefense = 65,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 225,
        .expYield = 110,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_HEART_SCALE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(75),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_WATER_2, EGG_GROUP_WATER_2},
        .abilities = {ABILITY_SWIFT_SWIM, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_CORPHISH] =
    {
        .baseHP = 43,
        .baseAttack = 80,
        .baseDefense = 65,
        .baseSpeed = 35,
        .baseSpAttack = 50,
        .baseSpDefense = 35,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 205,
        .expYield = 111,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_FLUCTUATING,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_WATER_3},
        .abilities = {ABILITY_HYPER_CUTTER, ABILITY_SHELL_ARMOR},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_CRAWDAUNT] =
    {
        .baseHP = 63,
        .baseAttack = 120,
        .baseDefense = 85,
        .baseSpeed = 55,
        .baseSpAttack = 90,
        .baseSpDefense = 55,
        .types = {TYPE_WATER, TYPE_DARK},
        .catchRate = 155,
        .expYield = 161,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_FLUCTUATING,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_WATER_3},
        .abilities = {ABILITY_HYPER_CUTTER, ABILITY_SHELL_ARMOR},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_FEEBAS] =
    {
        .baseHP = 20,
        .baseAttack = 15,
        .baseDefense = 20,
        .baseSpeed = 80,
        .baseSpAttack = 10,
        .baseSpDefense = 55,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 255,
        .expYield = 61,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_ERRATIC,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_SWIFT_SWIM, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_MILOTIC] =
    {
        .baseHP = 95,
        .baseAttack = 60,
        .baseDefense = 79,
        .baseSpeed = 81,
        .baseSpAttack = 100,
        .baseSpDefense = 125,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 60,
        .expYield = 213,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 2,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_ERRATIC,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_MARVEL_SCALE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_CARVANHA] =
    {
        .baseHP = 45,
        .baseAttack = 90,
        .baseDefense = 20,
        .baseSpeed = 65,
        .baseSpAttack = 65,
        .baseSpDefense = 20,
        .types = {TYPE_WATER, TYPE_DARK},
        .catchRate = 225,
        .expYield = 88,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_WATER_2, EGG_GROUP_WATER_2},
        .abilities = {ABILITY_ROUGH_SKIN, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_SHARPEDO] =
    {
        .baseHP = 70,
        .baseAttack = 120,
        .baseDefense = 40,
        .baseSpeed = 95,
        .baseSpAttack = 95,
        .baseSpDefense = 40,
        .types = {TYPE_WATER, TYPE_DARK},
        .catchRate = 60,
        .expYield = 175,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_WATER_2, EGG_GROUP_WATER_2},
        .abilities = {ABILITY_ROUGH_SKIN, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_TRAPINCH] =
    {
        .baseHP = 45,
        .baseAttack = 100,
        .baseDefense = 45,
        .baseSpeed = 10,
        .baseSpAttack = 45,
        .baseSpDefense = 45,
        .types = {TYPE_GROUND, TYPE_GROUND},
        .catchRate = 255,
        .expYield = 73,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_SOFT_SAND,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_HYPER_CUTTER, ABILITY_ARENA_TRAP},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_VIBRAVA] =
    {
        .baseHP = 50,
        .baseAttack = 70,
        .baseDefense = 50,
        .baseSpeed = 70,
        .baseSpAttack = 50,
        .baseSpDefense = 50,
        .types = {TYPE_GROUND, TYPE_DRAGON},
        .catchRate = 120,
        .expYield = 126,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_LEVITATE, ABILITY_LEVITATE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_FLYGON] =
    {
        .baseHP = 80,
        .baseAttack = 100,
        .baseDefense = 80,
        .baseSpeed = 100,
        .baseSpAttack = 80,
        .baseSpDefense = 80,
        .types = {TYPE_GROUND, TYPE_DRAGON},
        .catchRate = 45,
        .expYield = 197,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_BUG},
        .abilities = {ABILITY_LEVITATE, ABILITY_LEVITATE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_MAKUHITA] =
    {
        .baseHP = 72,
        .baseAttack = 60,
        .baseDefense = 30,
        .baseSpeed = 25,
        .baseSpAttack = 20,
        .baseSpDefense = 30,
        .types = {TYPE_FIGHTING, TYPE_FIGHTING},
        .catchRate = 180,
        .expYield = 87,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(25),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_FLUCTUATING,
        .eggGroups = {EGG_GROUP_HUMAN_LIKE, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_THICK_FAT, ABILITY_GUTS},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_HARIYAMA] =
    {
        .baseHP = 144,
        .baseAttack = 120,
        .baseDefense = 60,
        .baseSpeed = 50,
        .baseSpAttack = 40,
        .baseSpDefense = 60,
        .types = {TYPE_FIGHTING, TYPE_FIGHTING},
        .catchRate = 200,
        .expYield = 184,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_KINGS_ROCK,
        .genderRatio = PERCENT_FEMALE(25),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_FLUCTUATING,
        .eggGroups = {EGG_GROUP_HUMAN_LIKE, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_THICK_FAT, ABILITY_GUTS},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_ELECTRIKE] =
    {
        .baseHP = 40,
        .baseAttack = 45,
        .baseDefense = 40,
        .baseSpeed = 65,
        .baseSpAttack = 65,
        .baseSpDefense = 40,
        .types = {TYPE_ELECTRIC, TYPE_ELECTRIC},
        .catchRate = 120,
        .expYield = 104,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_STATIC, ABILITY_LIGHTNING_ROD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_MANECTRIC] =
    {
        .baseHP = 70,
        .baseAttack = 75,
        .baseDefense = 60,
        .baseSpeed = 105,
        .baseSpAttack = 105,
        .baseSpDefense = 60,
        .types = {TYPE_ELECTRIC, TYPE_ELECTRIC},
        .catchRate = 45,
        .expYield = 168,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_STATIC, ABILITY_LIGHTNING_ROD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_NUMEL] =
    {
        .baseHP = 60,
        .baseAttack = 60,
        .baseDefense = 40,
        .baseSpeed = 35,
        .baseSpAttack = 65,
        .baseSpDefense = 45,
        .types = {TYPE_FIRE, TYPE_GROUND},
        .catchRate = 255,
        .expYield = 88,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_RAWST_BERRY,
        .itemRare = ITEM_RAWST_BERRY,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_OBLIVIOUS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_CAMERUPT] =
    {
        .baseHP = 70,
        .baseAttack = 100,
        .baseDefense = 70,
        .baseSpeed = 40,
        .baseSpAttack = 105,
        .baseSpDefense = 75,
        .types = {TYPE_FIRE, TYPE_GROUND},
        .catchRate = 150,
        .expYield = 175,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_RAWST_BERRY,
        .itemRare = ITEM_RAWST_BERRY,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_MAGMA_ARMOR, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_SPHEAL] =
    {
        .baseHP = 70,
        .baseAttack = 40,
        .baseDefense = 50,
        .baseSpeed = 25,
        .baseSpAttack = 55,
        .baseSpDefense = 50,
        .types = {TYPE_ICE, TYPE_WATER},
        .catchRate = 255,
        .expYield = 75,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_FIELD},
        .abilities = {ABILITY_THICK_FAT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_SEALEO] =
    {
        .baseHP = 90,
        .baseAttack = 60,
        .baseDefense = 70,
        .baseSpeed = 45,
        .baseSpAttack = 75,
        .baseSpDefense = 70,
        .types = {TYPE_ICE, TYPE_WATER},
        .catchRate = 120,
        .expYield = 128,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_FIELD},
        .abilities = {ABILITY_THICK_FAT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_WALREIN] =
    {
        .baseHP = 110,
        .baseAttack = 80,
        .baseDefense = 90,
        .baseSpeed = 65,
        .baseSpAttack = 95,
        .baseSpDefense = 90,
        .types = {TYPE_ICE, TYPE_WATER},
        .catchRate = 45,
        .expYield = 192,
        .evYield_HP = 3,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_FIELD},
        .abilities = {ABILITY_THICK_FAT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_CACNEA] =
    {
        .baseHP = 50,
        .baseAttack = 85,
        .baseDefense = 40,
        .baseSpeed = 35,
        .baseSpAttack = 85,
        .baseSpDefense = 40,
        .types = {TYPE_GRASS, TYPE_GRASS},
        .catchRate = 190,
        .expYield = 97,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_POISON_BARB,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 35,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_GRASS, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_SAND_VEIL, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_CACTURNE] =
    {
        .baseHP = 70,
        .baseAttack = 115,
        .baseDefense = 60,
        .baseSpeed = 55,
        .baseSpAttack = 115,
        .baseSpDefense = 60,
        .types = {TYPE_GRASS, TYPE_DARK},
        .catchRate = 60,
        .expYield = 177,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_POISON_BARB,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 35,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_GRASS, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_SAND_VEIL, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_SNORUNT] =
    {
        .baseHP = 50,
        .baseAttack = 50,
        .baseDefense = 50,
        .baseSpeed = 50,
        .baseSpAttack = 50,
        .baseSpDefense = 50,
        .types = {TYPE_ICE, TYPE_ICE},
        .catchRate = 190,
        .expYield = 74,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FAIRY, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_INNER_FOCUS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_GLALIE] =
    {
        .baseHP = 80,
        .baseAttack = 80,
        .baseDefense = 80,
        .baseSpeed = 80,
        .baseSpAttack = 80,
        .baseSpDefense = 80,
        .types = {TYPE_ICE, TYPE_ICE},
        .catchRate = 75,
        .expYield = 187,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NEVER_MELT_ICE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FAIRY, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_INNER_FOCUS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_LUNATONE] =
    {
        .baseHP = 70,
        .baseAttack = 55,
        .baseDefense = 65,
        .baseSpeed = 70,
        .baseSpAttack = 95,
        .baseSpDefense = 85,
        .types = {TYPE_ROCK, TYPE_PSYCHIC},
        .catchRate = 45,
        .expYield = 150,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 2,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_MOON_STONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_LEVITATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_SOLROCK] =
    {
        .baseHP = 70,
        .baseAttack = 95,
        .baseDefense = 85,
        .baseSpeed = 70,
        .baseSpAttack = 55,
        .baseSpDefense = 65,
        .types = {TYPE_ROCK, TYPE_PSYCHIC},
        .catchRate = 45,
        .expYield = 150,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_SUN_STONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_LEVITATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_AZURILL] =
    {
        .baseHP = 50,
        .baseAttack = 20,
        .baseDefense = 40,
        .baseSpeed = 20,
        .baseSpAttack = 20,
        .baseSpDefense = 40,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 150,
        .expYield = 33,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(75),
        .eggCycles = 10,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_THICK_FAT, ABILITY_HUGE_POWER},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_SPOINK] =
    {
        .baseHP = 60,
        .baseAttack = 25,
        .baseDefense = 35,
        .baseSpeed = 60,
        .baseSpAttack = 70,
        .baseSpDefense = 80,
        .types = {TYPE_PSYCHIC, TYPE_PSYCHIC},
        .catchRate = 255,
        .expYield = 89,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_THICK_FAT, ABILITY_OWN_TEMPO},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLACK,
        .noFlip = FALSE,
    },
    [SPECIES_GRUMPIG] =
    {
        .baseHP = 80,
        .baseAttack = 45,
        .baseDefense = 65,
        .baseSpeed = 80,
        .baseSpAttack = 90,
        .baseSpDefense = 110,
        .types = {TYPE_PSYCHIC, TYPE_PSYCHIC},
        .catchRate = 60,
        .expYield = 164,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 2,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_THICK_FAT, ABILITY_OWN_TEMPO},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_PLUSLE] =
    {
        .baseHP = 60,
        .baseAttack = 50,
        .baseDefense = 40,
        .baseSpeed = 95,
        .baseSpAttack = 85,
        .baseSpDefense = 75,
        .types = {TYPE_ELECTRIC, TYPE_ELECTRIC},
        .catchRate = 200,
        .expYield = 120,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FAIRY, EGG_GROUP_FAIRY},
        .abilities = {ABILITY_PLUS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_MINUN] =
    {
        .baseHP = 60,
        .baseAttack = 40,
        .baseDefense = 50,
        .baseSpeed = 95,
        .baseSpAttack = 75,
        .baseSpDefense = 85,
        .types = {TYPE_ELECTRIC, TYPE_ELECTRIC},
        .catchRate = 200,
        .expYield = 120,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FAIRY, EGG_GROUP_FAIRY},
        .abilities = {ABILITY_MINUS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_MAWILE] =
    {
        .baseHP = 50,
        .baseAttack = 85,
        .baseDefense = 85,
        .baseSpeed = 50,
        .baseSpAttack = 55,
        .baseSpDefense = 55,
        .types = {TYPE_STEEL, TYPE_STEEL},
        .catchRate = 45,
        .expYield = 98,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FAIRY},
        .abilities = {ABILITY_HYPER_CUTTER, ABILITY_INTIMIDATE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLACK,
        .noFlip = FALSE,
    },
    [SPECIES_MEDITITE] =
    {
        .baseHP = 30,
        .baseAttack = 40,
        .baseDefense = 55,
        .baseSpeed = 60,
        .baseSpAttack = 40,
        .baseSpDefense = 55,
        .types = {TYPE_FIGHTING, TYPE_PSYCHIC},
        .catchRate = 180,
        .expYield = 91,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_HUMAN_LIKE, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_PURE_POWER, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_MEDICHAM] =
    {
        .baseHP = 60,
        .baseAttack = 60,
        .baseDefense = 75,
        .baseSpeed = 80,
        .baseSpAttack = 60,
        .baseSpDefense = 75,
        .types = {TYPE_FIGHTING, TYPE_PSYCHIC},
        .catchRate = 90,
        .expYield = 153,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_HUMAN_LIKE, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_PURE_POWER, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_SWABLU] =
    {
        .baseHP = 45,
        .baseAttack = 40,
        .baseDefense = 60,
        .baseSpeed = 50,
        .baseSpAttack = 40,
        .baseSpDefense = 75,
        .types = {TYPE_NORMAL, TYPE_FLYING},
        .catchRate = 255,
        .expYield = 74,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_ERRATIC,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_NATURAL_CURE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_ALTARIA] =
    {
        .baseHP = 75,
        .baseAttack = 70,
        .baseDefense = 90,
        .baseSpeed = 80,
        .baseSpAttack = 70,
        .baseSpDefense = 105,
        .types = {TYPE_DRAGON, TYPE_FLYING},
        .catchRate = 45,
        .expYield = 188,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 2,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_ERRATIC,
        .eggGroups = {EGG_GROUP_FLYING, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_NATURAL_CURE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_WYNAUT] =
    {
        .baseHP = 95,
        .baseAttack = 23,
        .baseDefense = 48,
        .baseSpeed = 23,
        .baseSpAttack = 23,
        .baseSpDefense = 48,
        .types = {TYPE_PSYCHIC, TYPE_PSYCHIC},
        .catchRate = 125,
        .expYield = 44,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_SHADOW_TAG, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_DUSKULL] =
    {
        .baseHP = 20,
        .baseAttack = 40,
        .baseDefense = 90,
        .baseSpeed = 25,
        .baseSpAttack = 30,
        .baseSpDefense = 90,
        .types = {TYPE_GHOST, TYPE_GHOST},
        .catchRate = 190,
        .expYield = 97,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_SPELL_TAG,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 25,
        .friendship = 35,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_LEVITATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLACK,
        .noFlip = FALSE,
    },
    [SPECIES_DUSCLOPS] =
    {
        .baseHP = 40,
        .baseAttack = 70,
        .baseDefense = 130,
        .baseSpeed = 25,
        .baseSpAttack = 60,
        .baseSpDefense = 130,
        .types = {TYPE_GHOST, TYPE_GHOST},
        .catchRate = 90,
        .expYield = 179,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 2,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_SPELL_TAG,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 25,
        .friendship = 35,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_PRESSURE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLACK,
        .noFlip = FALSE,
    },
    [SPECIES_ROSELIA] =
    {
        .baseHP = 50,
        .baseAttack = 60,
        .baseDefense = 45,
        .baseSpeed = 65,
        .baseSpAttack = 100,
        .baseSpDefense = 80,
        .types = {TYPE_GRASS, TYPE_POISON},
        .catchRate = 150,
        .expYield = 152,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_POISON_BARB,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FAIRY, EGG_GROUP_GRASS},
        .abilities = {ABILITY_NATURAL_CURE, ABILITY_POISON_POINT},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = TRUE,
    },
    [SPECIES_SLAKOTH] =
    {
        .baseHP = 60,
        .baseAttack = 60,
        .baseDefense = 60,
        .baseSpeed = 30,
        .baseSpAttack = 35,
        .baseSpDefense = 35,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 255,
        .expYield = 83,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_TRUANT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_VIGOROTH] =
    {
        .baseHP = 80,
        .baseAttack = 80,
        .baseDefense = 80,
        .baseSpeed = 90,
        .baseSpAttack = 55,
        .baseSpDefense = 55,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 120,
        .expYield = 126,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 2,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_VITAL_SPIRIT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_WHITE,
        .noFlip = FALSE,
    },
    [SPECIES_SLAKING] =
    {
        .baseHP = 150,
        .baseAttack = 160,
        .baseDefense = 100,
        .baseSpeed = 100,
        .baseSpAttack = 95,
        .baseSpDefense = 65,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 45,
        .expYield = 210,
        .evYield_HP = 3,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_TRUANT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_GULPIN] =
    {
        .baseHP = 70,
        .baseAttack = 43,
        .baseDefense = 53,
        .baseSpeed = 40,
        .baseSpAttack = 43,
        .baseSpDefense = 53,
        .types = {TYPE_POISON, TYPE_POISON},
        .catchRate = 225,
        .expYield = 75,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_BIG_PEARL,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_FLUCTUATING,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_LIQUID_OOZE, ABILITY_STICKY_HOLD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_SWALOT] =
    {
        .baseHP = 100,
        .baseAttack = 73,
        .baseDefense = 83,
        .baseSpeed = 55,
        .baseSpAttack = 73,
        .baseSpDefense = 83,
        .types = {TYPE_POISON, TYPE_POISON},
        .catchRate = 75,
        .expYield = 168,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_BIG_PEARL,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_FLUCTUATING,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_LIQUID_OOZE, ABILITY_STICKY_HOLD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_TROPIUS] =
    {
        .baseHP = 99,
        .baseAttack = 68,
        .baseDefense = 83,
        .baseSpeed = 51,
        .baseSpAttack = 72,
        .baseSpDefense = 87,
        .types = {TYPE_GRASS, TYPE_FLYING},
        .catchRate = 200,
        .expYield = 169,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_GRASS},
        .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_WHISMUR] =
    {
        .baseHP = 64,
        .baseAttack = 51,
        .baseDefense = 23,
        .baseSpeed = 28,
        .baseSpAttack = 51,
        .baseSpDefense = 23,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 190,
        .expYield = 68,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_CHESTO_BERRY,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_FIELD},
        .abilities = {ABILITY_SOUNDPROOF, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_LOUDRED] =
    {
        .baseHP = 84,
        .baseAttack = 71,
        .baseDefense = 43,
        .baseSpeed = 48,
        .baseSpAttack = 71,
        .baseSpDefense = 43,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 120,
        .expYield = 126,
        .evYield_HP = 2,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_CHESTO_BERRY,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_FIELD},
        .abilities = {ABILITY_SOUNDPROOF, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_EXPLOUD] =
    {
        .baseHP = 104,
        .baseAttack = 91,
        .baseDefense = 63,
        .baseSpeed = 68,
        .baseSpAttack = 91,
        .baseSpDefense = 63,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 45,
        .expYield = 184,
        .evYield_HP = 3,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_CHESTO_BERRY,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_FIELD},
        .abilities = {ABILITY_SOUNDPROOF, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_CLAMPERL] =
    {
        .baseHP = 35,
        .baseAttack = 64,
        .baseDefense = 85,
        .baseSpeed = 32,
        .baseSpAttack = 74,
        .baseSpDefense = 55,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 255,
        .expYield = 142,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_BLUE_SHARD,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_ERRATIC,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_SHELL_ARMOR, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_HUNTAIL] =
    {
        .baseHP = 55,
        .baseAttack = 104,
        .baseDefense = 105,
        .baseSpeed = 52,
        .baseSpAttack = 94,
        .baseSpDefense = 75,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 60,
        .expYield = 178,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_ERRATIC,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_SWIFT_SWIM, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_GOREBYSS] =
    {
        .baseHP = 55,
        .baseAttack = 84,
        .baseDefense = 105,
        .baseSpeed = 52,
        .baseSpAttack = 114,
        .baseSpDefense = 75,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 60,
        .expYield = 178,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 2,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_ERRATIC,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_WATER_1},
        .abilities = {ABILITY_SWIFT_SWIM, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PINK,
        .noFlip = FALSE,
    },
    [SPECIES_ABSOL] =
    {
        .baseHP = 65,
        .baseAttack = 130,
        .baseDefense = 60,
        .baseSpeed = 75,
        .baseSpAttack = 75,
        .baseSpDefense = 60,
        .types = {TYPE_DARK, TYPE_DARK},
        .catchRate = 30,
        .expYield = 174,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 25,
        .friendship = 35,
        .growthRate = GROWTH_MEDIUM_SLOW,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_PRESSURE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_WHITE,
        .noFlip = TRUE,
    },
    [SPECIES_SHUPPET] =
    {
        .baseHP = 44,
        .baseAttack = 75,
        .baseDefense = 35,
        .baseSpeed = 45,
        .baseSpAttack = 63,
        .baseSpDefense = 33,
        .types = {TYPE_GHOST, TYPE_GHOST},
        .catchRate = 225,
        .expYield = 97,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_SPELL_TAG,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 25,
        .friendship = 35,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_INSOMNIA, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLACK,
        .noFlip = FALSE,
    },
    [SPECIES_BANETTE] =
    {
        .baseHP = 64,
        .baseAttack = 115,
        .baseDefense = 65,
        .baseSpeed = 65,
        .baseSpAttack = 83,
        .baseSpDefense = 63,
        .types = {TYPE_GHOST, TYPE_GHOST},
        .catchRate = 45,
        .expYield = 179,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_SPELL_TAG,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 25,
        .friendship = 35,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_INSOMNIA, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLACK,
        .noFlip = FALSE,
    },
    [SPECIES_SEVIPER] =
    {
        .baseHP = 73,
        .baseAttack = 100,
        .baseDefense = 60,
        .baseSpeed = 65,
        .baseSpAttack = 100,
        .baseSpDefense = 60,
        .types = {TYPE_POISON, TYPE_POISON},
        .catchRate = 90,
        .expYield = 165,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_FLUCTUATING,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLACK,
        .noFlip = TRUE,
    },
    [SPECIES_ZANGOOSE] =
    {
        .baseHP = 73,
        .baseAttack = 115,
        .baseDefense = 60,
        .baseSpeed = 90,
        .baseSpAttack = 60,
        .baseSpDefense = 60,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 90,
        .expYield = 165,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 70,
        .growthRate = GROWTH_ERRATIC,
        .eggGroups = {EGG_GROUP_FIELD, EGG_GROUP_FIELD},
        .abilities = {ABILITY_IMMUNITY, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_WHITE,
        .noFlip = TRUE,
    },
    [SPECIES_RELICANTH] =
    {
        .baseHP = 100,
        .baseAttack = 90,
        .baseDefense = 130,
        .baseSpeed = 55,
        .baseSpAttack = 45,
        .baseSpDefense = 65,
        .types = {TYPE_WATER, TYPE_ROCK},
        .catchRate = 25,
        .expYield = 198,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_GREEN_SHARD,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 40,
        .friendship = 70,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_WATER_1, EGG_GROUP_WATER_2},
        .abilities = {ABILITY_SWIFT_SWIM, ABILITY_ROCK_HEAD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_ARON] =
    {
        .baseHP = 50,
        .baseAttack = 70,
        .baseDefense = 100,
        .baseSpeed = 30,
        .baseSpAttack = 40,
        .baseSpDefense = 40,
        .types = {TYPE_STEEL, TYPE_ROCK},
        .catchRate = 180,
        .expYield = 96,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_HARD_STONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 35,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_MONSTER},
        .abilities = {ABILITY_STURDY, ABILITY_ROCK_HEAD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_LAIRON] =
    {
        .baseHP = 60,
        .baseAttack = 90,
        .baseDefense = 140,
        .baseSpeed = 40,
        .baseSpAttack = 50,
        .baseSpDefense = 50,
        .types = {TYPE_STEEL, TYPE_ROCK},
        .catchRate = 90,
        .expYield = 152,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_HARD_STONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 35,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_MONSTER},
        .abilities = {ABILITY_STURDY, ABILITY_ROCK_HEAD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_AGGRON] =
    {
        .baseHP = 70,
        .baseAttack = 110,
        .baseDefense = 180,
        .baseSpeed = 50,
        .baseSpAttack = 60,
        .baseSpDefense = 60,
        .types = {TYPE_STEEL, TYPE_ROCK},
        .catchRate = 45,
        .expYield = 205,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 3,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_HARD_STONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 35,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_MONSTER, EGG_GROUP_MONSTER},
        .abilities = {ABILITY_STURDY, ABILITY_ROCK_HEAD},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_CASTFORM] =
    {
        .baseHP = 70,
        .baseAttack = 70,
        .baseDefense = 70,
        .baseSpeed = 70,
        .baseSpAttack = 70,
        .baseSpDefense = 70,
        .types = {TYPE_NORMAL, TYPE_NORMAL},
        .catchRate = 45,
        .expYield = 145,
        .evYield_HP = 1,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_MYSTIC_WATER,
        .itemRare = ITEM_MYSTIC_WATER,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_MEDIUM_FAST,
        .eggGroups = {EGG_GROUP_FAIRY, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_FORECAST, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_WHITE,
        .noFlip = FALSE,
    },
    [SPECIES_VOLBEAT] =
    {
        .baseHP = 65,
        .baseAttack = 73,
        .baseDefense = 55,
        .baseSpeed = 85,
        .baseSpAttack = 47,
        .baseSpDefense = 75,
        .types = {TYPE_BUG, TYPE_BUG},
        .catchRate = 150,
        .expYield = 146,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_MALE,
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_ERRATIC,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_ILLUMINATE, ABILITY_SWARM},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_ILLUMISE] =
    {
        .baseHP = 65,
        .baseAttack = 47,
        .baseDefense = 55,
        .baseSpeed = 85,
        .baseSpAttack = 73,
        .baseSpDefense = 75,
        .types = {TYPE_BUG, TYPE_BUG},
        .catchRate = 150,
        .expYield = 146,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_FEMALE,
        .eggCycles = 15,
        .friendship = 70,
        .growthRate = GROWTH_FLUCTUATING,
        .eggGroups = {EGG_GROUP_BUG, EGG_GROUP_HUMAN_LIKE},
        .abilities = {ABILITY_OBLIVIOUS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_LILEEP] =
    {
        .baseHP = 66,
        .baseAttack = 41,
        .baseDefense = 77,
        .baseSpeed = 23,
        .baseSpAttack = 61,
        .baseSpDefense = 87,
        .types = {TYPE_ROCK, TYPE_GRASS},
        .catchRate = 45,
        .expYield = 121,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 30,
        .friendship = 70,
        .growthRate = GROWTH_ERRATIC,
        .eggGroups = {EGG_GROUP_WATER_3, EGG_GROUP_WATER_3},
        .abilities = {ABILITY_SUCTION_CUPS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_PURPLE,
        .noFlip = FALSE,
    },
    [SPECIES_CRADILY] =
    {
        .baseHP = 86,
        .baseAttack = 81,
        .baseDefense = 97,
        .baseSpeed = 43,
        .baseSpAttack = 81,
        .baseSpDefense = 107,
        .types = {TYPE_ROCK, TYPE_GRASS},
        .catchRate = 45,
        .expYield = 201,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 2,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 30,
        .friendship = 70,
        .growthRate = GROWTH_ERRATIC,
        .eggGroups = {EGG_GROUP_WATER_3, EGG_GROUP_WATER_3},
        .abilities = {ABILITY_SUCTION_CUPS, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_ANORITH] =
    {
        .baseHP = 45,
        .baseAttack = 95,
        .baseDefense = 50,
        .baseSpeed = 75,
        .baseSpAttack = 40,
        .baseSpDefense = 50,
        .types = {TYPE_ROCK, TYPE_BUG},
        .catchRate = 45,
        .expYield = 119,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 30,
        .friendship = 70,
        .growthRate = GROWTH_ERRATIC,
        .eggGroups = {EGG_GROUP_WATER_3, EGG_GROUP_WATER_3},
        .abilities = {ABILITY_BATTLE_ARMOR, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_ARMALDO] =
    {
        .baseHP = 75,
        .baseAttack = 125,
        .baseDefense = 100,
        .baseSpeed = 45,
        .baseSpAttack = 70,
        .baseSpDefense = 80,
        .types = {TYPE_ROCK, TYPE_BUG},
        .catchRate = 45,
        .expYield = 200,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(12.5),
        .eggCycles = 30,
        .friendship = 70,
        .growthRate = GROWTH_ERRATIC,
        .eggGroups = {EGG_GROUP_WATER_3, EGG_GROUP_WATER_3},
        .abilities = {ABILITY_BATTLE_ARMOR, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_RALTS] =
    {
        .baseHP = 28,
        .baseAttack = 25,
        .baseDefense = 25,
        .baseSpeed = 40,
        .baseSpAttack = 45,
        .baseSpDefense = 35,
        .types = {TYPE_PSYCHIC, TYPE_PSYCHIC},
        .catchRate = 235,
        .expYield = 70,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_SYNCHRONIZE, ABILITY_TRACE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_WHITE,
        .noFlip = FALSE,
    },
    [SPECIES_KIRLIA] =
    {
        .baseHP = 38,
        .baseAttack = 35,
        .baseDefense = 35,
        .baseSpeed = 50,
        .baseSpAttack = 65,
        .baseSpDefense = 55,
        .types = {TYPE_PSYCHIC, TYPE_PSYCHIC},
        .catchRate = 120,
        .expYield = 140,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 2,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_SYNCHRONIZE, ABILITY_TRACE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_WHITE,
        .noFlip = FALSE,
    },
    [SPECIES_GARDEVOIR] =
    {
        .baseHP = 68,
        .baseAttack = 65,
        .baseDefense = 65,
        .baseSpeed = 80,
        .baseSpAttack = 125,
        .baseSpDefense = 115,
        .types = {TYPE_PSYCHIC, TYPE_PSYCHIC},
        .catchRate = 45,
        .expYield = 208,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 3,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 20,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_SYNCHRONIZE, ABILITY_TRACE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_WHITE,
        .noFlip = FALSE,
    },
    [SPECIES_BAGON] =
    {
        .baseHP = 45,
        .baseAttack = 75,
        .baseDefense = 60,
        .baseSpeed = 50,
        .baseSpAttack = 40,
        .baseSpDefense = 30,
        .types = {TYPE_DRAGON, TYPE_DRAGON},
        .catchRate = 45,
        .expYield = 89,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_DRAGON_SCALE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 40,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_DRAGON, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_ROCK_HEAD, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_SHELGON] =
    {
        .baseHP = 65,
        .baseAttack = 95,
        .baseDefense = 100,
        .baseSpeed = 50,
        .baseSpAttack = 60,
        .baseSpDefense = 50,
        .types = {TYPE_DRAGON, TYPE_DRAGON},
        .catchRate = 45,
        .expYield = 144,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_DRAGON_SCALE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 40,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_DRAGON, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_ROCK_HEAD, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_WHITE,
        .noFlip = FALSE,
    },
    [SPECIES_SALAMENCE] =
    {
        .baseHP = 95,
        .baseAttack = 135,
        .baseDefense = 80,
        .baseSpeed = 100,
        .baseSpAttack = 110,
        .baseSpDefense = 80,
        .types = {TYPE_DRAGON, TYPE_FLYING},
        .catchRate = 45,
        .expYield = 218,
        .evYield_HP = 0,
        .evYield_Attack = 3,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_DRAGON_SCALE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 40,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_DRAGON, EGG_GROUP_DRAGON},
        .abilities = {ABILITY_INTIMIDATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_BELDUM] =
    {
        .baseHP = 40,
        .baseAttack = 55,
        .baseDefense = 80,
        .baseSpeed = 30,
        .baseSpAttack = 35,
        .baseSpDefense = 60,
        .types = {TYPE_STEEL, TYPE_PSYCHIC},
        .catchRate = 3,
        .expYield = 103,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 1,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_METAL_COAT,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 40,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_CLEAR_BODY, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_METANG] =
    {
        .baseHP = 60,
        .baseAttack = 75,
        .baseDefense = 100,
        .baseSpeed = 50,
        .baseSpAttack = 55,
        .baseSpDefense = 80,
        .types = {TYPE_STEEL, TYPE_PSYCHIC},
        .catchRate = 3,
        .expYield = 153,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_METAL_COAT,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 40,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_CLEAR_BODY, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_METAGROSS] =
    {
        .baseHP = 80,
        .baseAttack = 135,
        .baseDefense = 130,
        .baseSpeed = 70,
        .baseSpAttack = 95,
        .baseSpDefense = 90,
        .types = {TYPE_STEEL, TYPE_PSYCHIC},
        .catchRate = 3,
        .expYield = 210,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 3,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_METAL_COAT,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 40,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_MINERAL, EGG_GROUP_MINERAL},
        .abilities = {ABILITY_CLEAR_BODY, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_REGIROCK] =
    {
        .baseHP = 80,
        .baseAttack = 100,
        .baseDefense = 200,
        .baseSpeed = 50,
        .baseSpAttack = 50,
        .baseSpDefense = 100,
        .types = {TYPE_ROCK, TYPE_ROCK},
        .catchRate = 3,
        .expYield = 217,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 3,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 80,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_CLEAR_BODY, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BROWN,
        .noFlip = FALSE,
    },
    [SPECIES_REGICE] =
    {
        .baseHP = 80,
        .baseAttack = 50,
        .baseDefense = 100,
        .baseSpeed = 50,
        .baseSpAttack = 100,
        .baseSpDefense = 200,
        .types = {TYPE_ICE, TYPE_ICE},
        .catchRate = 3,
        .expYield = 216,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 3,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 80,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_CLEAR_BODY, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_REGISTEEL] =
    {
        .baseHP = 80,
        .baseAttack = 75,
        .baseDefense = 150,
        .baseSpeed = 50,
        .baseSpAttack = 75,
        .baseSpDefense = 150,
        .types = {TYPE_STEEL, TYPE_STEEL},
        .catchRate = 3,
        .expYield = 215,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 2,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 80,
        .friendship = 35,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_CLEAR_BODY, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GRAY,
        .noFlip = FALSE,
    },
    [SPECIES_KYOGRE] =
    {
        .baseHP = 100,
        .baseAttack = 100,
        .baseDefense = 90,
        .baseSpeed = 90,
        .baseSpAttack = 150,
        .baseSpDefense = 140,
        .types = {TYPE_WATER, TYPE_WATER},
        .catchRate = 5,
        .expYield = 218,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 3,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 120,
        .friendship = 0,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_DRIZZLE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_GROUDON] =
    {
        .baseHP = 100,
        .baseAttack = 150,
        .baseDefense = 140,
        .baseSpeed = 90,
        .baseSpAttack = 100,
        .baseSpDefense = 90,
        .types = {TYPE_GROUND, TYPE_GROUND},
        .catchRate = 5,
        .expYield = 218,
        .evYield_HP = 0,
        .evYield_Attack = 3,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 120,
        .friendship = 0,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_DROUGHT, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_RAYQUAZA] =
    {
        .baseHP = 105,
        .baseAttack = 150,
        .baseDefense = 90,
        .baseSpeed = 95,
        .baseSpAttack = 150,
        .baseSpDefense = 90,
        .types = {TYPE_DRAGON, TYPE_FLYING},
        .catchRate = 3,
        .expYield = 220,
        .evYield_HP = 0,
        .evYield_Attack = 2,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 120,
        .friendship = 0,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_AIR_LOCK, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_GREEN,
        .noFlip = FALSE,
    },
    [SPECIES_LATIAS] =
    {
        .baseHP = 80,
        .baseAttack = 80,
        .baseDefense = 90,
        .baseSpeed = 110,
        .baseSpAttack = 110,
        .baseSpDefense = 130,
        .types = {TYPE_DRAGON, TYPE_PSYCHIC},
        .catchRate = 3,
        .expYield = 211,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 3,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_FEMALE,
        .eggCycles = 120,
        .friendship = 90,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_LEVITATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = FALSE,
    },
    [SPECIES_LATIOS] =
    {
        .baseHP = 80,
        .baseAttack = 90,
        .baseDefense = 80,
        .baseSpeed = 110,
        .baseSpAttack = 130,
        .baseSpDefense = 110,
        .types = {TYPE_DRAGON, TYPE_PSYCHIC},
        .catchRate = 3,
        .expYield = 211,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 3,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_MALE,
        .eggCycles = 120,
        .friendship = 90,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_LEVITATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
    [SPECIES_JIRACHI] =
    {
        .baseHP = 100,
        .baseAttack = 100,
        .baseDefense = 100,
        .baseSpeed = 100,
        .baseSpAttack = 100,
        .baseSpDefense = 100,
        .types = {TYPE_STEEL, TYPE_PSYCHIC},
        .catchRate = 3,
        .expYield = 215,
        .evYield_HP = 3,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 0,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_STAR_PIECE,
        .itemRare = ITEM_STAR_PIECE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 120,
        .friendship = 100,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_SERENE_GRACE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_YELLOW,
        .noFlip = FALSE,
    },
    [SPECIES_DEOXYS] =
    {
        .baseHP = 50,
        .baseAttack = 150,
        .baseDefense = 50,
        .baseSpeed = 150,
        .baseSpAttack = 150,
        .baseSpDefense = 50,
        .types = {TYPE_PSYCHIC, TYPE_PSYCHIC},
        .catchRate = 3,
        .expYield = 215,
        .evYield_HP = 0,
        .evYield_Attack = 1,
        .evYield_Defense = 0,
        .evYield_Speed = 1,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 0,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = MON_GENDERLESS,
        .eggCycles = 120,
        .friendship = 0,
        .growthRate = GROWTH_SLOW,
        .eggGroups = {EGG_GROUP_UNDISCOVERED, EGG_GROUP_UNDISCOVERED},
        .abilities = {ABILITY_PRESSURE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_RED,
        .noFlip = TRUE,
    },
    [SPECIES_CHIMECHO] =
    {
        .baseHP = 65,
        .baseAttack = 50,
        .baseDefense = 70,
        .baseSpeed = 65,
        .baseSpAttack = 95,
        .baseSpDefense = 80,
        .types = {TYPE_PSYCHIC, TYPE_PSYCHIC},
        .catchRate = 45,
        .expYield = 147,
        .evYield_HP = 0,
        .evYield_Attack = 0,
        .evYield_Defense = 0,
        .evYield_Speed = 0,
        .evYield_SpAttack = 1,
        .evYield_SpDefense = 1,
        .itemCommon = ITEM_NONE,
        .itemRare = ITEM_NONE,
        .genderRatio = PERCENT_FEMALE(50),
        .eggCycles = 25,
        .friendship = 70,
        .growthRate = GROWTH_FAST,
        .eggGroups = {EGG_GROUP_AMORPHOUS, EGG_GROUP_AMORPHOUS},
        .abilities = {ABILITY_LEVITATE, ABILITY_NONE},
        .safariZoneFleeRate = 0,
        .bodyColor = BODY_COLOR_BLUE,
        .noFlip = FALSE,
    },
};
