From a387121e4a31795a98ab9195bb620a8764812020 Mon Sep 17 00:00:00 2001 From: LOuroboros Date: Wed, 15 Apr 2020 14:38:19 -0300 Subject: [PATCH] Restored the .noFlip parameter to src/data/pokemon/base_stats.h (#325) * Restored the .noFlip parameter of src/data/pokemon/base_stats.h * A few noFlip tweaks --- src/data/pokemon/base_stats.h | 900 ++++++++++++++++++++++++++++++++++ 1 file changed, 900 insertions(+) diff --git a/src/data/pokemon/base_stats.h b/src/data/pokemon/base_stats.h index b1b32a025f..e9e46bc6b4 100644 --- a/src/data/pokemon/base_stats.h +++ b/src/data/pokemon/base_stats.h @@ -28,6 +28,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_CHLOROPHYLL, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_IVYSAUR] = @@ -53,6 +54,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_CHLOROPHYLL, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_VENUSAUR] = @@ -78,6 +80,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_CHLOROPHYLL, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_CHARMANDER] = @@ -103,6 +106,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_SOLAR_POWER, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_CHARMELEON] = @@ -128,6 +132,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_SOLAR_POWER, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_CHARIZARD] = @@ -152,6 +157,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_SOLAR_POWER, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_SQUIRTLE] = @@ -177,6 +183,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_RAIN_DISH, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_WARTORTLE] = @@ -203,6 +210,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_RAIN_DISH, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_BLASTOISE] = @@ -228,6 +236,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_RAIN_DISH, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_CATERPIE] = @@ -253,6 +262,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHIELD_DUST, ABILITY_NONE}, .abilityHidden = ABILITY_RUN_AWAY, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_METAPOD] = @@ -277,6 +287,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_BUG, .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE}, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_BUTTERFREE] = @@ -303,6 +314,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_COMPOUND_EYES, ABILITY_NONE}, .abilityHidden = ABILITY_TINTED_LENS, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_WEEDLE] = @@ -328,6 +340,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHIELD_DUST, ABILITY_NONE}, .abilityHidden = ABILITY_RUN_AWAY, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_KAKUNA] = @@ -352,6 +365,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_BUG, .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE}, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_BEEDRILL] = @@ -379,6 +393,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWARM, ABILITY_NONE}, .abilityHidden = ABILITY_SNIPER, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_PIDGEY] = @@ -404,6 +419,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_TANGLED_FEET}, .abilityHidden = ABILITY_BIG_PECKS, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_PIDGEOTTO] = @@ -429,6 +445,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_TANGLED_FEET}, .abilityHidden = ABILITY_BIG_PECKS, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_PIDGEOT] = @@ -454,6 +471,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_TANGLED_FEET}, .abilityHidden = ABILITY_BIG_PECKS, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_RATTATA] = @@ -479,6 +497,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RUN_AWAY, ABILITY_GUTS}, .abilityHidden = ABILITY_HUSTLE, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_RATICATE] = @@ -504,6 +523,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RUN_AWAY, ABILITY_GUTS}, .abilityHidden = ABILITY_HUSTLE, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_SPEAROW] = @@ -530,6 +550,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_NONE}, .abilityHidden = ABILITY_SNIPER, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_FEAROW] = @@ -556,6 +577,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_NONE}, .abilityHidden = ABILITY_SNIPER, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_EKANS] = @@ -581,6 +603,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INTIMIDATE, ABILITY_SHED_SKIN}, .abilityHidden = ABILITY_UNNERVE, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_ARBOK] = @@ -606,6 +629,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INTIMIDATE, ABILITY_SHED_SKIN}, .abilityHidden = ABILITY_UNNERVE, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_PIKACHU] = @@ -632,6 +656,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STATIC, ABILITY_NONE}, .abilityHidden = ABILITY_LIGHTNING_ROD, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_RAICHU] = @@ -657,6 +682,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STATIC, ABILITY_NONE}, .abilityHidden = ABILITY_LIGHTNING_ROD, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_SANDSHREW] = @@ -683,6 +709,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAND_VEIL, ABILITY_NONE}, .abilityHidden = ABILITY_SAND_RUSH, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_SANDSLASH] = @@ -709,6 +736,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAND_VEIL, ABILITY_NONE}, .abilityHidden = ABILITY_SAND_RUSH, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_NIDORAN_F] = @@ -734,6 +762,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_POISON_POINT, ABILITY_RIVALRY}, .abilityHidden = ABILITY_HUSTLE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_NIDORINA] = @@ -759,6 +788,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_POISON_POINT, ABILITY_RIVALRY}, .abilityHidden = ABILITY_HUSTLE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_NIDOQUEEN] = @@ -784,6 +814,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_POISON_POINT, ABILITY_RIVALRY}, .abilityHidden = ABILITY_SHEER_FORCE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_NIDORAN_M] = @@ -809,6 +840,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_POISON_POINT, ABILITY_RIVALRY}, .abilityHidden = ABILITY_HUSTLE, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_NIDORINO] = @@ -834,6 +866,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_POISON_POINT, ABILITY_RIVALRY}, .abilityHidden = ABILITY_HUSTLE, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_NIDOKING] = @@ -859,6 +892,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_POISON_POINT, ABILITY_RIVALRY}, .abilityHidden = ABILITY_SHEER_FORCE, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_CLEFAIRY] = @@ -885,6 +919,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CUTE_CHARM, ABILITY_MAGIC_GUARD}, .abilityHidden = ABILITY_FRIEND_GUARD, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_CLEFABLE] = @@ -911,6 +946,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CUTE_CHARM, ABILITY_MAGIC_GUARD}, .abilityHidden = ABILITY_UNAWARE, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_VULPIX] = @@ -937,6 +973,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FLASH_FIRE, ABILITY_NONE}, .abilityHidden = ABILITY_DROUGHT, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_NINETALES] = @@ -964,6 +1001,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FLASH_FIRE, ABILITY_NONE}, .abilityHidden = ABILITY_DROUGHT, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_JIGGLYPUFF] = @@ -990,6 +1028,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CUTE_CHARM, ABILITY_COMPETITIVE}, .abilityHidden = ABILITY_FRIEND_GUARD, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_WIGGLYTUFF] = @@ -1016,6 +1055,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CUTE_CHARM, ABILITY_COMPETITIVE}, .abilityHidden = ABILITY_FRISK, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_ZUBAT] = @@ -1041,6 +1081,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INNER_FOCUS, ABILITY_NONE}, .abilityHidden = ABILITY_INFILTRATOR, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_GOLBAT] = @@ -1066,6 +1107,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INNER_FOCUS, ABILITY_NONE}, .abilityHidden = ABILITY_INFILTRATOR, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_ODDISH] = @@ -1091,6 +1133,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE}, .abilityHidden = ABILITY_RUN_AWAY, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_GLOOM] = @@ -1116,6 +1159,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE}, .abilityHidden = ABILITY_STENCH, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_VILEPLUME] = @@ -1141,6 +1185,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE}, .abilityHidden = ABILITY_EFFECT_SPORE, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_PARAS] = @@ -1168,6 +1213,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_EFFECT_SPORE, ABILITY_DRY_SKIN}, .abilityHidden = ABILITY_DAMP, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_PARASECT] = @@ -1196,6 +1242,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_EFFECT_SPORE, ABILITY_DRY_SKIN}, .abilityHidden = ABILITY_DAMP, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_VENONAT] = @@ -1221,6 +1268,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_COMPOUND_EYES, ABILITY_TINTED_LENS}, .abilityHidden = ABILITY_RUN_AWAY, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_VENOMOTH] = @@ -1247,6 +1295,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHIELD_DUST, ABILITY_TINTED_LENS}, .abilityHidden = ABILITY_WONDER_SKIN, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_DIGLETT] = @@ -1273,6 +1322,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAND_VEIL, ABILITY_ARENA_TRAP}, .abilityHidden = ABILITY_SAND_FORCE, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_DUGTRIO] = @@ -1299,6 +1349,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAND_VEIL, ABILITY_ARENA_TRAP}, .abilityHidden = ABILITY_SAND_FORCE, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_MEOWTH] = @@ -1325,6 +1376,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PICKUP, ABILITY_TECHNICIAN}, .abilityHidden = ABILITY_UNNERVE, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_PERSIAN] = @@ -1351,6 +1403,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LIMBER, ABILITY_TECHNICIAN}, .abilityHidden = ABILITY_UNNERVE, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_PSYDUCK] = @@ -1375,6 +1428,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_DAMP, ABILITY_CLOUD_NINE}, .abilityHidden = ABILITY_SWIFT_SWIM, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_GOLDUCK] = @@ -1399,6 +1453,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_DAMP, ABILITY_CLOUD_NINE}, .abilityHidden = ABILITY_SWIFT_SWIM, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MANKEY] = @@ -1424,6 +1479,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_VITAL_SPIRIT, ABILITY_ANGER_POINT}, .abilityHidden = ABILITY_DEFIANT, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_PRIMEAPE] = @@ -1449,6 +1505,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_VITAL_SPIRIT, ABILITY_ANGER_POINT}, .abilityHidden = ABILITY_DEFIANT, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_GROWLITHE] = @@ -1474,6 +1531,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INTIMIDATE, ABILITY_FLASH_FIRE}, .abilityHidden = ABILITY_JUSTIFIED, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_ARCANINE] = @@ -1499,6 +1557,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INTIMIDATE, ABILITY_FLASH_FIRE}, .abilityHidden = ABILITY_JUSTIFIED, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_POLIWAG] = @@ -1524,6 +1583,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_WATER_ABSORB, ABILITY_DAMP}, .abilityHidden = ABILITY_SWIFT_SWIM, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_POLIWHIRL] = @@ -1550,6 +1610,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_WATER_ABSORB, ABILITY_DAMP}, .abilityHidden = ABILITY_SWIFT_SWIM, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_POLIWRATH] = @@ -1576,6 +1637,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_WATER_ABSORB, ABILITY_DAMP}, .abilityHidden = ABILITY_SWIFT_SWIM, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_ABRA] = @@ -1601,6 +1663,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SYNCHRONIZE, ABILITY_INNER_FOCUS}, .abilityHidden = ABILITY_MAGIC_GUARD, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_KADABRA] = @@ -1626,6 +1689,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SYNCHRONIZE, ABILITY_INNER_FOCUS}, .abilityHidden = ABILITY_MAGIC_GUARD, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_ALAKAZAM] = @@ -1651,6 +1715,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SYNCHRONIZE, ABILITY_INNER_FOCUS}, .abilityHidden = ABILITY_MAGIC_GUARD, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_MACHOP] = @@ -1677,6 +1742,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GUTS, ABILITY_NO_GUARD}, .abilityHidden = ABILITY_STEADFAST, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_MACHOKE] = @@ -1703,6 +1769,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GUTS, ABILITY_NO_GUARD}, .abilityHidden = ABILITY_STEADFAST, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_MACHAMP] = @@ -1729,6 +1796,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GUTS, ABILITY_NO_GUARD}, .abilityHidden = ABILITY_STEADFAST, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_BELLSPROUT] = @@ -1754,6 +1822,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE}, .abilityHidden = ABILITY_GLUTTONY, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_WEEPINBELL] = @@ -1779,6 +1848,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE}, .abilityHidden = ABILITY_GLUTTONY, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_VICTREEBEL] = @@ -1804,6 +1874,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE}, .abilityHidden = ABILITY_GLUTTONY, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_TENTACOOL] = @@ -1830,6 +1901,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CLEAR_BODY, ABILITY_LIQUID_OOZE}, .abilityHidden = ABILITY_RAIN_DISH, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_TENTACRUEL] = @@ -1856,6 +1928,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CLEAR_BODY, ABILITY_LIQUID_OOZE}, .abilityHidden = ABILITY_RAIN_DISH, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_GEODUDE] = @@ -1882,6 +1955,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ROCK_HEAD, ABILITY_STURDY}, .abilityHidden = ABILITY_SAND_VEIL, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_GRAVELER] = @@ -1908,6 +1982,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ROCK_HEAD, ABILITY_STURDY}, .abilityHidden = ABILITY_SAND_VEIL, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_GOLEM] = @@ -1934,6 +2009,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ROCK_HEAD, ABILITY_STURDY}, .abilityHidden = ABILITY_SAND_VEIL, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_PONYTA] = @@ -1959,6 +2035,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RUN_AWAY, ABILITY_FLASH_FIRE}, .abilityHidden = ABILITY_FLAME_BODY, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_RAPIDASH] = @@ -1984,6 +2061,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RUN_AWAY, ABILITY_FLASH_FIRE}, .abilityHidden = ABILITY_FLAME_BODY, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_SLOWPOKE] = @@ -2010,6 +2088,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OBLIVIOUS, ABILITY_OWN_TEMPO}, .abilityHidden = ABILITY_REGENERATOR, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_SLOWBRO] = @@ -2036,6 +2115,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OBLIVIOUS, ABILITY_OWN_TEMPO}, .abilityHidden = ABILITY_REGENERATOR, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_MAGNEMITE] = @@ -2061,6 +2141,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_MAGNET_PULL, ABILITY_STURDY}, .abilityHidden = ABILITY_ANALYTIC, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_MAGNETON] = @@ -2086,6 +2167,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_MAGNET_PULL, ABILITY_STURDY}, .abilityHidden = ABILITY_ANALYTIC, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_FARFETCHD] = @@ -2112,6 +2194,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_INNER_FOCUS}, .abilityHidden = ABILITY_DEFIANT, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_DODUO] = @@ -2138,6 +2221,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RUN_AWAY, ABILITY_EARLY_BIRD}, .abilityHidden = ABILITY_TANGLED_FEET, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_DODRIO] = @@ -2164,6 +2248,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RUN_AWAY, ABILITY_EARLY_BIRD}, .abilityHidden = ABILITY_TANGLED_FEET, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_SEEL] = @@ -2189,6 +2274,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_THICK_FAT, ABILITY_HYDRATION}, .abilityHidden = ABILITY_ICE_BODY, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_DEWGONG] = @@ -2214,6 +2300,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_THICK_FAT, ABILITY_HYDRATION}, .abilityHidden = ABILITY_ICE_BODY, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_GRIMER] = @@ -2240,6 +2327,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STENCH, ABILITY_STICKY_HOLD}, .abilityHidden = ABILITY_POISON_TOUCH, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_MUK] = @@ -2267,6 +2355,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STENCH, ABILITY_STICKY_HOLD}, .abilityHidden = ABILITY_POISON_TOUCH, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_SHELLDER] = @@ -2294,6 +2383,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHELL_ARMOR, ABILITY_SKILL_LINK}, .abilityHidden = ABILITY_OVERCOAT, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_CLOYSTER] = @@ -2321,6 +2411,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHELL_ARMOR, ABILITY_SKILL_LINK}, .abilityHidden = ABILITY_OVERCOAT, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_GASTLY] = @@ -2344,6 +2435,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_HAUNTER] = @@ -2367,6 +2459,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_GENGAR] = @@ -2390,6 +2483,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_CURSED_BODY, ABILITY_NONE}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_ONIX] = @@ -2415,6 +2509,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ROCK_HEAD, ABILITY_STURDY}, .abilityHidden = ABILITY_WEAK_ARMOR, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_DROWZEE] = @@ -2440,6 +2535,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INSOMNIA, ABILITY_FOREWARN}, .abilityHidden = ABILITY_INNER_FOCUS, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_HYPNO] = @@ -2465,6 +2561,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INSOMNIA, ABILITY_FOREWARN}, .abilityHidden = ABILITY_INNER_FOCUS, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_KRABBY] = @@ -2490,6 +2587,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HYPER_CUTTER, ABILITY_SHELL_ARMOR}, .abilityHidden = ABILITY_SHEER_FORCE, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_KINGLER] = @@ -2515,6 +2613,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HYPER_CUTTER, ABILITY_SHELL_ARMOR}, .abilityHidden = ABILITY_SHEER_FORCE, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_VOLTORB] = @@ -2540,6 +2639,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SOUNDPROOF, ABILITY_STATIC}, .abilityHidden = ABILITY_AFTERMATH, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_ELECTRODE] = @@ -2565,6 +2665,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SOUNDPROOF, ABILITY_STATIC}, .abilityHidden = ABILITY_AFTERMATH, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_EXEGGCUTE] = @@ -2591,6 +2692,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE}, .abilityHidden = ABILITY_HARVEST, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_EXEGGUTOR] = @@ -2615,6 +2717,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE}, .abilityHidden = ABILITY_HARVEST, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_CUBONE] = @@ -2641,6 +2744,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ROCK_HEAD, ABILITY_LIGHTNING_ROD}, .abilityHidden = ABILITY_BATTLE_ARMOR, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_MAROWAK] = @@ -2667,6 +2771,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ROCK_HEAD, ABILITY_LIGHTNING_ROD}, .abilityHidden = ABILITY_BATTLE_ARMOR, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_HITMONLEE] = @@ -2692,6 +2797,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LIMBER, ABILITY_RECKLESS}, .abilityHidden = ABILITY_UNBURDEN, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_HITMONCHAN] = @@ -2717,6 +2823,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_IRON_FIST}, .abilityHidden = ABILITY_INNER_FOCUS, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_LICKITUNG] = @@ -2743,6 +2850,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OWN_TEMPO, ABILITY_OBLIVIOUS}, .abilityHidden = ABILITY_CLOUD_NINE, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_KOFFING] = @@ -2768,6 +2876,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_WEEZING] = @@ -2793,6 +2902,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_RHYHORN] = @@ -2818,6 +2928,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LIGHTNING_ROD, ABILITY_ROCK_HEAD}, .abilityHidden = ABILITY_RECKLESS, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_RHYDON] = @@ -2843,6 +2954,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LIGHTNING_ROD, ABILITY_ROCK_HEAD}, .abilityHidden = ABILITY_RECKLESS, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_CHANSEY] = @@ -2869,6 +2981,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_NATURAL_CURE, ABILITY_SERENE_GRACE}, .abilityHidden = ABILITY_HEALER, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_TANGELA] = @@ -2894,6 +3007,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_LEAF_GUARD}, .abilityHidden = ABILITY_REGENERATOR, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_KANGASKHAN] = @@ -2919,6 +3033,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_EARLY_BIRD, ABILITY_SCRAPPY}, .abilityHidden = ABILITY_INNER_FOCUS, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_HORSEA] = @@ -2944,6 +3059,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_SNIPER}, .abilityHidden = ABILITY_DAMP, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SEADRA] = @@ -2970,6 +3086,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_POISON_POINT, ABILITY_SNIPER}, .abilityHidden = ABILITY_DAMP, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_GOLDEEN] = @@ -2996,6 +3113,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_WATER_VEIL}, .abilityHidden = ABILITY_LIGHTNING_ROD, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_SEAKING] = @@ -3022,6 +3140,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_WATER_VEIL}, .abilityHidden = ABILITY_LIGHTNING_ROD, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_STARYU] = @@ -3049,6 +3168,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ILLUMINATE, ABILITY_NATURAL_CURE}, .abilityHidden = ABILITY_ANALYTIC, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_STARMIE] = @@ -3076,6 +3196,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ILLUMINATE, ABILITY_NATURAL_CURE}, .abilityHidden = ABILITY_ANALYTIC, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_MR_MIME] = @@ -3101,6 +3222,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SOUNDPROOF, ABILITY_FILTER}, .abilityHidden = ABILITY_TECHNICIAN, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_SCYTHER] = @@ -3126,6 +3248,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWARM, ABILITY_TECHNICIAN}, .abilityHidden = ABILITY_STEADFAST, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_JYNX] = @@ -3150,6 +3273,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OBLIVIOUS, ABILITY_FOREWARN}, .abilityHidden = ABILITY_DRY_SKIN, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_ELECTABUZZ] = @@ -3176,6 +3300,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STATIC, ABILITY_NONE}, .abilityHidden = ABILITY_VITAL_SPIRIT, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_MAGMAR] = @@ -3201,6 +3326,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FLAME_BODY, ABILITY_NONE}, .abilityHidden = ABILITY_VITAL_SPIRIT, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_PINSIR] = @@ -3226,6 +3352,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HYPER_CUTTER, ABILITY_MOLD_BREAKER}, .abilityHidden = ABILITY_MOXIE, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_TAUROS] = @@ -3252,6 +3379,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INTIMIDATE, ABILITY_ANGER_POINT}, .abilityHidden = ABILITY_SHEER_FORCE, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_MAGIKARP] = @@ -3277,6 +3405,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_NONE}, .abilityHidden = ABILITY_RATTLED, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_GYARADOS] = @@ -3302,6 +3431,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INTIMIDATE, ABILITY_NONE}, .abilityHidden = ABILITY_MOXIE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_LAPRAS] = @@ -3329,6 +3459,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_WATER_ABSORB, ABILITY_SHELL_ARMOR}, .abilityHidden = ABILITY_HYDRATION, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_DITTO] = @@ -3356,6 +3487,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LIMBER, ABILITY_NONE}, .abilityHidden = ABILITY_IMPOSTER, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_EEVEE] = @@ -3381,6 +3513,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RUN_AWAY, ABILITY_ADAPTABILITY}, .abilityHidden = ABILITY_ANTICIPATION, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_VAPOREON] = @@ -3406,6 +3539,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_WATER_ABSORB, ABILITY_WATER_ABSORB}, .abilityHidden = ABILITY_HYDRATION, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_JOLTEON] = @@ -3431,6 +3565,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_VOLT_ABSORB, ABILITY_VOLT_ABSORB}, .abilityHidden = ABILITY_QUICK_FEET, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_FLAREON] = @@ -3456,6 +3591,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FLASH_FIRE, ABILITY_FLASH_FIRE}, .abilityHidden = ABILITY_GUTS, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_PORYGON] = @@ -3480,6 +3616,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TRACE, ABILITY_DOWNLOAD}, .abilityHidden = ABILITY_ANALYTIC, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_OMANYTE] = @@ -3505,6 +3642,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_SHELL_ARMOR}, .abilityHidden = ABILITY_WEAK_ARMOR, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_OMASTAR] = @@ -3530,6 +3668,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_SHELL_ARMOR}, .abilityHidden = ABILITY_WEAK_ARMOR, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_KABUTO] = @@ -3555,6 +3694,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_BATTLE_ARMOR}, .abilityHidden = ABILITY_WEAK_ARMOR, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_KABUTOPS] = @@ -3580,6 +3720,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_BATTLE_ARMOR}, .abilityHidden = ABILITY_WEAK_ARMOR, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_AERODACTYL] = @@ -3605,6 +3746,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ROCK_HEAD, ABILITY_PRESSURE}, .abilityHidden = ABILITY_UNNERVE, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_SNORLAX] = @@ -3632,6 +3774,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_IMMUNITY, ABILITY_THICK_FAT}, .abilityHidden = ABILITY_GLUTTONY, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_ARTICUNO] = @@ -3657,6 +3800,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRESSURE, ABILITY_NONE}, .abilityHidden = ABILITY_SNOW_CLOAK, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_ZAPDOS] = @@ -3681,6 +3825,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRESSURE, ABILITY_NONE}, .abilityHidden = ABILITY_STATIC, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_MOLTRES] = @@ -3705,6 +3850,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRESSURE, ABILITY_NONE}, .abilityHidden = ABILITY_FLAME_BODY, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_DRATINI] = @@ -3731,6 +3877,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE}, .abilityHidden = ABILITY_MARVEL_SCALE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_DRAGONAIR] = @@ -3757,6 +3904,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE}, .abilityHidden = ABILITY_MARVEL_SCALE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_DRAGONITE] = @@ -3783,6 +3931,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INNER_FOCUS, ABILITY_NONE}, .abilityHidden = ABILITY_MULTISCALE, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_MEWTWO] = @@ -3807,6 +3956,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRESSURE, ABILITY_NONE}, .abilityHidden = ABILITY_UNNERVE, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_MEW] = @@ -3833,6 +3983,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_SYNCHRONIZE, ABILITY_NONE}, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_CHIKORITA] = @@ -3858,6 +4009,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_LEAF_GUARD, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_BAYLEEF] = @@ -3884,6 +4036,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_LEAF_GUARD, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_MEGANIUM] = @@ -3910,6 +4063,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_LEAF_GUARD, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_CYNDAQUIL] = @@ -3935,6 +4089,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_FLASH_FIRE, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_QUILAVA] = @@ -3960,6 +4115,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_FLASH_FIRE, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_TYPHLOSION] = @@ -3984,6 +4140,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_FLASH_FIRE, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_TOTODILE] = @@ -4009,6 +4166,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_SHEER_FORCE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_CROCONAW] = @@ -4035,6 +4193,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_SHEER_FORCE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_FERALIGATR] = @@ -4061,6 +4220,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_SHEER_FORCE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SENTRET] = @@ -4086,6 +4246,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RUN_AWAY, ABILITY_KEEN_EYE}, .abilityHidden = ABILITY_FRISK, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_FURRET] = @@ -4111,6 +4272,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RUN_AWAY, ABILITY_KEEN_EYE}, .abilityHidden = ABILITY_FRISK, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_HOOTHOOT] = @@ -4136,6 +4298,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INSOMNIA, ABILITY_KEEN_EYE}, .abilityHidden = ABILITY_TINTED_LENS, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_NOCTOWL] = @@ -4161,6 +4324,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INSOMNIA, ABILITY_KEEN_EYE}, .abilityHidden = ABILITY_TINTED_LENS, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_LEDYBA] = @@ -4186,6 +4350,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWARM, ABILITY_EARLY_BIRD}, .abilityHidden = ABILITY_RATTLED, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_LEDIAN] = @@ -4211,6 +4376,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWARM, ABILITY_EARLY_BIRD}, .abilityHidden = ABILITY_IRON_FIST, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_SPINARAK] = @@ -4236,6 +4402,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWARM, ABILITY_INSOMNIA}, .abilityHidden = ABILITY_SNIPER, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_ARIADOS] = @@ -4261,6 +4428,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWARM, ABILITY_INSOMNIA}, .abilityHidden = ABILITY_SNIPER, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_CROBAT] = @@ -4286,6 +4454,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INNER_FOCUS, ABILITY_NONE}, .abilityHidden = ABILITY_INFILTRATOR, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_CHINCHOU] = @@ -4312,6 +4481,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_VOLT_ABSORB, ABILITY_ILLUMINATE}, .abilityHidden = ABILITY_WATER_ABSORB, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_LANTURN] = @@ -4338,6 +4508,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_VOLT_ABSORB, ABILITY_ILLUMINATE}, .abilityHidden = ABILITY_WATER_ABSORB, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_PICHU] = @@ -4363,6 +4534,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STATIC, ABILITY_NONE}, .abilityHidden = ABILITY_LIGHTNING_ROD, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_CLEFFA] = @@ -4389,6 +4561,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CUTE_CHARM, ABILITY_MAGIC_GUARD}, .abilityHidden = ABILITY_FRIEND_GUARD, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_IGGLYBUFF] = @@ -4414,6 +4587,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CUTE_CHARM, ABILITY_COMPETITIVE}, .abilityHidden = ABILITY_FRIEND_GUARD, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_TOGEPI] = @@ -4439,6 +4613,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HUSTLE, ABILITY_SERENE_GRACE}, .abilityHidden = ABILITY_SUPER_LUCK, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_TOGETIC] = @@ -4464,6 +4639,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HUSTLE, ABILITY_SERENE_GRACE}, .abilityHidden = ABILITY_SUPER_LUCK, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_NATU] = @@ -4488,6 +4664,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SYNCHRONIZE, ABILITY_EARLY_BIRD}, .abilityHidden = ABILITY_MAGIC_BOUNCE, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_XATU] = @@ -4513,6 +4690,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SYNCHRONIZE, ABILITY_EARLY_BIRD}, .abilityHidden = ABILITY_MAGIC_BOUNCE, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_MAREEP] = @@ -4537,6 +4715,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STATIC, ABILITY_NONE}, .abilityHidden = ABILITY_PLUS, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_FLAAFFY] = @@ -4561,6 +4740,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STATIC, ABILITY_NONE}, .abilityHidden = ABILITY_PLUS, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_AMPHAROS] = @@ -4585,6 +4765,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STATIC, ABILITY_NONE}, .abilityHidden = ABILITY_PLUS, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_BELLOSSOM] = @@ -4611,6 +4792,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE}, .abilityHidden = ABILITY_HEALER, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_MARILL] = @@ -4636,6 +4818,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_THICK_FAT, ABILITY_HUGE_POWER}, .abilityHidden = ABILITY_SAP_SIPPER, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_AZUMARILL] = @@ -4661,6 +4844,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_THICK_FAT, ABILITY_HUGE_POWER}, .abilityHidden = ABILITY_SAP_SIPPER, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SUDOWOODO] = @@ -4686,6 +4870,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STURDY, ABILITY_ROCK_HEAD}, .abilityHidden = ABILITY_RATTLED, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_POLITOED] = @@ -4712,6 +4897,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_WATER_ABSORB, ABILITY_DAMP}, .abilityHidden = ABILITY_DRIZZLE, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_HOPPIP] = @@ -4737,6 +4923,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_LEAF_GUARD}, .abilityHidden = ABILITY_INFILTRATOR, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_SKIPLOOM] = @@ -4762,6 +4949,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_LEAF_GUARD}, .abilityHidden = ABILITY_INFILTRATOR, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_JUMPLUFF] = @@ -4787,6 +4975,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_LEAF_GUARD}, .abilityHidden = ABILITY_INFILTRATOR, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_AIPOM] = @@ -4812,6 +5001,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RUN_AWAY, ABILITY_PICKUP}, .abilityHidden = ABILITY_SKILL_LINK, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_SUNKERN] = @@ -4836,6 +5026,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_SOLAR_POWER}, .abilityHidden = ABILITY_EARLY_BIRD, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_SUNFLORA] = @@ -4860,6 +5051,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_SOLAR_POWER}, .abilityHidden = ABILITY_EARLY_BIRD, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_YANMA] = @@ -4886,6 +5078,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SPEED_BOOST, ABILITY_COMPOUND_EYES}, .abilityHidden = ABILITY_FRISK, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_WOOPER] = @@ -4911,6 +5104,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_DAMP, ABILITY_WATER_ABSORB}, .abilityHidden = ABILITY_UNAWARE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_QUAGSIRE] = @@ -4936,6 +5130,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_DAMP, ABILITY_WATER_ABSORB}, .abilityHidden = ABILITY_UNAWARE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_ESPEON] = @@ -4960,6 +5155,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SYNCHRONIZE, ABILITY_SYNCHRONIZE}, .abilityHidden = ABILITY_MAGIC_BOUNCE, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_UMBREON] = @@ -4985,6 +5181,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SYNCHRONIZE, ABILITY_SYNCHRONIZE}, .abilityHidden = ABILITY_INNER_FOCUS, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_MURKROW] = @@ -5010,6 +5207,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INSOMNIA, ABILITY_SUPER_LUCK}, .abilityHidden = ABILITY_PRANKSTER, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_SLOWKING] = @@ -5036,6 +5234,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OBLIVIOUS, ABILITY_OWN_TEMPO}, .abilityHidden = ABILITY_REGENERATOR, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_MISDREAVUS] = @@ -5060,6 +5259,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_UNOWN] = @@ -5084,6 +5284,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_WOBBUFFET] = @@ -5109,6 +5310,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHADOW_TAG, ABILITY_NONE}, .abilityHidden = ABILITY_TELEPATHY, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_GIRAFARIG] = @@ -5133,6 +5335,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INNER_FOCUS, ABILITY_EARLY_BIRD}, .abilityHidden = ABILITY_SAP_SIPPER, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_PINECO] = @@ -5158,6 +5361,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STURDY, ABILITY_NONE}, .abilityHidden = ABILITY_OVERCOAT, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_FORRETRESS] = @@ -5183,6 +5387,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STURDY, ABILITY_NONE}, .abilityHidden = ABILITY_OVERCOAT, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_DUNSPARCE] = @@ -5208,6 +5413,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SERENE_GRACE, ABILITY_RUN_AWAY}, .abilityHidden = ABILITY_RATTLED, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_GLIGAR] = @@ -5233,6 +5439,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HYPER_CUTTER, ABILITY_SAND_VEIL}, .abilityHidden = ABILITY_IMMUNITY, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_STEELIX] = @@ -5259,6 +5466,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ROCK_HEAD, ABILITY_STURDY}, .abilityHidden = ABILITY_SHEER_FORCE, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_SNUBBULL] = @@ -5284,6 +5492,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INTIMIDATE, ABILITY_RUN_AWAY}, .abilityHidden = ABILITY_RATTLED, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_GRANBULL] = @@ -5309,6 +5518,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INTIMIDATE, ABILITY_QUICK_FEET}, .abilityHidden = ABILITY_RATTLED, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_QWILFISH] = @@ -5335,6 +5545,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_POISON_POINT, ABILITY_SWIFT_SWIM}, .abilityHidden = ABILITY_INTIMIDATE, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_SCIZOR] = @@ -5360,6 +5571,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWARM, ABILITY_TECHNICIAN}, .abilityHidden = ABILITY_LIGHT_METAL, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_SHUCKLE] = @@ -5388,6 +5600,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STURDY, ABILITY_GLUTTONY}, .abilityHidden = ABILITY_CONTRARY, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_HERACROSS] = @@ -5413,6 +5626,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWARM, ABILITY_GUTS}, .abilityHidden = ABILITY_MOXIE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SNEASEL] = @@ -5439,6 +5653,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INNER_FOCUS, ABILITY_KEEN_EYE}, .abilityHidden = ABILITY_PICKPOCKET, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_TEDDIURSA] = @@ -5464,6 +5679,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PICKUP, ABILITY_QUICK_FEET}, .abilityHidden = ABILITY_HONEY_GATHER, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_URSARING] = @@ -5489,6 +5705,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GUTS, ABILITY_QUICK_FEET}, .abilityHidden = ABILITY_UNNERVE, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_SLUGMA] = @@ -5513,6 +5730,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_MAGMA_ARMOR, ABILITY_FLAME_BODY}, .abilityHidden = ABILITY_WEAK_ARMOR, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_MAGCARGO] = @@ -5538,6 +5756,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_MAGMA_ARMOR, ABILITY_FLAME_BODY}, .abilityHidden = ABILITY_WEAK_ARMOR, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_SWINUB] = @@ -5563,6 +5782,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OBLIVIOUS, ABILITY_SNOW_CLOAK}, .abilityHidden = ABILITY_THICK_FAT, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_PILOSWINE] = @@ -5589,6 +5809,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OBLIVIOUS, ABILITY_SNOW_CLOAK}, .abilityHidden = ABILITY_THICK_FAT, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_CORSOLA] = @@ -5616,6 +5837,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HUSTLE, ABILITY_NATURAL_CURE}, .abilityHidden = ABILITY_REGENERATOR, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_REMORAID] = @@ -5640,6 +5862,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HUSTLE, ABILITY_SNIPER}, .abilityHidden = ABILITY_MOODY, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_OCTILLERY] = @@ -5665,6 +5888,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SUCTION_CUPS, ABILITY_SNIPER}, .abilityHidden = ABILITY_MOODY, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_DELIBIRD] = @@ -5690,6 +5914,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_VITAL_SPIRIT, ABILITY_HUSTLE}, .abilityHidden = ABILITY_INSOMNIA, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_MANTINE] = @@ -5715,6 +5940,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_WATER_ABSORB}, .abilityHidden = ABILITY_WATER_VEIL, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_SKARMORY] = @@ -5741,6 +5967,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_STURDY}, .abilityHidden = ABILITY_WEAK_ARMOR, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_HOUNDOUR] = @@ -5765,6 +5992,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_EARLY_BIRD, ABILITY_FLASH_FIRE}, .abilityHidden = ABILITY_UNNERVE, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_HOUNDOOM] = @@ -5789,6 +6017,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_EARLY_BIRD, ABILITY_FLASH_FIRE}, .abilityHidden = ABILITY_UNNERVE, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_KINGDRA] = @@ -5816,6 +6045,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_SNIPER}, .abilityHidden = ABILITY_DAMP, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_PHANPY] = @@ -5841,6 +6071,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PICKUP, ABILITY_NONE}, .abilityHidden = ABILITY_SAND_VEIL, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_DONPHAN] = @@ -5867,6 +6098,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STURDY, ABILITY_NONE}, .abilityHidden = ABILITY_SAND_VEIL, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_PORYGON2] = @@ -5891,6 +6123,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TRACE, ABILITY_DOWNLOAD}, .abilityHidden = ABILITY_ANALYTIC, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_STANTLER] = @@ -5916,6 +6149,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INTIMIDATE, ABILITY_FRISK}, .abilityHidden = ABILITY_SAP_SIPPER, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_SMEARGLE] = @@ -5941,6 +6175,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OWN_TEMPO, ABILITY_TECHNICIAN}, .abilityHidden = ABILITY_MOODY, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_TYROGUE] = @@ -5966,6 +6201,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GUTS, ABILITY_STEADFAST}, .abilityHidden = ABILITY_VITAL_SPIRIT, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_HITMONTOP] = @@ -5991,6 +6227,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INTIMIDATE, ABILITY_TECHNICIAN}, .abilityHidden = ABILITY_STEADFAST, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_SMOOCHUM] = @@ -6015,6 +6252,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OBLIVIOUS, ABILITY_FOREWARN}, .abilityHidden = ABILITY_HYDRATION, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_ELEKID] = @@ -6041,6 +6279,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STATIC, ABILITY_NONE}, .abilityHidden = ABILITY_VITAL_SPIRIT, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_MAGBY] = @@ -6067,6 +6306,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FLAME_BODY, ABILITY_NONE}, .abilityHidden = ABILITY_VITAL_SPIRIT, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_MILTANK] = @@ -6094,6 +6334,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_THICK_FAT, ABILITY_SCRAPPY}, .abilityHidden = ABILITY_SAP_SIPPER, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_BLISSEY] = @@ -6120,6 +6361,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_NATURAL_CURE, ABILITY_SERENE_GRACE}, .abilityHidden = ABILITY_HEALER, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_RAIKOU] = @@ -6145,6 +6387,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRESSURE, ABILITY_NONE}, .abilityHidden = ABILITY_INNER_FOCUS, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_ENTEI] = @@ -6171,6 +6414,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRESSURE, ABILITY_NONE}, .abilityHidden = ABILITY_INNER_FOCUS, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_SUICUNE] = @@ -6197,6 +6441,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRESSURE, ABILITY_NONE}, .abilityHidden = ABILITY_INNER_FOCUS, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_LARVITAR] = @@ -6222,6 +6467,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GUTS, ABILITY_NONE}, .abilityHidden = ABILITY_SAND_VEIL, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_PUPITAR] = @@ -6246,6 +6492,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MONSTER, .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_TYRANITAR] = @@ -6271,6 +6518,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAND_STREAM, ABILITY_NONE}, .abilityHidden = ABILITY_UNNERVE, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_LUGIA] = @@ -6296,6 +6544,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRESSURE, ABILITY_NONE}, .abilityHidden = ABILITY_MULTISCALE, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_HO_OH] = @@ -6323,6 +6572,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRESSURE, ABILITY_NONE}, .abilityHidden = ABILITY_REGENERATOR, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_CELEBI] = @@ -6349,6 +6599,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_NATURAL_CURE, ABILITY_NONE}, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_TREECKO] = @@ -6374,6 +6625,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_UNBURDEN, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_GROVYLE] = @@ -6399,6 +6651,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_UNBURDEN, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_SCEPTILE] = @@ -6424,6 +6677,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_UNBURDEN, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_TORCHIC] = @@ -6448,6 +6702,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_SPEED_BOOST, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_COMBUSKEN] = @@ -6473,6 +6728,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_SPEED_BOOST, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_BLAZIKEN] = @@ -6498,6 +6754,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_SPEED_BOOST, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_MUDKIP] = @@ -6523,6 +6780,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_DAMP, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MARSHTOMP] = @@ -6548,6 +6806,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_DAMP, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SWAMPERT] = @@ -6573,6 +6832,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_DAMP, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_POOCHYENA] = @@ -6598,6 +6858,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RUN_AWAY, ABILITY_QUICK_FEET}, .abilityHidden = ABILITY_RATTLED, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_MIGHTYENA] = @@ -6623,6 +6884,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INTIMIDATE, ABILITY_QUICK_FEET}, .abilityHidden = ABILITY_MOXIE, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_ZIGZAGOON] = @@ -6650,6 +6912,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PICKUP, ABILITY_GLUTTONY}, .abilityHidden = ABILITY_QUICK_FEET, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_LINOONE] = @@ -6677,6 +6940,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PICKUP, ABILITY_GLUTTONY}, .abilityHidden = ABILITY_QUICK_FEET, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_WURMPLE] = @@ -6704,6 +6968,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHIELD_DUST, ABILITY_NONE}, .abilityHidden = ABILITY_RUN_AWAY, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_SILCOON] = @@ -6728,6 +6993,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_BUG, .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE}, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_BEAUTIFLY] = @@ -6753,6 +7019,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWARM, ABILITY_NONE}, .abilityHidden = ABILITY_RIVALRY, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_CASCOON] = @@ -6777,6 +7044,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_BUG, .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_DUSTOX] = @@ -6803,6 +7071,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHIELD_DUST, ABILITY_NONE}, .abilityHidden = ABILITY_COMPOUND_EYES, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_LOTAD] = @@ -6829,6 +7098,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_RAIN_DISH}, .abilityHidden = ABILITY_OWN_TEMPO, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_LOMBRE] = @@ -6855,6 +7125,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_RAIN_DISH}, .abilityHidden = ABILITY_OWN_TEMPO, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_LUDICOLO] = @@ -6881,6 +7152,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_RAIN_DISH}, .abilityHidden = ABILITY_OWN_TEMPO, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_SEEDOT] = @@ -6907,6 +7179,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_EARLY_BIRD}, .abilityHidden = ABILITY_PICKPOCKET, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_NUZLEAF] = @@ -6933,6 +7206,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_EARLY_BIRD}, .abilityHidden = ABILITY_PICKPOCKET, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_SHIFTRY] = @@ -6959,6 +7233,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_EARLY_BIRD}, .abilityHidden = ABILITY_PICKPOCKET, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_TAILLOW] = @@ -6984,6 +7259,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GUTS, ABILITY_NONE}, .abilityHidden = ABILITY_SCRAPPY, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SWELLOW] = @@ -7009,6 +7285,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GUTS, ABILITY_NONE}, .abilityHidden = ABILITY_SCRAPPY, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_WINGULL] = @@ -7035,6 +7312,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_HYDRATION}, .abilityHidden = ABILITY_RAIN_DISH, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_PELIPPER] = @@ -7061,6 +7339,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_DRIZZLE}, .abilityHidden = ABILITY_RAIN_DISH, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_RALTS] = @@ -7085,6 +7364,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SYNCHRONIZE, ABILITY_TRACE}, .abilityHidden = ABILITY_TELEPATHY, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_KIRLIA] = @@ -7109,6 +7389,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SYNCHRONIZE, ABILITY_TRACE}, .abilityHidden = ABILITY_TELEPATHY, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_GARDEVOIR] = @@ -7133,6 +7414,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SYNCHRONIZE, ABILITY_TRACE}, .abilityHidden = ABILITY_TELEPATHY, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_SURSKIT] = @@ -7159,6 +7441,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_NONE}, .abilityHidden = ABILITY_RAIN_DISH, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MASQUERAIN] = @@ -7185,6 +7468,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INTIMIDATE, ABILITY_NONE}, .abilityHidden = ABILITY_UNNERVE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SHROOMISH] = @@ -7212,6 +7496,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_EFFECT_SPORE, ABILITY_POISON_HEAL}, .abilityHidden = ABILITY_QUICK_FEET, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_BRELOOM] = @@ -7239,6 +7524,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_EFFECT_SPORE, ABILITY_POISON_HEAL}, .abilityHidden = ABILITY_TECHNICIAN, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_SLAKOTH] = @@ -7263,6 +7549,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FIELD, .abilities = {ABILITY_TRUANT, ABILITY_NONE}, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_VIGOROTH] = @@ -7287,6 +7574,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FIELD, .abilities = {ABILITY_VITAL_SPIRIT, ABILITY_NONE}, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_SLAKING] = @@ -7311,6 +7599,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FIELD, .abilities = {ABILITY_TRUANT, ABILITY_NONE}, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_NINCADA] = @@ -7337,6 +7626,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_COMPOUND_EYES, ABILITY_NONE}, .abilityHidden = ABILITY_RUN_AWAY, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_NINJASK] = @@ -7362,6 +7652,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SPEED_BOOST, ABILITY_NONE}, .abilityHidden = ABILITY_INFILTRATOR, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_SHEDINJA] = @@ -7386,6 +7677,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MINERAL, .abilities = {ABILITY_WONDER_GUARD, ABILITY_NONE}, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_WHISMUR] = @@ -7411,6 +7703,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SOUNDPROOF, ABILITY_NONE}, .abilityHidden = ABILITY_RATTLED, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_LOUDRED] = @@ -7436,6 +7729,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SOUNDPROOF, ABILITY_NONE}, .abilityHidden = ABILITY_SCRAPPY, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_EXPLOUD] = @@ -7461,6 +7755,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SOUNDPROOF, ABILITY_NONE}, .abilityHidden = ABILITY_SCRAPPY, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MAKUHITA] = @@ -7487,6 +7782,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_THICK_FAT, ABILITY_GUTS}, .abilityHidden = ABILITY_SHEER_FORCE, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_HARIYAMA] = @@ -7513,6 +7809,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_THICK_FAT, ABILITY_GUTS}, .abilityHidden = ABILITY_SHEER_FORCE, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_AZURILL] = @@ -7538,6 +7835,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_THICK_FAT, ABILITY_HUGE_POWER}, .abilityHidden = ABILITY_SAP_SIPPER, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_NOSEPASS] = @@ -7564,6 +7862,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STURDY, ABILITY_MAGNET_PULL}, .abilityHidden = ABILITY_SAND_FORCE, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_SKITTY] = @@ -7589,6 +7888,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CUTE_CHARM, ABILITY_NORMALIZE}, .abilityHidden = ABILITY_WONDER_SKIN, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_DELCATTY] = @@ -7615,6 +7915,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CUTE_CHARM, ABILITY_NORMALIZE}, .abilityHidden = ABILITY_WONDER_SKIN, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_SABLEYE] = @@ -7642,6 +7943,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_STALL}, .abilityHidden = ABILITY_PRANKSTER, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_MAWILE] = @@ -7669,6 +7971,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HYPER_CUTTER, ABILITY_INTIMIDATE}, .abilityHidden = ABILITY_SHEER_FORCE, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_ARON] = @@ -7695,6 +7998,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STURDY, ABILITY_ROCK_HEAD}, .abilityHidden = ABILITY_HEAVY_METAL, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_LAIRON] = @@ -7721,6 +8025,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STURDY, ABILITY_ROCK_HEAD}, .abilityHidden = ABILITY_HEAVY_METAL, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_AGGRON] = @@ -7747,6 +8052,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STURDY, ABILITY_ROCK_HEAD}, .abilityHidden = ABILITY_HEAVY_METAL, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_MEDITITE] = @@ -7772,6 +8078,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PURE_POWER, ABILITY_NONE}, .abilityHidden = ABILITY_TELEPATHY, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MEDICHAM] = @@ -7797,6 +8104,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PURE_POWER, ABILITY_NONE}, .abilityHidden = ABILITY_TELEPATHY, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_ELECTRIKE] = @@ -7822,6 +8130,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STATIC, ABILITY_LIGHTNING_ROD}, .abilityHidden = ABILITY_MINUS, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_MANECTRIC] = @@ -7847,6 +8156,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STATIC, ABILITY_LIGHTNING_ROD}, .abilityHidden = ABILITY_MINUS, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_PLUSLE] = @@ -7873,6 +8183,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PLUS, ABILITY_NONE}, .abilityHidden = ABILITY_LIGHTNING_ROD, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_MINUN] = @@ -7899,6 +8210,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_MINUS, ABILITY_NONE}, .abilityHidden = ABILITY_VOLT_ABSORB, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_VOLBEAT] = @@ -7925,6 +8237,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ILLUMINATE, ABILITY_SWARM}, .abilityHidden = ABILITY_PRANKSTER, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_ILLUMISE] = @@ -7951,6 +8264,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OBLIVIOUS, ABILITY_TINTED_LENS}, .abilityHidden = ABILITY_PRANKSTER, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_ROSELIA] = @@ -7976,6 +8290,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_NATURAL_CURE, ABILITY_POISON_POINT}, .abilityHidden = ABILITY_LEAF_GUARD, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_GULPIN] = @@ -8003,6 +8318,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LIQUID_OOZE, ABILITY_STICKY_HOLD}, .abilityHidden = ABILITY_GLUTTONY, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_SWALOT] = @@ -8030,6 +8346,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LIQUID_OOZE, ABILITY_STICKY_HOLD}, .abilityHidden = ABILITY_GLUTTONY, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_CARVANHA] = @@ -8056,6 +8373,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ROUGH_SKIN, ABILITY_NONE}, .abilityHidden = ABILITY_SPEED_BOOST, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_SHARPEDO] = @@ -8082,6 +8400,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ROUGH_SKIN, ABILITY_NONE}, .abilityHidden = ABILITY_SPEED_BOOST, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_WAILMER] = @@ -8107,6 +8426,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_WATER_VEIL, ABILITY_OBLIVIOUS}, .abilityHidden = ABILITY_PRESSURE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_WAILORD] = @@ -8132,6 +8452,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_WATER_VEIL, ABILITY_OBLIVIOUS}, .abilityHidden = ABILITY_PRESSURE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_NUMEL] = @@ -8156,6 +8477,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OBLIVIOUS, ABILITY_SIMPLE}, .abilityHidden = ABILITY_OWN_TEMPO, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_CAMERUPT] = @@ -8181,6 +8503,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_MAGMA_ARMOR, ABILITY_SOLID_ROCK}, .abilityHidden = ABILITY_ANGER_POINT, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_TORKOAL] = @@ -8207,6 +8530,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_WHITE_SMOKE, ABILITY_DROUGHT}, .abilityHidden = ABILITY_SHELL_ARMOR, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_SPOINK] = @@ -8232,6 +8556,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_THICK_FAT, ABILITY_OWN_TEMPO}, .abilityHidden = ABILITY_GLUTTONY, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_GRUMPIG] = @@ -8257,6 +8582,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_THICK_FAT, ABILITY_OWN_TEMPO}, .abilityHidden = ABILITY_GLUTTONY, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_SPINDA] = @@ -8281,6 +8607,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OWN_TEMPO, ABILITY_TANGLED_FEET}, .abilityHidden = ABILITY_CONTRARY, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_TRAPINCH] = @@ -8307,6 +8634,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HYPER_CUTTER, ABILITY_ARENA_TRAP}, .abilityHidden = ABILITY_SHEER_FORCE, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_VIBRAVA] = @@ -8332,6 +8660,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_BUG, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_FLYGON] = @@ -8357,6 +8686,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_BUG, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_CACNEA] = @@ -8382,6 +8712,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAND_VEIL, ABILITY_NONE}, .abilityHidden = ABILITY_WATER_ABSORB, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_CACTURNE] = @@ -8408,6 +8739,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAND_VEIL, ABILITY_NONE}, .abilityHidden = ABILITY_WATER_ABSORB, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_SWABLU] = @@ -8433,6 +8765,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_NATURAL_CURE, ABILITY_NONE}, .abilityHidden = ABILITY_CLOUD_NINE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_ALTARIA] = @@ -8458,6 +8791,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_NATURAL_CURE, ABILITY_NONE}, .abilityHidden = ABILITY_CLOUD_NINE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_ZANGOOSE] = @@ -8484,6 +8818,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_IMMUNITY, ABILITY_NONE}, .abilityHidden = ABILITY_TOXIC_BOOST, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_SEVIPER] = @@ -8510,6 +8845,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE}, .abilityHidden = ABILITY_INFILTRATOR, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_LUNATONE] = @@ -8535,6 +8871,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MINERAL, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_SOLROCK] = @@ -8561,6 +8898,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MINERAL, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_BARBOACH] = @@ -8586,6 +8924,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OBLIVIOUS, ABILITY_ANTICIPATION}, .abilityHidden = ABILITY_HYDRATION, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_WHISCASH] = @@ -8611,6 +8950,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OBLIVIOUS, ABILITY_ANTICIPATION}, .abilityHidden = ABILITY_HYDRATION, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_CORPHISH] = @@ -8636,6 +8976,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HYPER_CUTTER, ABILITY_SHELL_ARMOR}, .abilityHidden = ABILITY_ADAPTABILITY, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_CRAWDAUNT] = @@ -8661,6 +9002,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HYPER_CUTTER, ABILITY_SHELL_ARMOR}, .abilityHidden = ABILITY_ADAPTABILITY, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_BALTOY] = @@ -8686,6 +9028,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MINERAL, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_CLAYDOL] = @@ -8711,6 +9054,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MINERAL, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_LILEEP] = @@ -8737,6 +9081,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SUCTION_CUPS, ABILITY_NONE}, .abilityHidden = ABILITY_STORM_DRAIN, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_CRADILY] = @@ -8763,6 +9108,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SUCTION_CUPS, ABILITY_NONE}, .abilityHidden = ABILITY_STORM_DRAIN, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_ANORITH] = @@ -8788,6 +9134,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BATTLE_ARMOR, ABILITY_NONE}, .abilityHidden = ABILITY_SWIFT_SWIM, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_ARMALDO] = @@ -8813,6 +9160,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BATTLE_ARMOR, ABILITY_NONE}, .abilityHidden = ABILITY_SWIFT_SWIM, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_FEEBAS] = @@ -8838,6 +9186,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_OBLIVIOUS}, .abilityHidden = ABILITY_ADAPTABILITY, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_MILOTIC] = @@ -8863,6 +9212,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_MARVEL_SCALE, ABILITY_COMPETITIVE}, .abilityHidden = ABILITY_CUTE_CHARM, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_CASTFORM] = @@ -8889,6 +9239,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_FORECAST, ABILITY_NONE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_KECLEON] = @@ -8914,6 +9265,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_COLOR_CHANGE, ABILITY_NONE}, .abilityHidden = ABILITY_PROTEAN, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_SHUPPET] = @@ -8940,6 +9292,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INSOMNIA, ABILITY_FRISK}, .abilityHidden = ABILITY_CURSED_BODY, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_BANETTE] = @@ -8966,6 +9319,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INSOMNIA, ABILITY_FRISK}, .abilityHidden = ABILITY_CURSED_BODY, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_DUSKULL] = @@ -8992,6 +9346,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .abilityHidden = ABILITY_FRISK, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_DUSCLOPS] = @@ -9019,6 +9374,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRESSURE, ABILITY_NONE}, .abilityHidden = ABILITY_FRISK, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_TROPIUS] = @@ -9044,6 +9400,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_SOLAR_POWER}, .abilityHidden = ABILITY_HARVEST, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_CHIMECHO] = @@ -9069,6 +9426,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_ABSOL] = @@ -9094,6 +9452,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRESSURE, ABILITY_SUPER_LUCK}, .abilityHidden = ABILITY_JUSTIFIED, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_WYNAUT] = @@ -9119,6 +9478,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHADOW_TAG, ABILITY_NONE}, .abilityHidden = ABILITY_TELEPATHY, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SNORUNT] = @@ -9145,6 +9505,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INNER_FOCUS, ABILITY_ICE_BODY}, .abilityHidden = ABILITY_MOODY, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_GLALIE] = @@ -9170,6 +9531,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INNER_FOCUS, ABILITY_ICE_BODY}, .abilityHidden = ABILITY_MOODY, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_SPHEAL] = @@ -9195,6 +9557,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_THICK_FAT, ABILITY_ICE_BODY}, .abilityHidden = ABILITY_OBLIVIOUS, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SEALEO] = @@ -9220,6 +9583,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_THICK_FAT, ABILITY_ICE_BODY}, .abilityHidden = ABILITY_OBLIVIOUS, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_WALREIN] = @@ -9245,6 +9609,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_THICK_FAT, ABILITY_ICE_BODY}, .abilityHidden = ABILITY_OBLIVIOUS, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_CLAMPERL] = @@ -9272,6 +9637,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHELL_ARMOR, ABILITY_NONE}, .abilityHidden = ABILITY_RATTLED, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_HUNTAIL] = @@ -9299,6 +9665,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_NONE}, .abilityHidden = ABILITY_WATER_VEIL, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_GOREBYSS] = @@ -9324,6 +9691,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_NONE}, .abilityHidden = ABILITY_HYDRATION, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_RELICANTH] = @@ -9351,6 +9719,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_ROCK_HEAD}, .abilityHidden = ABILITY_STURDY, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_LUVDISC] = @@ -9377,6 +9746,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_NONE}, .abilityHidden = ABILITY_HYDRATION, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_BAGON] = @@ -9403,6 +9773,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ROCK_HEAD, ABILITY_NONE}, .abilityHidden = ABILITY_SHEER_FORCE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SHELGON] = @@ -9429,6 +9800,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ROCK_HEAD, ABILITY_NONE}, .abilityHidden = ABILITY_OVERCOAT, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_SALAMENCE] = @@ -9455,6 +9827,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INTIMIDATE, ABILITY_NONE}, .abilityHidden = ABILITY_MOXIE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_BELDUM] = @@ -9481,6 +9854,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CLEAR_BODY, ABILITY_NONE}, .abilityHidden = ABILITY_LIGHT_METAL, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_METANG] = @@ -9507,6 +9881,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CLEAR_BODY, ABILITY_NONE}, .abilityHidden = ABILITY_LIGHT_METAL, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_METAGROSS] = @@ -9533,6 +9908,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CLEAR_BODY, ABILITY_NONE}, .abilityHidden = ABILITY_LIGHT_METAL, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_REGIROCK] = @@ -9558,6 +9934,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CLEAR_BODY, ABILITY_NONE}, .abilityHidden = ABILITY_STURDY, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_REGICE] = @@ -9583,6 +9960,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CLEAR_BODY, ABILITY_NONE}, .abilityHidden = ABILITY_ICE_BODY, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_REGISTEEL] = @@ -9609,6 +9987,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CLEAR_BODY, ABILITY_NONE}, .abilityHidden = ABILITY_LIGHT_METAL, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_LATIAS] = @@ -9633,6 +10012,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_LATIOS] = @@ -9656,6 +10036,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_KYOGRE] = @@ -9679,6 +10060,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_DRIZZLE, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_GROUDON] = @@ -9703,6 +10085,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_DROUGHT, ABILITY_NONE}, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_RAYQUAZA] = @@ -9727,6 +10110,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_AIR_LOCK, ABILITY_NONE}, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_JIRACHI] = @@ -9753,6 +10137,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_SERENE_GRACE, ABILITY_NONE}, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_DEOXYS] = @@ -9778,6 +10163,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_PRESSURE, ABILITY_NONE}, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_TURTWIG] = @@ -9803,6 +10189,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_SHELL_ARMOR, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_GROTLE] = @@ -9829,6 +10216,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_SHELL_ARMOR, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_TORTERRA] = @@ -9855,6 +10243,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_SHELL_ARMOR, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_CHIMCHAR] = @@ -9880,6 +10269,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_IRON_FIST, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_MONFERNO] = @@ -9905,6 +10295,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_IRON_FIST, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_INFERNAPE] = @@ -9931,6 +10322,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_IRON_FIST, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_PIPLUP] = @@ -9955,6 +10347,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_DEFIANT, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_PRINPLUP] = @@ -9979,6 +10372,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_DEFIANT, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_EMPOLEON] = @@ -10003,6 +10397,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_DEFIANT, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_STARLY] = @@ -10028,6 +10423,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_NONE}, .abilityHidden = ABILITY_RECKLESS, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_STARAVIA] = @@ -10053,6 +10449,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INTIMIDATE, ABILITY_NONE}, .abilityHidden = ABILITY_RECKLESS, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_STARAPTOR] = @@ -10078,6 +10475,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INTIMIDATE, ABILITY_NONE}, .abilityHidden = ABILITY_RECKLESS, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_BIDOOF] = @@ -10103,6 +10501,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SIMPLE, ABILITY_UNAWARE}, .abilityHidden = ABILITY_MOODY, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_BIBAREL] = @@ -10128,6 +10527,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SIMPLE, ABILITY_UNAWARE}, .abilityHidden = ABILITY_MOODY, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_KRICKETOT] = @@ -10154,6 +10554,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE}, .abilityHidden = ABILITY_RUN_AWAY, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_KRICKETUNE] = @@ -10180,6 +10581,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWARM, ABILITY_NONE}, .abilityHidden = ABILITY_TECHNICIAN, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_SHINX] = @@ -10205,6 +10607,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RIVALRY, ABILITY_INTIMIDATE}, .abilityHidden = ABILITY_GUTS, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_LUXIO] = @@ -10230,6 +10633,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RIVALRY, ABILITY_INTIMIDATE}, .abilityHidden = ABILITY_GUTS, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_LUXRAY] = @@ -10255,6 +10659,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RIVALRY, ABILITY_INTIMIDATE}, .abilityHidden = ABILITY_GUTS, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_BUDEW] = @@ -10280,6 +10685,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_NATURAL_CURE, ABILITY_POISON_POINT}, .abilityHidden = ABILITY_LEAF_GUARD, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_ROSERADE] = @@ -10305,6 +10711,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_NATURAL_CURE, ABILITY_POISON_POINT}, .abilityHidden = ABILITY_TECHNICIAN, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_CRANIDOS] = @@ -10330,6 +10737,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_MOLD_BREAKER, ABILITY_NONE}, .abilityHidden = ABILITY_SHEER_FORCE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_RAMPARDOS] = @@ -10355,6 +10763,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_MOLD_BREAKER, ABILITY_NONE}, .abilityHidden = ABILITY_SHEER_FORCE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SHIELDON] = @@ -10380,6 +10789,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STURDY, ABILITY_NONE}, .abilityHidden = ABILITY_SOUNDPROOF, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_BASTIODON] = @@ -10405,6 +10815,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STURDY, ABILITY_NONE}, .abilityHidden = ABILITY_SOUNDPROOF, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_BURMY] = @@ -10430,6 +10841,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE}, .abilityHidden = ABILITY_OVERCOAT, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_BURMY_SANDY] = @@ -10454,6 +10866,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_BUG, .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE}, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_BURMY_TRASH] = @@ -10478,6 +10891,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_BUG, .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE}, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_WORMADAM] = @@ -10504,6 +10918,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ANTICIPATION, ABILITY_NONE}, .abilityHidden = ABILITY_OVERCOAT, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_WORMADAM_SANDY] = @@ -10529,6 +10944,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ANTICIPATION, ABILITY_NONE}, .abilityHidden = ABILITY_OVERCOAT, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_WORMADAM_TRASH] = @@ -10555,6 +10971,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ANTICIPATION, ABILITY_NONE}, .abilityHidden = ABILITY_OVERCOAT, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_MOTHIM] = @@ -10581,6 +10998,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWARM, ABILITY_NONE}, .abilityHidden = ABILITY_TINTED_LENS, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_COMBEE] = @@ -10607,6 +11025,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HONEY_GATHER, ABILITY_NONE}, .abilityHidden = ABILITY_HUSTLE, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_VESPIQUEN] = @@ -10634,6 +11053,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRESSURE, ABILITY_NONE}, .abilityHidden = ABILITY_UNNERVE, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_PACHIRISU] = @@ -10659,6 +11079,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RUN_AWAY, ABILITY_PICKUP}, .abilityHidden = ABILITY_VOLT_ABSORB, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_BUIZEL] = @@ -10684,6 +11105,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_NONE}, .abilityHidden = ABILITY_WATER_VEIL, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_FLOATZEL] = @@ -10709,6 +11131,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_NONE}, .abilityHidden = ABILITY_WATER_VEIL, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_CHERUBI] = @@ -10733,6 +11156,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_GRASS, .abilities = {ABILITY_CHLOROPHYLL, ABILITY_NONE}, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_CHERRIM] = @@ -10757,6 +11181,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_GRASS, .abilities = {ABILITY_FLOWER_GIFT, ABILITY_NONE}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = TRUE, }, [SPECIES_SHELLOS] = @@ -10782,6 +11207,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STICKY_HOLD, ABILITY_STORM_DRAIN}, .abilityHidden = ABILITY_SAND_FORCE, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_GASTRODON] = @@ -10807,6 +11233,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STICKY_HOLD, ABILITY_STORM_DRAIN}, .abilityHidden = ABILITY_SAND_FORCE, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_AMBIPOM] = @@ -10832,6 +11259,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TECHNICIAN, ABILITY_PICKUP}, .abilityHidden = ABILITY_SKILL_LINK, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_DRIFLOON] = @@ -10857,6 +11285,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_AFTERMATH, ABILITY_UNBURDEN}, .abilityHidden = ABILITY_FLARE_BOOST, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_DRIFBLIM] = @@ -10882,6 +11311,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_AFTERMATH, ABILITY_UNBURDEN}, .abilityHidden = ABILITY_FLARE_BOOST, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_BUNEARY] = @@ -10907,6 +11337,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RUN_AWAY, ABILITY_KLUTZ}, .abilityHidden = ABILITY_LIMBER, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_LOPUNNY] = @@ -10932,6 +11363,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CUTE_CHARM, ABILITY_KLUTZ}, .abilityHidden = ABILITY_LIMBER, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_MISMAGIUS] = @@ -10956,6 +11388,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_HONCHKROW] = @@ -10981,6 +11414,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INSOMNIA, ABILITY_SUPER_LUCK}, .abilityHidden = ABILITY_MOXIE, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_GLAMEOW] = @@ -11006,6 +11440,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LIMBER, ABILITY_OWN_TEMPO}, .abilityHidden = ABILITY_KEEN_EYE, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_PURUGLY] = @@ -11031,6 +11466,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_THICK_FAT, ABILITY_OWN_TEMPO}, .abilityHidden = ABILITY_DEFIANT, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_CHINGLING] = @@ -11055,6 +11491,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_STUNKY] = @@ -11080,6 +11517,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STENCH, ABILITY_AFTERMATH}, .abilityHidden = ABILITY_KEEN_EYE, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_SKUNTANK] = @@ -11105,6 +11543,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STENCH, ABILITY_AFTERMATH}, .abilityHidden = ABILITY_KEEN_EYE, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_BRONZOR] = @@ -11131,6 +11570,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LEVITATE, ABILITY_HEATPROOF}, .abilityHidden = ABILITY_HEAVY_METAL, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_BRONZONG] = @@ -11158,6 +11598,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LEVITATE, ABILITY_HEATPROOF}, .abilityHidden = ABILITY_HEAVY_METAL, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_BONSLY] = @@ -11183,6 +11624,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STURDY, ABILITY_ROCK_HEAD}, .abilityHidden = ABILITY_RATTLED, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_MIMEJR] = @@ -11208,6 +11650,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SOUNDPROOF, ABILITY_FILTER}, .abilityHidden = ABILITY_TECHNICIAN, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_HAPPINY] = @@ -11234,6 +11677,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_NATURAL_CURE, ABILITY_SERENE_GRACE}, .abilityHidden = ABILITY_FRIEND_GUARD, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_CHATOT] = @@ -11260,6 +11704,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_TANGLED_FEET}, .abilityHidden = ABILITY_BIG_PECKS, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_SPIRITOMB] = @@ -11286,6 +11731,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRESSURE, ABILITY_NONE}, .abilityHidden = ABILITY_INFILTRATOR, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_GIBLE] = @@ -11311,6 +11757,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAND_VEIL, ABILITY_NONE}, .abilityHidden = ABILITY_ROUGH_SKIN, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_GABITE] = @@ -11336,6 +11783,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAND_VEIL, ABILITY_NONE}, .abilityHidden = ABILITY_ROUGH_SKIN, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_GARCHOMP] = @@ -11361,6 +11809,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAND_VEIL, ABILITY_NONE}, .abilityHidden = ABILITY_ROUGH_SKIN, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MUNCHLAX] = @@ -11388,6 +11837,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PICKUP, ABILITY_THICK_FAT}, .abilityHidden = ABILITY_GLUTTONY, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_RIOLU] = @@ -11413,6 +11863,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STEADFAST, ABILITY_INNER_FOCUS}, .abilityHidden = ABILITY_PRANKSTER, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_LUCARIO] = @@ -11438,6 +11889,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STEADFAST, ABILITY_INNER_FOCUS}, .abilityHidden = ABILITY_JUSTIFIED, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_HIPPOPOTAS] = @@ -11463,6 +11915,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAND_STREAM, ABILITY_NONE}, .abilityHidden = ABILITY_SAND_FORCE, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_HIPPOWDON] = @@ -11488,6 +11941,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAND_STREAM, ABILITY_NONE}, .abilityHidden = ABILITY_SAND_FORCE, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_SKORUPI] = @@ -11514,6 +11968,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BATTLE_ARMOR, ABILITY_SNIPER}, .abilityHidden = ABILITY_KEEN_EYE, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_DRAPION] = @@ -11540,6 +11995,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BATTLE_ARMOR, ABILITY_SNIPER}, .abilityHidden = ABILITY_KEEN_EYE, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_CROAGUNK] = @@ -11566,6 +12022,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ANTICIPATION, ABILITY_DRY_SKIN}, .abilityHidden = ABILITY_POISON_TOUCH, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_TOXICROAK] = @@ -11592,6 +12049,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ANTICIPATION, ABILITY_DRY_SKIN}, .abilityHidden = ABILITY_POISON_TOUCH, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_CARNIVINE] = @@ -11616,6 +12074,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_GRASS, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_FINNEON] = @@ -11641,6 +12100,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_STORM_DRAIN}, .abilityHidden = ABILITY_WATER_VEIL, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_LUMINEON] = @@ -11666,6 +12126,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_STORM_DRAIN}, .abilityHidden = ABILITY_WATER_VEIL, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MANTYKE] = @@ -11691,6 +12152,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_WATER_ABSORB}, .abilityHidden = ABILITY_WATER_VEIL, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SNOVER] = @@ -11717,6 +12179,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SNOW_WARNING, ABILITY_NONE}, .abilityHidden = ABILITY_SOUNDPROOF, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_ABOMASNOW] = @@ -11743,6 +12206,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SNOW_WARNING, ABILITY_NONE}, .abilityHidden = ABILITY_SOUNDPROOF, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_WEAVILE] = @@ -11770,6 +12234,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRESSURE, ABILITY_NONE}, .abilityHidden = ABILITY_PICKPOCKET, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_MAGNEZONE] = @@ -11795,6 +12260,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_MAGNET_PULL, ABILITY_STURDY}, .abilityHidden = ABILITY_ANALYTIC, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_LICKILICKY] = @@ -11821,6 +12287,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OWN_TEMPO, ABILITY_OBLIVIOUS}, .abilityHidden = ABILITY_CLOUD_NINE, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_RHYPERIOR] = @@ -11846,6 +12313,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LIGHTNING_ROD, ABILITY_SOLID_ROCK}, .abilityHidden = ABILITY_RECKLESS, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_TANGROWTH] = @@ -11871,6 +12339,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_LEAF_GUARD}, .abilityHidden = ABILITY_REGENERATOR, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_ELECTIVIRE] = @@ -11897,6 +12366,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_MOTOR_DRIVE, ABILITY_NONE}, .abilityHidden = ABILITY_VITAL_SPIRIT, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_MAGMORTAR] = @@ -11922,6 +12392,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FLAME_BODY, ABILITY_NONE}, .abilityHidden = ABILITY_VITAL_SPIRIT, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_TOGEKISS] = @@ -11947,6 +12418,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HUSTLE, ABILITY_SERENE_GRACE}, .abilityHidden = ABILITY_SUPER_LUCK, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_YANMEGA] = @@ -11973,6 +12445,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SPEED_BOOST, ABILITY_TINTED_LENS}, .abilityHidden = ABILITY_FRISK, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_LEAFEON] = @@ -11998,6 +12471,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LEAF_GUARD, ABILITY_LEAF_GUARD}, .abilityHidden = ABILITY_CHLOROPHYLL, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_GLACEON] = @@ -12022,6 +12496,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SNOW_CLOAK, ABILITY_SNOW_CLOAK}, .abilityHidden = ABILITY_ICE_BODY, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_GLISCOR] = @@ -12047,6 +12522,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HYPER_CUTTER, ABILITY_SAND_VEIL}, .abilityHidden = ABILITY_POISON_HEAL, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_MAMOSWINE] = @@ -12072,6 +12548,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OBLIVIOUS, ABILITY_SNOW_CLOAK}, .abilityHidden = ABILITY_THICK_FAT, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_PORYGON_Z] = @@ -12096,6 +12573,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ADAPTABILITY, ABILITY_DOWNLOAD}, .abilityHidden = ABILITY_ANALYTIC, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_GALLADE] = @@ -12121,6 +12599,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STEADFAST, ABILITY_NONE}, .abilityHidden = ABILITY_JUSTIFIED, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_PROBOPASS] = @@ -12148,6 +12627,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STURDY, ABILITY_MAGNET_PULL}, .abilityHidden = ABILITY_SAND_FORCE, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_DUSKNOIR] = @@ -12175,6 +12655,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRESSURE, ABILITY_NONE}, .abilityHidden = ABILITY_FRISK, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_FROSLASS] = @@ -12200,6 +12681,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SNOW_CLOAK, ABILITY_NONE}, .abilityHidden = ABILITY_CURSED_BODY, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_ROTOM] = @@ -12224,6 +12706,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_ROTOM_HEAT] = @@ -12248,6 +12731,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_ROTOM_WASH] = @@ -12272,6 +12756,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_ROTOM_FROST] = @@ -12296,6 +12781,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_ROTOM_FAN] = @@ -12320,6 +12806,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_ROTOM_MOW] = @@ -12344,6 +12831,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_UXIE] = @@ -12369,6 +12857,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_MESPRIT] = @@ -12394,6 +12883,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_AZELF] = @@ -12418,6 +12908,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_DIALGA] = @@ -12442,6 +12933,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRESSURE, ABILITY_NONE}, .abilityHidden = ABILITY_TELEPATHY, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_PALKIA] = @@ -12466,6 +12958,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRESSURE, ABILITY_NONE}, .abilityHidden = ABILITY_TELEPATHY, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_HEATRAN] = @@ -12490,6 +12983,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FLASH_FIRE, ABILITY_NONE}, .abilityHidden = ABILITY_FLAME_BODY, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_REGIGIGAS] = @@ -12514,6 +13008,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_SLOW_START, ABILITY_NONE}, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_GIRATINA] = @@ -12539,6 +13034,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRESSURE, ABILITY_NONE}, .abilityHidden = ABILITY_TELEPATHY, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_CRESSELIA] = @@ -12563,6 +13059,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_PHIONE] = @@ -12587,6 +13084,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FAIRY, .abilities = {ABILITY_HYDRATION, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MANAPHY] = @@ -12611,6 +13109,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FAIRY, .abilities = {ABILITY_HYDRATION, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_DARKRAI] = @@ -12635,6 +13134,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_BAD_DREAMS, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_SHAYMIN] = @@ -12661,6 +13161,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_NATURAL_CURE, ABILITY_NONE}, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_ARCEUS] = @@ -12685,6 +13186,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_MULTITYPE, ABILITY_NONE}, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_VICTINI] = @@ -12709,6 +13211,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_VICTORY_STAR, ABILITY_NONE}, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = TRUE, }, [SPECIES_SNIVY] = @@ -12734,6 +13237,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_CONTRARY, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_SERVINE] = @@ -12759,6 +13263,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_CONTRARY, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_SERPERIOR] = @@ -12784,6 +13289,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_CONTRARY, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_TEPIG] = @@ -12809,6 +13315,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_THICK_FAT, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_PIGNITE] = @@ -12834,6 +13341,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_THICK_FAT, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_EMBOAR] = @@ -12859,6 +13367,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_RECKLESS, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_OSHAWOTT] = @@ -12883,6 +13392,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_SHELL_ARMOR, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_DEWOTT] = @@ -12907,6 +13417,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_SHELL_ARMOR, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SAMUROTT] = @@ -12931,6 +13442,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_SHELL_ARMOR, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_PATRAT] = @@ -12956,6 +13468,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RUN_AWAY, ABILITY_KEEN_EYE}, .abilityHidden = ABILITY_ANALYTIC, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_WATCHOG] = @@ -12981,6 +13494,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ILLUMINATE, ABILITY_KEEN_EYE}, .abilityHidden = ABILITY_ANALYTIC, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_LILLIPUP] = @@ -13006,6 +13520,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_VITAL_SPIRIT, ABILITY_PICKUP}, .abilityHidden = ABILITY_RUN_AWAY, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_HERDIER] = @@ -13031,6 +13546,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INTIMIDATE, ABILITY_SAND_RUSH}, .abilityHidden = ABILITY_SCRAPPY, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_STOUTLAND] = @@ -13056,6 +13572,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INTIMIDATE, ABILITY_SAND_RUSH}, .abilityHidden = ABILITY_SCRAPPY, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_PURRLOIN] = @@ -13081,6 +13598,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LIMBER, ABILITY_UNBURDEN}, .abilityHidden = ABILITY_PRANKSTER, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_LIEPARD] = @@ -13106,6 +13624,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LIMBER, ABILITY_UNBURDEN}, .abilityHidden = ABILITY_PRANKSTER, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_PANSAGE] = @@ -13131,6 +13650,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GLUTTONY, ABILITY_NONE}, .abilityHidden = ABILITY_OVERGROW, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_SIMISAGE] = @@ -13156,6 +13676,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GLUTTONY, ABILITY_NONE}, .abilityHidden = ABILITY_OVERGROW, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_PANSEAR] = @@ -13181,6 +13702,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GLUTTONY, ABILITY_NONE}, .abilityHidden = ABILITY_BLAZE, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_SIMISEAR] = @@ -13206,6 +13728,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GLUTTONY, ABILITY_NONE}, .abilityHidden = ABILITY_BLAZE, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_PANPOUR] = @@ -13231,6 +13754,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GLUTTONY, ABILITY_NONE}, .abilityHidden = ABILITY_TORRENT, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SIMIPOUR] = @@ -13256,6 +13780,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GLUTTONY, ABILITY_NONE}, .abilityHidden = ABILITY_TORRENT, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MUNNA] = @@ -13281,6 +13806,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FOREWARN, ABILITY_SYNCHRONIZE}, .abilityHidden = ABILITY_TELEPATHY, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_MUSHARNA] = @@ -13306,6 +13832,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FOREWARN, ABILITY_SYNCHRONIZE}, .abilityHidden = ABILITY_TELEPATHY, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_PIDOVE] = @@ -13331,6 +13858,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BIG_PECKS, ABILITY_SUPER_LUCK}, .abilityHidden = ABILITY_RIVALRY, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_TRANQUILL] = @@ -13356,6 +13884,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BIG_PECKS, ABILITY_SUPER_LUCK}, .abilityHidden = ABILITY_RIVALRY, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_UNFEZANT] = @@ -13381,6 +13910,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BIG_PECKS, ABILITY_SUPER_LUCK}, .abilityHidden = ABILITY_RIVALRY, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_BLITZLE] = @@ -13406,6 +13936,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LIGHTNING_ROD, ABILITY_MOTOR_DRIVE}, .abilityHidden = ABILITY_SAP_SIPPER, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_ZEBSTRIKA] = @@ -13431,6 +13962,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LIGHTNING_ROD, ABILITY_MOTOR_DRIVE}, .abilityHidden = ABILITY_SAP_SIPPER, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_ROGGENROLA] = @@ -13458,6 +13990,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STURDY, ABILITY_WEAK_ARMOR}, .abilityHidden = ABILITY_SAND_FORCE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_BOLDORE] = @@ -13486,6 +14019,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STURDY, ABILITY_WEAK_ARMOR}, .abilityHidden = ABILITY_SAND_FORCE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_GIGALITH] = @@ -13513,6 +14047,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STURDY, ABILITY_SAND_STREAM}, .abilityHidden = ABILITY_SAND_FORCE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_WOOBAT] = @@ -13538,6 +14073,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_UNAWARE, ABILITY_KLUTZ}, .abilityHidden = ABILITY_SIMPLE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SWOOBAT] = @@ -13563,6 +14099,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_UNAWARE, ABILITY_KLUTZ}, .abilityHidden = ABILITY_SIMPLE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_DRILBUR] = @@ -13588,6 +14125,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAND_RUSH, ABILITY_SAND_FORCE}, .abilityHidden = ABILITY_MOLD_BREAKER, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_EXCADRILL] = @@ -13613,6 +14151,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAND_RUSH, ABILITY_SAND_FORCE}, .abilityHidden = ABILITY_MOLD_BREAKER, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_AUDINO] = @@ -13640,6 +14179,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HEALER, ABILITY_REGENERATOR}, .abilityHidden = ABILITY_KLUTZ, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_TIMBURR] = @@ -13665,6 +14205,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GUTS, ABILITY_SHEER_FORCE}, .abilityHidden = ABILITY_IRON_FIST, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_GURDURR] = @@ -13690,6 +14231,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GUTS, ABILITY_SHEER_FORCE}, .abilityHidden = ABILITY_IRON_FIST, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_CONKELDURR] = @@ -13715,6 +14257,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GUTS, ABILITY_SHEER_FORCE}, .abilityHidden = ABILITY_IRON_FIST, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_TYMPOLE] = @@ -13740,6 +14283,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_HYDRATION}, .abilityHidden = ABILITY_WATER_ABSORB, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_PALPITOAD] = @@ -13765,6 +14309,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_HYDRATION}, .abilityHidden = ABILITY_WATER_ABSORB, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SEISMITOAD] = @@ -13790,6 +14335,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWIFT_SWIM, ABILITY_POISON_TOUCH}, .abilityHidden = ABILITY_WATER_ABSORB, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_THROH] = @@ -13816,6 +14362,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GUTS, ABILITY_INNER_FOCUS}, .abilityHidden = ABILITY_MOLD_BREAKER, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_SAWK] = @@ -13842,6 +14389,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STURDY, ABILITY_INNER_FOCUS}, .abilityHidden = ABILITY_MOLD_BREAKER, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SEWADDLE] = @@ -13868,6 +14416,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWARM, ABILITY_CHLOROPHYLL}, .abilityHidden = ABILITY_OVERCOAT, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_SWADLOON] = @@ -13894,6 +14443,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LEAF_GUARD, ABILITY_CHLOROPHYLL}, .abilityHidden = ABILITY_OVERCOAT, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_LEAVANNY] = @@ -13920,6 +14470,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWARM, ABILITY_CHLOROPHYLL}, .abilityHidden = ABILITY_OVERCOAT, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_VENIPEDE] = @@ -13946,6 +14497,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_POISON_POINT, ABILITY_SWARM}, .abilityHidden = ABILITY_SPEED_BOOST, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_WHIRLIPEDE] = @@ -13972,6 +14524,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_POISON_POINT, ABILITY_SWARM}, .abilityHidden = ABILITY_SPEED_BOOST, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_SCOLIPEDE] = @@ -13998,6 +14551,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_POISON_POINT, ABILITY_SWARM}, .abilityHidden = ABILITY_SPEED_BOOST, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_COTTONEE] = @@ -14024,6 +14578,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRANKSTER, ABILITY_INFILTRATOR}, .abilityHidden = ABILITY_CHLOROPHYLL, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_WHIMSICOTT] = @@ -14050,6 +14605,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRANKSTER, ABILITY_INFILTRATOR}, .abilityHidden = ABILITY_CHLOROPHYLL, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_PETILIL] = @@ -14075,6 +14631,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_OWN_TEMPO}, .abilityHidden = ABILITY_LEAF_GUARD, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_LILLIGANT] = @@ -14100,6 +14657,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_OWN_TEMPO}, .abilityHidden = ABILITY_LEAF_GUARD, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_BASCULIN] = @@ -14126,6 +14684,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RECKLESS, ABILITY_ADAPTABILITY}, .abilityHidden = ABILITY_MOLD_BREAKER, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_SANDILE] = @@ -14152,6 +14711,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INTIMIDATE, ABILITY_MOXIE}, .abilityHidden = ABILITY_ANGER_POINT, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_KROKOROK] = @@ -14178,6 +14738,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INTIMIDATE, ABILITY_MOXIE}, .abilityHidden = ABILITY_ANGER_POINT, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_KROOKODILE] = @@ -14204,6 +14765,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INTIMIDATE, ABILITY_MOXIE}, .abilityHidden = ABILITY_ANGER_POINT, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_DARUMAKA] = @@ -14229,6 +14791,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HUSTLE, ABILITY_NONE}, .abilityHidden = ABILITY_INNER_FOCUS, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_DARMANITAN] = @@ -14254,6 +14817,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHEER_FORCE, ABILITY_NONE}, .abilityHidden = ABILITY_ZEN_MODE, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_MARACTUS] = @@ -14279,6 +14843,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_WATER_ABSORB, ABILITY_CHLOROPHYLL}, .abilityHidden = ABILITY_STORM_DRAIN, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_DWEBBLE] = @@ -14305,6 +14870,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STURDY, ABILITY_SHELL_ARMOR}, .abilityHidden = ABILITY_WEAK_ARMOR, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_CRUSTLE] = @@ -14331,6 +14897,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STURDY, ABILITY_SHELL_ARMOR}, .abilityHidden = ABILITY_WEAK_ARMOR, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_SCRAGGY] = @@ -14357,6 +14924,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHED_SKIN, ABILITY_MOXIE}, .abilityHidden = ABILITY_INTIMIDATE, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_SCRAFTY] = @@ -14384,6 +14952,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHED_SKIN, ABILITY_MOXIE}, .abilityHidden = ABILITY_INTIMIDATE, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_SIGILYPH] = @@ -14408,6 +14977,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_WONDER_SKIN, ABILITY_MAGIC_GUARD}, .abilityHidden = ABILITY_TINTED_LENS, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_YAMASK] = @@ -14433,6 +15003,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_MUMMY, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_COFAGRIGUS] = @@ -14458,6 +15029,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_MUMMY, ABILITY_NONE}, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_TIRTOUGA] = @@ -14483,6 +15055,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SOLID_ROCK, ABILITY_STURDY}, .abilityHidden = ABILITY_SWIFT_SWIM, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_CARRACOSTA] = @@ -14508,6 +15081,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SOLID_ROCK, ABILITY_STURDY}, .abilityHidden = ABILITY_SWIFT_SWIM, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_ARCHEN] = @@ -14532,6 +15106,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_WATER_3, .abilities = {ABILITY_DEFEATIST, ABILITY_NONE}, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_ARCHEOPS] = @@ -14556,6 +15131,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_WATER_3, .abilities = {ABILITY_DEFEATIST, ABILITY_NONE}, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_TRUBBISH] = @@ -14582,6 +15158,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STENCH, ABILITY_STICKY_HOLD}, .abilityHidden = ABILITY_AFTERMATH, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_GARBODOR] = @@ -14609,6 +15186,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STENCH, ABILITY_WEAK_ARMOR}, .abilityHidden = ABILITY_AFTERMATH, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_ZORUA] = @@ -14632,6 +15210,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FIELD, .abilities = {ABILITY_ILLUSION, ABILITY_NONE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_ZOROARK] = @@ -14655,6 +15234,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FIELD, .abilities = {ABILITY_ILLUSION, ABILITY_NONE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_MINCCINO] = @@ -14680,6 +15260,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CUTE_CHARM, ABILITY_TECHNICIAN}, .abilityHidden = ABILITY_SKILL_LINK, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_CINCCINO] = @@ -14705,6 +15286,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CUTE_CHARM, ABILITY_TECHNICIAN}, .abilityHidden = ABILITY_SKILL_LINK, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_GOTHITA] = @@ -14730,6 +15312,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FRISK, ABILITY_COMPETITIVE}, .abilityHidden = ABILITY_SHADOW_TAG, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_GOTHORITA] = @@ -14755,6 +15338,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FRISK, ABILITY_COMPETITIVE}, .abilityHidden = ABILITY_SHADOW_TAG, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_GOTHITELLE] = @@ -14780,6 +15364,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FRISK, ABILITY_COMPETITIVE}, .abilityHidden = ABILITY_SHADOW_TAG, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_SOLOSIS] = @@ -14804,6 +15389,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERCOAT, ABILITY_MAGIC_GUARD}, .abilityHidden = ABILITY_REGENERATOR, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_DUOSION] = @@ -14828,6 +15414,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERCOAT, ABILITY_MAGIC_GUARD}, .abilityHidden = ABILITY_REGENERATOR, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_REUNICLUS] = @@ -14852,6 +15439,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERCOAT, ABILITY_MAGIC_GUARD}, .abilityHidden = ABILITY_REGENERATOR, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_DUCKLETT] = @@ -14877,6 +15465,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_BIG_PECKS}, .abilityHidden = ABILITY_HYDRATION, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SWANNA] = @@ -14902,6 +15491,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_BIG_PECKS}, .abilityHidden = ABILITY_HYDRATION, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_VANILLITE] = @@ -14927,6 +15517,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ICE_BODY, ABILITY_SNOW_CLOAK}, .abilityHidden = ABILITY_WEAK_ARMOR, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_VANILLISH] = @@ -14952,6 +15543,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ICE_BODY, ABILITY_SNOW_CLOAK}, .abilityHidden = ABILITY_WEAK_ARMOR, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_VANILLUXE] = @@ -14977,6 +15569,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ICE_BODY, ABILITY_SNOW_WARNING}, .abilityHidden = ABILITY_WEAK_ARMOR, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_DEERLING] = @@ -15002,6 +15595,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_SAP_SIPPER}, .abilityHidden = ABILITY_SERENE_GRACE, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_SAWSBUCK] = @@ -15027,6 +15621,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHLOROPHYLL, ABILITY_SAP_SIPPER}, .abilityHidden = ABILITY_SERENE_GRACE, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_EMOLGA] = @@ -15052,6 +15647,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STATIC, ABILITY_NONE}, .abilityHidden = ABILITY_MOTOR_DRIVE, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_KARRABLAST] = @@ -15077,6 +15673,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWARM, ABILITY_SHED_SKIN}, .abilityHidden = ABILITY_NO_GUARD, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_ESCAVALIER] = @@ -15102,6 +15699,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWARM, ABILITY_SHELL_ARMOR}, .abilityHidden = ABILITY_OVERCOAT, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_FOONGUS] = @@ -15129,6 +15727,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_EFFECT_SPORE, ABILITY_NONE}, .abilityHidden = ABILITY_REGENERATOR, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_AMOONGUSS] = @@ -15156,6 +15755,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_EFFECT_SPORE, ABILITY_NONE}, .abilityHidden = ABILITY_REGENERATOR, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_FRILLISH] = @@ -15181,6 +15781,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_WATER_ABSORB, ABILITY_CURSED_BODY}, .abilityHidden = ABILITY_DAMP, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_JELLICENT] = @@ -15206,6 +15807,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_WATER_ABSORB, ABILITY_CURSED_BODY}, .abilityHidden = ABILITY_DAMP, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_ALOMOMOLA] = @@ -15231,6 +15833,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HEALER, ABILITY_HYDRATION}, .abilityHidden = ABILITY_REGENERATOR, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_JOLTIK] = @@ -15256,6 +15859,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_COMPOUND_EYES, ABILITY_UNNERVE}, .abilityHidden = ABILITY_SWARM, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_GALVANTULA] = @@ -15281,6 +15885,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_COMPOUND_EYES, ABILITY_UNNERVE}, .abilityHidden = ABILITY_SWARM, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_FERROSEED] = @@ -15306,6 +15911,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MINERAL, .abilities = {ABILITY_IRON_BARBS, ABILITY_NONE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_FERROTHORN] = @@ -15332,6 +15938,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_IRON_BARBS, ABILITY_NONE}, .abilityHidden = ABILITY_ANTICIPATION, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_KLINK] = @@ -15357,6 +15964,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PLUS, ABILITY_MINUS}, .abilityHidden = ABILITY_CLEAR_BODY, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_KLANG] = @@ -15382,6 +15990,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PLUS, ABILITY_MINUS}, .abilityHidden = ABILITY_CLEAR_BODY, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_KLINKLANG] = @@ -15407,6 +16016,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PLUS, ABILITY_MINUS}, .abilityHidden = ABILITY_CLEAR_BODY, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_TYNAMO] = @@ -15431,6 +16041,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_EELEKTRIK] = @@ -15455,6 +16066,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_EELEKTROSS] = @@ -15479,6 +16091,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_ELGYEM] = @@ -15503,6 +16116,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TELEPATHY, ABILITY_SYNCHRONIZE}, .abilityHidden = ABILITY_ANALYTIC, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_BEHEEYEM] = @@ -15527,6 +16141,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TELEPATHY, ABILITY_SYNCHRONIZE}, .abilityHidden = ABILITY_ANALYTIC, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_LITWICK] = @@ -15551,6 +16166,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FLASH_FIRE, ABILITY_FLAME_BODY}, .abilityHidden = ABILITY_INFILTRATOR, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_LAMPENT] = @@ -15575,6 +16191,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FLASH_FIRE, ABILITY_FLAME_BODY}, .abilityHidden = ABILITY_INFILTRATOR, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_CHANDELURE] = @@ -15599,6 +16216,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FLASH_FIRE, ABILITY_FLAME_BODY}, .abilityHidden = ABILITY_INFILTRATOR, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_AXEW] = @@ -15624,6 +16242,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RIVALRY, ABILITY_MOLD_BREAKER}, .abilityHidden = ABILITY_UNNERVE, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_FRAXURE] = @@ -15649,6 +16268,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RIVALRY, ABILITY_MOLD_BREAKER}, .abilityHidden = ABILITY_UNNERVE, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_HAXORUS] = @@ -15674,6 +16294,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RIVALRY, ABILITY_MOLD_BREAKER}, .abilityHidden = ABILITY_UNNERVE, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_CUBCHOO] = @@ -15699,6 +16320,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SNOW_CLOAK, ABILITY_SLUSH_RUSH}, .abilityHidden = ABILITY_RATTLED, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_BEARTIC] = @@ -15724,6 +16346,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SNOW_CLOAK, ABILITY_SLUSH_RUSH}, .abilityHidden = ABILITY_SWIFT_SWIM, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_CRYOGONAL] = @@ -15749,6 +16372,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MINERAL, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SHELMET] = @@ -15774,6 +16398,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HYDRATION, ABILITY_SHELL_ARMOR}, .abilityHidden = ABILITY_OVERCOAT, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_ACCELGOR] = @@ -15799,6 +16424,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HYDRATION, ABILITY_STICKY_HOLD}, .abilityHidden = ABILITY_UNBURDEN, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_STUNFISK] = @@ -15825,6 +16451,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STATIC, ABILITY_LIMBER}, .abilityHidden = ABILITY_SAND_VEIL, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_MIENFOO] = @@ -15850,6 +16477,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INNER_FOCUS, ABILITY_REGENERATOR}, .abilityHidden = ABILITY_RECKLESS, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_MIENSHAO] = @@ -15875,6 +16503,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INNER_FOCUS, ABILITY_REGENERATOR}, .abilityHidden = ABILITY_RECKLESS, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_DRUDDIGON] = @@ -15901,6 +16530,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ROUGH_SKIN, ABILITY_SHEER_FORCE}, .abilityHidden = ABILITY_MOLD_BREAKER, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_GOLETT] = @@ -15927,6 +16557,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_IRON_FIST, ABILITY_KLUTZ}, .abilityHidden = ABILITY_NO_GUARD, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_GOLURK] = @@ -15953,6 +16584,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_IRON_FIST, ABILITY_KLUTZ}, .abilityHidden = ABILITY_NO_GUARD, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_PAWNIARD] = @@ -15978,6 +16610,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_DEFIANT, ABILITY_INNER_FOCUS}, .abilityHidden = ABILITY_PRESSURE, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_BISHARP] = @@ -16003,6 +16636,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_DEFIANT, ABILITY_INNER_FOCUS}, .abilityHidden = ABILITY_PRESSURE, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_BOUFFALANT] = @@ -16028,6 +16662,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RECKLESS, ABILITY_SAP_SIPPER}, .abilityHidden = ABILITY_SOUNDPROOF, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_RUFFLET] = @@ -16053,6 +16688,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_SHEER_FORCE}, .abilityHidden = ABILITY_HUSTLE, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_BRAVIARY] = @@ -16078,6 +16714,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_SHEER_FORCE}, .abilityHidden = ABILITY_DEFIANT, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_VULLABY] = @@ -16103,6 +16740,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BIG_PECKS, ABILITY_OVERCOAT}, .abilityHidden = ABILITY_WEAK_ARMOR, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_MANDIBUZZ] = @@ -16127,6 +16765,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BIG_PECKS, ABILITY_OVERCOAT}, .abilityHidden = ABILITY_WEAK_ARMOR, .bodyColor = BODY_COLOR_BROWN, + .noFlip = TRUE, }, [SPECIES_HEATMOR] = @@ -16151,6 +16790,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GLUTTONY, ABILITY_FLASH_FIRE}, .abilityHidden = ABILITY_WHITE_SMOKE, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_DURANT] = @@ -16176,6 +16816,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWARM, ABILITY_HUSTLE}, .abilityHidden = ABILITY_TRUANT, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_DEINO] = @@ -16200,6 +16841,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_DRAGON, .abilities = {ABILITY_HUSTLE, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_ZWEILOUS] = @@ -16224,6 +16866,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_DRAGON, .abilities = {ABILITY_HUSTLE, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_HYDREIGON] = @@ -16247,6 +16890,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_DRAGON, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_LARVESTA] = @@ -16272,6 +16916,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FLAME_BODY, ABILITY_NONE}, .abilityHidden = ABILITY_SWARM, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_VOLCARONA] = @@ -16298,6 +16943,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FLAME_BODY, ABILITY_NONE}, .abilityHidden = ABILITY_SWARM, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_COBALION] = @@ -16322,6 +16968,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_JUSTIFIED, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_TERRAKION] = @@ -16346,6 +16993,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_JUSTIFIED, ABILITY_NONE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_VIRIZION] = @@ -16370,6 +17018,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_JUSTIFIED, ABILITY_NONE}, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_TORNADUS] = @@ -16395,6 +17044,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRANKSTER, ABILITY_NONE}, .abilityHidden = ABILITY_DEFIANT, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_THUNDURUS] = @@ -16420,6 +17070,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRANKSTER, ABILITY_NONE}, .abilityHidden = ABILITY_DEFIANT, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_RESHIRAM] = @@ -16443,6 +17094,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_TURBOBLAZE, ABILITY_NONE}, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_ZEKROM] = @@ -16467,6 +17119,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_TERAVOLT, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_LANDORUS] = @@ -16491,6 +17144,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAND_FORCE, ABILITY_NONE}, .abilityHidden = ABILITY_SHEER_FORCE, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_KYUREM] = @@ -16516,6 +17170,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_PRESSURE, ABILITY_NONE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_KYUREM_WHITE] = @@ -16539,6 +17194,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_TURBOBLAZE, ABILITY_NONE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_KYUREM_BLACK] = @@ -16562,6 +17218,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_TERAVOLT, ABILITY_NONE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_KELDEO] = @@ -16585,6 +17242,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_JUSTIFIED, ABILITY_NONE}, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_MELOETTA] = @@ -16612,6 +17270,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_SERENE_GRACE, ABILITY_NONE}, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_GENESECT] = @@ -16637,6 +17296,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_DOWNLOAD, ABILITY_NONE}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_CHESPIN] = @@ -16662,6 +17322,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_BULLETPROOF, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_QUILLADIN] = @@ -16687,6 +17348,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_BULLETPROOF, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_CHESNAUGHT] = @@ -16712,6 +17374,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_BULLETPROOF, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_FENNEKIN] = @@ -16736,6 +17399,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_MAGICIAN, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_BRAIXEN] = @@ -16760,6 +17424,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_MAGICIAN, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_DELPHOX] = @@ -16784,6 +17449,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_MAGICIAN, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_FROAKIE] = @@ -16809,6 +17475,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_PROTEAN, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_FROGADIER] = @@ -16834,6 +17501,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_PROTEAN, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_GRENINJA] = @@ -16859,6 +17527,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_PROTEAN, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_BUNNELBY] = @@ -16884,6 +17553,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PICKUP, ABILITY_CHEEK_POUCH}, .abilityHidden = ABILITY_HUGE_POWER, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_DIGGERSBY] = @@ -16909,6 +17579,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PICKUP, ABILITY_CHEEK_POUCH}, .abilityHidden = ABILITY_HUGE_POWER, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_FLETCHLING] = @@ -16934,6 +17605,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BIG_PECKS, ABILITY_NONE}, .abilityHidden = ABILITY_GALE_WINGS, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_FLETCHINDER] = @@ -16959,6 +17631,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FLAME_BODY, ABILITY_NONE}, .abilityHidden = ABILITY_GALE_WINGS, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_TALONFLAME] = @@ -16984,6 +17657,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FLAME_BODY, ABILITY_NONE}, .abilityHidden = ABILITY_GALE_WINGS, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_SCATTERBUG] = @@ -17009,6 +17683,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHIELD_DUST, ABILITY_COMPOUND_EYES}, .abilityHidden = ABILITY_FRIEND_GUARD, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_SPEWPA] = @@ -17034,6 +17709,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHED_SKIN, ABILITY_NONE}, .abilityHidden = ABILITY_FRIEND_GUARD, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_VIVILLON] = @@ -17060,6 +17736,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SHIELD_DUST, ABILITY_COMPOUND_EYES}, .abilityHidden = ABILITY_FRIEND_GUARD, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_LITLEO] = @@ -17083,6 +17760,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RIVALRY, ABILITY_UNNERVE}, .abilityHidden = ABILITY_MOXIE, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_PYROAR] = @@ -17106,6 +17784,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RIVALRY, ABILITY_UNNERVE}, .abilityHidden = ABILITY_MOXIE, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_FLABEBE] = @@ -17131,6 +17810,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FLOWER_VEIL, ABILITY_NONE}, .abilityHidden = ABILITY_SYMBIOSIS, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_FLOETTE] = @@ -17156,6 +17836,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FLOWER_VEIL, ABILITY_NONE}, .abilityHidden = ABILITY_SYMBIOSIS, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_FLORGES] = @@ -17181,6 +17862,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FLOWER_VEIL, ABILITY_NONE}, .abilityHidden = ABILITY_SYMBIOSIS, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_SKIDDO] = @@ -17206,6 +17888,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAP_SIPPER, ABILITY_NONE}, .abilityHidden = ABILITY_GRASS_PELT, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_GOGOAT] = @@ -17231,6 +17914,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAP_SIPPER, ABILITY_NONE}, .abilityHidden = ABILITY_GRASS_PELT, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_PANCHAM] = @@ -17257,6 +17941,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_IRON_FIST, ABILITY_MOLD_BREAKER}, .abilityHidden = ABILITY_SCRAPPY, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_PANGORO] = @@ -17283,6 +17968,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_IRON_FIST, ABILITY_MOLD_BREAKER}, .abilityHidden = ABILITY_SCRAPPY, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_FURFROU] = @@ -17307,6 +17993,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FIELD, .abilities = {ABILITY_FUR_COAT, ABILITY_NONE}, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_ESPURR] = @@ -17332,6 +18019,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_INFILTRATOR}, .abilityHidden = ABILITY_OWN_TEMPO, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_MEOWSTIC] = @@ -17357,6 +18045,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_INFILTRATOR}, .abilityHidden = ABILITY_PRANKSTER, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MEOWSTIC_F] = @@ -17381,6 +18070,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_INFILTRATOR}, .abilityHidden = ABILITY_COMPETITIVE, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_HONEDGE] = @@ -17405,6 +18095,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MINERAL, .abilities = {ABILITY_NO_GUARD, ABILITY_NONE}, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_DOUBLADE] = @@ -17429,6 +18120,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MINERAL, .abilities = {ABILITY_NO_GUARD, ABILITY_NONE}, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_AEGISLASH] = @@ -17454,6 +18146,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MINERAL, .abilities = {ABILITY_STANCE_CHANGE, ABILITY_NONE}, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_SPRITZEE] = @@ -17479,6 +18172,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HEALER, ABILITY_NONE}, .abilityHidden = ABILITY_AROMA_VEIL, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_AROMATISSE] = @@ -17504,6 +18198,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HEALER, ABILITY_NONE}, .abilityHidden = ABILITY_AROMA_VEIL, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_SWIRLIX] = @@ -17529,6 +18224,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWEET_VEIL, ABILITY_NONE}, .abilityHidden = ABILITY_UNBURDEN, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_SLURPUFF] = @@ -17554,6 +18250,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SWEET_VEIL, ABILITY_NONE}, .abilityHidden = ABILITY_UNBURDEN, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_INKAY] = @@ -17579,6 +18276,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CONTRARY, ABILITY_SUCTION_CUPS}, .abilityHidden = ABILITY_INFILTRATOR, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MALAMAR] = @@ -17604,6 +18302,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CONTRARY, ABILITY_SUCTION_CUPS}, .abilityHidden = ABILITY_INFILTRATOR, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_BINACLE] = @@ -17629,6 +18328,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TOUGH_CLAWS, ABILITY_SNIPER}, .abilityHidden = ABILITY_PICKPOCKET, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_BARBARACLE] = @@ -17654,6 +18354,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TOUGH_CLAWS, ABILITY_SNIPER}, .abilityHidden = ABILITY_PICKPOCKET, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_SKRELP] = @@ -17679,6 +18380,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_POISON_POINT, ABILITY_POISON_TOUCH}, .abilityHidden = ABILITY_ADAPTABILITY, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_DRAGALGE] = @@ -17704,6 +18406,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_POISON_POINT, ABILITY_POISON_TOUCH}, .abilityHidden = ABILITY_ADAPTABILITY, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_CLAUNCHER] = @@ -17727,6 +18430,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_WATER_3, .abilities = {ABILITY_MEGA_LAUNCHER, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_CLAWITZER] = @@ -17750,6 +18454,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_WATER_3, .abilities = {ABILITY_MEGA_LAUNCHER, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_HELIOPTILE] = @@ -17775,6 +18480,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_DRY_SKIN, ABILITY_SAND_VEIL}, .abilityHidden = ABILITY_SOLAR_POWER, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_HELIOLISK] = @@ -17800,6 +18506,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_DRY_SKIN, ABILITY_SAND_VEIL}, .abilityHidden = ABILITY_SOLAR_POWER, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_TYRUNT] = @@ -17825,6 +18532,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STRONG_JAW, ABILITY_NONE}, .abilityHidden = ABILITY_STURDY, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_TYRANTRUM] = @@ -17850,6 +18558,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STRONG_JAW, ABILITY_NONE}, .abilityHidden = ABILITY_ROCK_HEAD, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_AMAURA] = @@ -17875,6 +18584,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_REFRIGERATE, ABILITY_NONE}, .abilityHidden = ABILITY_SNOW_WARNING, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_AURORUS] = @@ -17900,6 +18610,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_REFRIGERATE, ABILITY_NONE}, .abilityHidden = ABILITY_SNOW_WARNING, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SYLVEON] = @@ -17925,6 +18636,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CUTE_CHARM, ABILITY_CUTE_CHARM}, .abilityHidden = ABILITY_PIXILATE, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_HAWLUCHA] = @@ -17951,6 +18663,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LIMBER, ABILITY_UNBURDEN}, .abilityHidden = ABILITY_MOLD_BREAKER, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_DEDENNE] = @@ -17976,6 +18689,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CHEEK_POUCH, ABILITY_PICKUP}, .abilityHidden = ABILITY_PLUS, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_CARBINK] = @@ -18002,6 +18716,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CLEAR_BODY, ABILITY_NONE}, .abilityHidden = ABILITY_STURDY, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_GOOMY] = @@ -18028,6 +18743,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAP_SIPPER, ABILITY_HYDRATION}, .abilityHidden = ABILITY_GOOEY, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_SLIGGOO] = @@ -18054,6 +18770,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAP_SIPPER, ABILITY_HYDRATION}, .abilityHidden = ABILITY_GOOEY, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_GOODRA] = @@ -18079,6 +18796,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAP_SIPPER, ABILITY_HYDRATION}, .abilityHidden = ABILITY_GOOEY, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_KLEFKI] = @@ -18104,6 +18822,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PRANKSTER, ABILITY_NONE}, .abilityHidden = ABILITY_MAGICIAN, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_PHANTUMP] = @@ -18129,6 +18848,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_NATURAL_CURE, ABILITY_FRISK}, .abilityHidden = ABILITY_HARVEST, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_TREVENANT] = @@ -18154,6 +18874,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_NATURAL_CURE, ABILITY_FRISK}, .abilityHidden = ABILITY_HARVEST, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_PUMPKABOO] = @@ -18179,6 +18900,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PICKUP, ABILITY_FRISK}, .abilityHidden = ABILITY_INSOMNIA, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_GOURGEIST] = @@ -18204,6 +18926,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PICKUP, ABILITY_FRISK}, .abilityHidden = ABILITY_INSOMNIA, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_BERGMITE] = @@ -18229,6 +18952,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OWN_TEMPO, ABILITY_ICE_BODY}, .abilityHidden = ABILITY_STURDY, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_AVALUGG] = @@ -18254,6 +18978,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OWN_TEMPO, ABILITY_ICE_BODY}, .abilityHidden = ABILITY_STURDY, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_NOIBAT] = @@ -18279,6 +19004,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FRISK, ABILITY_INFILTRATOR}, .abilityHidden = ABILITY_TELEPATHY, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_NOIVERN] = @@ -18304,6 +19030,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FRISK, ABILITY_INFILTRATOR}, .abilityHidden = ABILITY_TELEPATHY, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_XERNEAS] = @@ -18328,6 +19055,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_FAIRY_AURA, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_YVELTAL] = @@ -18352,6 +19080,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_DARK_AURA, ABILITY_NONE}, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_ZYGARDE] = @@ -18376,6 +19105,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_AURA_BREAK, ABILITY_NONE}, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_DIANCIE] = @@ -18401,6 +19131,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_CLEAR_BODY, ABILITY_NONE}, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_HOOPA] = @@ -18424,6 +19155,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_MAGICIAN, ABILITY_NONE}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_VOLCANION] = @@ -18447,6 +19179,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_WATER_ABSORB, ABILITY_NONE}, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_ROWLET] = @@ -18472,6 +19205,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_LONG_REACH, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_DARTRIX] = @@ -18497,6 +19231,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_LONG_REACH, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_DECIDUEYE] = @@ -18522,6 +19257,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OVERGROW, ABILITY_NONE}, .abilityHidden = ABILITY_LONG_REACH, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_LITTEN] = @@ -18547,6 +19283,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_INTIMIDATE, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_TORRACAT] = @@ -18572,6 +19309,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_INTIMIDATE, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_INCINEROAR] = @@ -18597,6 +19335,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BLAZE, ABILITY_NONE}, .abilityHidden = ABILITY_INTIMIDATE, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_POPPLIO] = @@ -18621,6 +19360,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_LIQUID_VOICE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_BRIONNE] = @@ -18645,6 +19385,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_LIQUID_VOICE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_PRIMARINA] = @@ -18669,6 +19410,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TORRENT, ABILITY_NONE}, .abilityHidden = ABILITY_LIQUID_VOICE, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_PIKIPEK] = @@ -18695,6 +19437,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_SKILL_LINK}, .abilityHidden = ABILITY_PICKUP, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_TRUMBEAK] = @@ -18721,6 +19464,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_SKILL_LINK}, .abilityHidden = ABILITY_PICKUP, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_TOUCANNON] = @@ -18747,6 +19491,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_SKILL_LINK}, .abilityHidden = ABILITY_SHEER_FORCE, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_YUNGOOS] = @@ -18773,6 +19518,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STAKEOUT, ABILITY_STRONG_JAW}, .abilityHidden = ABILITY_ADAPTABILITY, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_GUMSHOOS] = @@ -18799,6 +19545,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_STAKEOUT, ABILITY_STRONG_JAW}, .abilityHidden = ABILITY_ADAPTABILITY, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_GRUBBIN] = @@ -18823,6 +19570,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_BUG, .abilities = {ABILITY_SWARM, ABILITY_NONE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_CHARJABUG] = @@ -18848,6 +19596,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_BUG, .abilities = {ABILITY_BATTERY, ABILITY_NONE}, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_VIKAVOLT] = @@ -18871,6 +19620,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_BUG, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_CRABRAWLER] = @@ -18897,6 +19647,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HYPER_CUTTER, ABILITY_IRON_FIST}, .abilityHidden = ABILITY_ANGER_POINT, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_CRABOMINABLE] = @@ -18923,6 +19674,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HYPER_CUTTER, ABILITY_IRON_FIST}, .abilityHidden = ABILITY_ANGER_POINT, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_ORICORIO] = @@ -18947,6 +19699,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FLYING, .abilities = {ABILITY_DANCER, ABILITY_NONE}, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_CUTIEFLY] = @@ -18973,6 +19726,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HONEY_GATHER, ABILITY_SHIELD_DUST}, .abilityHidden = ABILITY_SWEET_VEIL, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_RIBOMBEE] = @@ -18999,6 +19753,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_HONEY_GATHER, ABILITY_SHIELD_DUST}, .abilityHidden = ABILITY_SWEET_VEIL, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_ROCKRUFF] = @@ -19024,6 +19779,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_VITAL_SPIRIT}, .abilityHidden = ABILITY_STEADFAST, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_LYCANROC] = @@ -19049,6 +19805,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_SAND_RUSH}, .abilityHidden = ABILITY_STEADFAST, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_WISHIWASHI] = @@ -19073,6 +19830,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_WATER_2, .abilities = {ABILITY_SCHOOLING, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MAREANIE] = @@ -19099,6 +19857,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_MERCILESS, ABILITY_LIMBER}, .abilityHidden = ABILITY_REGENERATOR, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_TOXAPEX] = @@ -19125,6 +19884,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_MERCILESS, ABILITY_LIMBER}, .abilityHidden = ABILITY_REGENERATOR, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MUDBRAY] = @@ -19151,6 +19911,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OWN_TEMPO, ABILITY_STAMINA}, .abilityHidden = ABILITY_INNER_FOCUS, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_MUDSDALE] = @@ -19177,6 +19938,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_OWN_TEMPO, ABILITY_STAMINA}, .abilityHidden = ABILITY_INNER_FOCUS, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_DEWPIDER] = @@ -19203,6 +19965,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_WATER_BUBBLE, ABILITY_NONE}, .abilityHidden = ABILITY_WATER_ABSORB, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_ARAQUANID] = @@ -19229,6 +19992,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_WATER_BUBBLE, ABILITY_NONE}, .abilityHidden = ABILITY_WATER_ABSORB, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_FOMANTIS] = @@ -19255,6 +20019,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LEAF_GUARD, ABILITY_NONE}, .abilityHidden = ABILITY_CONTRARY, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_LURANTIS] = @@ -19281,6 +20046,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LEAF_GUARD, ABILITY_NONE}, .abilityHidden = ABILITY_CONTRARY, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_MORELULL] = @@ -19308,6 +20074,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ILLUMINATE, ABILITY_EFFECT_SPORE}, .abilityHidden = ABILITY_RAIN_DISH, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_SHIINOTIC] = @@ -19335,6 +20102,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ILLUMINATE, ABILITY_EFFECT_SPORE}, .abilityHidden = ABILITY_RAIN_DISH, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_SALANDIT] = @@ -19361,6 +20129,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CORROSION, ABILITY_NONE}, .abilityHidden = ABILITY_OBLIVIOUS, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_SALAZZLE] = @@ -19387,6 +20156,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CORROSION, ABILITY_NONE}, .abilityHidden = ABILITY_OBLIVIOUS, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_STUFFUL] = @@ -19412,6 +20182,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FLUFFY, ABILITY_KLUTZ}, .abilityHidden = ABILITY_CUTE_CHARM, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_BEWEAR] = @@ -19437,6 +20208,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FLUFFY, ABILITY_KLUTZ}, .abilityHidden = ABILITY_UNNERVE, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_BOUNSWEET] = @@ -19463,6 +20235,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LEAF_GUARD, ABILITY_OBLIVIOUS}, .abilityHidden = ABILITY_SWEET_VEIL, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_STEENEE] = @@ -19489,6 +20262,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LEAF_GUARD, ABILITY_OBLIVIOUS}, .abilityHidden = ABILITY_SWEET_VEIL, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_TSAREENA] = @@ -19515,6 +20289,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_LEAF_GUARD, ABILITY_QUEENLY_MAJESTY}, .abilityHidden = ABILITY_SWEET_VEIL, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_COMFEY] = @@ -19541,6 +20316,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FLOWER_VEIL, ABILITY_TRIAGE}, .abilityHidden = ABILITY_NATURAL_CURE, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_ORANGURU] = @@ -19566,6 +20342,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INNER_FOCUS, ABILITY_TELEPATHY}, .abilityHidden = ABILITY_SYMBIOSIS, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_PASSIMIAN] = @@ -19591,6 +20368,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_RECEIVER, ABILITY_NONE}, .abilityHidden = ABILITY_DEFIANT, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_WIMPOD] = @@ -19615,6 +20393,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_WATER_3, .abilities = {ABILITY_WIMP_OUT, ABILITY_NONE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_GOLISOPOD] = @@ -19639,6 +20418,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_WATER_3, .abilities = {ABILITY_EMERGENCY_EXIT, ABILITY_NONE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_SANDYGAST] = @@ -19665,6 +20445,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_WATER_COMPACTION, ABILITY_NONE}, .abilityHidden = ABILITY_SAND_VEIL, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_PALOSSAND] = @@ -19691,6 +20472,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_WATER_COMPACTION, ABILITY_NONE}, .abilityHidden = ABILITY_SAND_VEIL, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_PYUKUMUKU] = @@ -19716,6 +20498,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_INNARDS_OUT, ABILITY_NONE}, .abilityHidden = ABILITY_UNAWARE, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_TYPE_NULL] = @@ -19740,6 +20523,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_BATTLE_ARMOR, ABILITY_NONE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_SILVALLY] = @@ -19764,6 +20548,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_RKS_SYSTEM, ABILITY_NONE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_MINIOR] = @@ -19790,6 +20575,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MINERAL, .abilities = {ABILITY_SHIELDS_DOWN, ABILITY_NONE}, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_KOMALA] = @@ -19814,6 +20600,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FIELD, .abilities = {ABILITY_COMATOSE, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_TURTONATOR] = @@ -19839,6 +20626,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_DRAGON, .abilities = {ABILITY_SHELL_ARMOR, ABILITY_NONE}, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_TOGEDEMARU] = @@ -19865,6 +20653,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_IRON_BARBS, ABILITY_LIGHTNING_ROD}, .abilityHidden = ABILITY_STURDY, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_MIMIKYU] = @@ -19890,6 +20679,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_DISGUISE, ABILITY_NONE}, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_BRUXISH] = @@ -19916,6 +20706,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_DAZZLING, ABILITY_STRONG_JAW}, .abilityHidden = ABILITY_WONDER_SKIN, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_DRAMPA] = @@ -19941,6 +20732,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BERSERK, ABILITY_SAP_SIPPER}, .abilityHidden = ABILITY_CLOUD_NINE, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_DHELMISE] = @@ -19965,6 +20757,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MINERAL, .abilities = {ABILITY_STEELWORKER, ABILITY_NONE}, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_JANGMO_O] = @@ -19991,6 +20784,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BULLETPROOF, ABILITY_SOUNDPROOF}, .abilityHidden = ABILITY_OVERCOAT, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_HAKAMO_O] = @@ -20017,6 +20811,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BULLETPROOF, ABILITY_SOUNDPROOF}, .abilityHidden = ABILITY_OVERCOAT, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_KOMMO_O] = @@ -20043,6 +20838,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_BULLETPROOF, ABILITY_SOUNDPROOF}, .abilityHidden = ABILITY_OVERCOAT, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_TAPU_KOKO] = @@ -20068,6 +20864,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_ELECTRIC_SURGE, ABILITY_NONE}, .abilityHidden = ABILITY_TELEPATHY, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_TAPU_LELE] = @@ -20092,6 +20889,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PSYCHIC_SURGE, ABILITY_NONE}, .abilityHidden = ABILITY_TELEPATHY, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_TAPU_BULU] = @@ -20117,6 +20915,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GRASSY_SURGE, ABILITY_NONE}, .abilityHidden = ABILITY_TELEPATHY, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_TAPU_FINI] = @@ -20142,6 +20941,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_MISTY_SURGE, ABILITY_NONE}, .abilityHidden = ABILITY_TELEPATHY, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_COSMOG] = @@ -20166,6 +20966,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_UNAWARE, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_COSMOEM] = @@ -20191,6 +20992,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_STURDY, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_SOLGALEO] = @@ -20215,6 +21017,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_FULL_METAL_BODY, ABILITY_NONE}, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_LUNALA] = @@ -20238,6 +21041,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_SHADOW_SHIELD, ABILITY_NONE}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_NIHILEGO] = @@ -20262,6 +21066,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_BEAST_BOOST, ABILITY_NONE}, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_BUZZWOLE] = @@ -20287,6 +21092,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_BEAST_BOOST, ABILITY_NONE}, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_PHEROMOSA] = @@ -20311,6 +21117,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_BEAST_BOOST, ABILITY_NONE}, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_XURKITREE] = @@ -20334,6 +21141,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_BEAST_BOOST, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_CELESTEELA] = @@ -20359,6 +21167,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_BEAST_BOOST, ABILITY_NONE}, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_KARTANA] = @@ -20383,6 +21192,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_BEAST_BOOST, ABILITY_NONE}, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_GUZZLORD] = @@ -20407,6 +21217,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_BEAST_BOOST, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_NECROZMA] = @@ -20431,6 +21242,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_PRISM_ARMOR, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_MAGEARNA] = @@ -20454,6 +21266,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_SOUL_HEART, ABILITY_NONE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_MARSHADOW] = @@ -20479,6 +21292,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_TECHNICIAN, ABILITY_NONE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_POIPOLE] = @@ -20503,6 +21317,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_BEAST_BOOST, ABILITY_NONE}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_NAGANADEL] = @@ -20526,6 +21341,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_BEAST_BOOST, ABILITY_NONE}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_STAKATAKA] = @@ -20550,6 +21366,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_BEAST_BOOST, ABILITY_NONE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_BLACEPHALON] = @@ -20573,6 +21390,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_BEAST_BOOST, ABILITY_NONE}, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_ZERAORA] = @@ -20597,6 +21415,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_VOLT_ABSORB, ABILITY_NONE}, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_MELTAN] = @@ -20620,6 +21439,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_MAGNET_PULL, ABILITY_NONE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_MELMETAL] = @@ -20643,6 +21463,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_IRON_FIST, ABILITY_NONE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_MEGA_GENGAR] = @@ -20666,6 +21487,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_SHADOW_TAG, ABILITY_SHADOW_TAG}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_MEGA_GARDEVOIR] = @@ -20689,6 +21511,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_PIXILATE, ABILITY_PIXILATE}, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_MEGA_AMPHAROS] = @@ -20712,6 +21535,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FIELD, .abilities = {ABILITY_MOLD_BREAKER, ABILITY_MOLD_BREAKER}, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_MEGA_VENUSAUR] = @@ -20736,6 +21560,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_GRASS, .abilities = {ABILITY_THICK_FAT, ABILITY_THICK_FAT}, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_MEGA_CHARIZARD_X] = @@ -20759,6 +21584,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_DRAGON, .abilities = {ABILITY_TOUGH_CLAWS, ABILITY_TOUGH_CLAWS}, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_MEGA_CHARIZARD_Y] = @@ -20782,6 +21608,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_DRAGON, .abilities = {ABILITY_DROUGHT, ABILITY_DROUGHT}, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_MEGA_MEWTWO_X] = @@ -20805,6 +21632,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_STEADFAST, ABILITY_STEADFAST}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_MEGA_MEWTWO_Y] = @@ -20828,6 +21656,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_INSOMNIA, ABILITY_INSOMNIA}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_MEGA_BLAZIKEN] = @@ -20851,6 +21680,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FIELD, .abilities = {ABILITY_SPEED_BOOST, ABILITY_SPEED_BOOST}, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_MEGA_MEDICHAM] = @@ -20874,6 +21704,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_HUMAN_LIKE, .abilities = {ABILITY_PURE_POWER, ABILITY_PURE_POWER}, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_MEGA_HOUNDOOM] = @@ -20897,6 +21728,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FIELD, .abilities = {ABILITY_SOLAR_POWER, ABILITY_SOLAR_POWER}, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_MEGA_AGGRON] = @@ -20921,6 +21753,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MONSTER, .abilities = {ABILITY_FILTER, ABILITY_FILTER}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_MEGA_BANETTE] = @@ -20945,6 +21778,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_PRANKSTER, ABILITY_PRANKSTER}, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_MEGA_TYRANITAR] = @@ -20968,6 +21802,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MONSTER, .abilities = {ABILITY_SAND_STREAM, ABILITY_SAND_STREAM}, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_MEGA_SCIZOR] = @@ -20991,6 +21826,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_BUG, .abilities = {ABILITY_TECHNICIAN, ABILITY_TECHNICIAN}, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_MEGA_PINSIR] = @@ -21014,6 +21850,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_BUG, .abilities = {ABILITY_AERILATE, ABILITY_AERILATE}, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_MEGA_AERODACTYL] = @@ -21037,6 +21874,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FLYING, .abilities = {ABILITY_TOUGH_CLAWS, ABILITY_TOUGH_CLAWS}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_MEGA_LUCARIO] = @@ -21061,6 +21899,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_HUMAN_LIKE, .abilities = {ABILITY_ADAPTABILITY, ABILITY_ADAPTABILITY}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MEGA_ABOMASNOW] = @@ -21086,6 +21925,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_GRASS, .abilities = {ABILITY_SNOW_WARNING, ABILITY_SNOW_WARNING}, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_MEGA_BLASTOISE] = @@ -21109,6 +21949,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_WATER_1, .abilities = {ABILITY_MEGA_LAUNCHER, ABILITY_MEGA_LAUNCHER}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MEGA_KANGASKHAN] = @@ -21132,6 +21973,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MONSTER, .abilities = {ABILITY_PARENTAL_BOND, ABILITY_PARENTAL_BOND}, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_MEGA_GYARADOS] = @@ -21155,6 +21997,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_DRAGON, .abilities = {ABILITY_MOLD_BREAKER, ABILITY_MOLD_BREAKER}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MEGA_ABSOL] = @@ -21178,6 +22021,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FIELD, .abilities = {ABILITY_MAGIC_BOUNCE, ABILITY_MAGIC_BOUNCE}, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_MEGA_ALAKAZAM] = @@ -21202,6 +22046,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_HUMAN_LIKE, .abilities = {ABILITY_TRACE, ABILITY_TRACE}, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_MEGA_HERACROSS] = @@ -21225,6 +22070,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_BUG, .abilities = {ABILITY_SKILL_LINK, ABILITY_SKILL_LINK}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MEGA_MAWILE] = @@ -21249,6 +22095,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FAIRY, .abilities = {ABILITY_HUGE_POWER, ABILITY_HUGE_POWER}, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_MEGA_MANECTRIC] = @@ -21272,6 +22119,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FIELD, .abilities = {ABILITY_INTIMIDATE, ABILITY_INTIMIDATE}, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_MEGA_GARCHOMP] = @@ -21295,6 +22143,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_DRAGON, .abilities = {ABILITY_SAND_FORCE, ABILITY_SAND_FORCE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MEGA_LATIOS] = @@ -21318,6 +22167,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_LEVITATE, ABILITY_LEVITATE}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_MEGA_LATIAS] = @@ -21341,6 +22191,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_LEVITATE, ABILITY_LEVITATE}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_MEGA_SWAMPERT] = @@ -21364,6 +22215,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_WATER_1, .abilities = {ABILITY_SWIFT_SWIM, ABILITY_SWIFT_SWIM}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MEGA_SCEPTILE] = @@ -21387,6 +22239,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_DRAGON, .abilities = {ABILITY_LIGHTNING_ROD, ABILITY_LIGHTNING_ROD}, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_MEGA_SABLEYE] = @@ -21411,6 +22264,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_HUMAN_LIKE, .abilities = {ABILITY_MAGIC_BOUNCE, ABILITY_MAGIC_BOUNCE}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_MEGA_ALTARIA] = @@ -21434,6 +22288,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_DRAGON, .abilities = {ABILITY_PIXILATE, ABILITY_PIXILATE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MEGA_GALLADE] = @@ -21457,6 +22312,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_INNER_FOCUS, ABILITY_INNER_FOCUS}, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_MEGA_AUDINO] = @@ -21482,6 +22338,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FAIRY, .abilities = {ABILITY_HEALER, ABILITY_HEALER}, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_MEGA_SHARPEDO] = @@ -21506,6 +22363,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_WATER_2, .abilities = {ABILITY_STRONG_JAW, ABILITY_STRONG_JAW}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MEGA_SLOWBRO] = @@ -21530,6 +22388,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_WATER_1, .abilities = {ABILITY_SHELL_ARMOR, ABILITY_SHELL_ARMOR}, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_MEGA_STEELIX] = @@ -21554,6 +22413,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MINERAL, .abilities = {ABILITY_SAND_FORCE, ABILITY_SAND_FORCE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_MEGA_PIDGEOT] = @@ -21577,6 +22437,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FLYING, .abilities = {ABILITY_NO_GUARD, ABILITY_NO_GUARD}, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_MEGA_GLALIE] = @@ -21600,6 +22461,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MINERAL, .abilities = {ABILITY_REFRIGERATE, ABILITY_REFRIGERATE}, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_MEGA_DIANCIE] = @@ -21624,6 +22486,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_MAGIC_BOUNCE, ABILITY_MAGIC_BOUNCE}, .bodyColor = BODY_COLOR_PINK, + .noFlip = FALSE, }, [SPECIES_MEGA_METAGROSS] = @@ -21648,6 +22511,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MINERAL, .abilities = {ABILITY_TOUGH_CLAWS, ABILITY_TOUGH_CLAWS}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MEGA_CAMERUPT] = @@ -21672,6 +22536,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FIELD, .abilities = {ABILITY_SHEER_FORCE, ABILITY_SHEER_FORCE}, .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_MEGA_LOPUNNY] = @@ -21695,6 +22560,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_HUMAN_LIKE, .abilities = {ABILITY_SCRAPPY, ABILITY_SCRAPPY}, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_MEGA_SALAMENCE] = @@ -21719,6 +22585,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_DRAGON, .abilities = {ABILITY_AERILATE, ABILITY_AERILATE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MEGA_BEEDRILL] = @@ -21744,6 +22611,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_BUG, .abilities = {ABILITY_ADAPTABILITY, ABILITY_ADAPTABILITY}, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_ALOLAN_RATTATA] = @@ -21770,6 +22638,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GLUTTONY, ABILITY_HUSTLE}, .abilityHidden = ABILITY_THICK_FAT, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_ALOLAN_RATICATE] = @@ -21796,6 +22665,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_GLUTTONY, ABILITY_HUSTLE}, .abilityHidden = ABILITY_THICK_FAT, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_ALOLAN_RAICHU] = @@ -21820,6 +22690,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FAIRY, .abilities = {ABILITY_SURGE_SURFER, ABILITY_NONE}, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_ALOLAN_SANDSHREW] = @@ -21846,6 +22717,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SNOW_CLOAK, ABILITY_NONE}, .abilityHidden = ABILITY_SLUSH_RUSH, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_ALOLAN_SANDSLASH] = @@ -21871,6 +22743,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SNOW_CLOAK, ABILITY_NONE}, .abilityHidden = ABILITY_SLUSH_RUSH, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_ALOLAN_VULPIX] = @@ -21897,6 +22770,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SNOW_CLOAK, ABILITY_NONE}, .abilityHidden = ABILITY_SNOW_WARNING, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_ALOLAN_NINETALES] = @@ -21923,6 +22797,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SNOW_CLOAK, ABILITY_NONE}, .abilityHidden = ABILITY_SNOW_WARNING, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_ALOLAN_DIGLETT] = @@ -21949,6 +22824,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAND_VEIL, ABILITY_TANGLING_HAIR}, .abilityHidden = ABILITY_SAND_FORCE, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_ALOLAN_DUGTRIO] = @@ -21975,6 +22851,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_SAND_VEIL, ABILITY_TANGLING_HAIR}, .abilityHidden = ABILITY_SAND_FORCE, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_ALOLAN_MEOWTH] = @@ -22001,6 +22878,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_PICKUP, ABILITY_TECHNICIAN}, .abilityHidden = ABILITY_RATTLED, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_ALOLAN_PERSIAN] = @@ -22027,6 +22905,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FUR_COAT, ABILITY_TECHNICIAN}, .abilityHidden = ABILITY_RATTLED, .bodyColor = BODY_COLOR_GRAY, + .noFlip = FALSE, }, [SPECIES_ALOLAN_GEODUDE] = @@ -22053,6 +22932,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_MAGNET_PULL, ABILITY_STURDY}, .abilityHidden = ABILITY_GALVANIZE, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_ALOLAN_GRAVELER] = @@ -22079,6 +22959,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_MAGNET_PULL, ABILITY_STURDY}, .abilityHidden = ABILITY_GALVANIZE, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_ALOLAN_GOLEM] = @@ -22104,6 +22985,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_MAGNET_PULL, ABILITY_STURDY}, .abilityHidden = ABILITY_GALVANIZE, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_ALOLAN_GRIMER] = @@ -22130,6 +23012,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_POISON_TOUCH, ABILITY_GLUTTONY}, .abilityHidden = ABILITY_POWER_OF_ALCHEMY, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_ALOLAN_MUK] = @@ -22156,6 +23039,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_POISON_TOUCH, ABILITY_GLUTTONY}, .abilityHidden = ABILITY_POWER_OF_ALCHEMY, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_ALOLAN_EXEGGUTOR] = @@ -22180,6 +23064,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_FRISK, ABILITY_NONE}, .abilityHidden = ABILITY_HARVEST, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_ALOLAN_MAROWAK] = @@ -22205,6 +23090,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_CURSED_BODY, ABILITY_LIGHTNING_ROD}, .abilityHidden = ABILITY_ROCK_HEAD, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_SHAYMIN_SKY] = @@ -22231,6 +23117,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_SERENE_GRACE, ABILITY_NONE}, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_GIRATINA_ORIGIN] = @@ -22255,6 +23142,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_LEVITATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLACK, + .noFlip = FALSE, }, [SPECIES_DARMANITAN_ZEN] = @@ -22279,6 +23167,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_FIELD, .abilities = {ABILITY_ZEN_MODE, ABILITY_NONE}, // Change .bodyColor = BODY_COLOR_RED, + .noFlip = FALSE, }, [SPECIES_TORNADUS_THERIAN] = @@ -22303,6 +23192,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_REGENERATOR, ABILITY_NONE}, .bodyColor = BODY_COLOR_GREEN, + .noFlip = FALSE, }, [SPECIES_THUNDURUS_THERIAN] = @@ -22327,6 +23217,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_VOLT_ABSORB, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_LANDORUS_THERIAN] = @@ -22350,6 +23241,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_INTIMIDATE, ABILITY_NONE}, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_MELOETTA_PIROUETTE] = @@ -22377,6 +23269,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_SERENE_GRACE, ABILITY_NONE}, .bodyColor = BODY_COLOR_WHITE, + .noFlip = FALSE, }, [SPECIES_AEGISLASH_BLADE] = @@ -22402,6 +23295,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MINERAL, .abilities = {ABILITY_STANCE_CHANGE, ABILITY_NONE}, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_HOOPA_UNBOUND] = @@ -22425,6 +23319,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_UNDISCOVERED, .abilities = {ABILITY_MAGICIAN, ABILITY_NONE}, .bodyColor = BODY_COLOR_PURPLE, + .noFlip = FALSE, }, [SPECIES_MINIOR_CORE] = @@ -22451,6 +23346,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_MINERAL, .abilities = {ABILITY_SHIELDS_DOWN, ABILITY_NONE}, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_WISHIWASHI_SCHOOL] = @@ -22475,6 +23371,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_WATER_2, .abilities = {ABILITY_SCHOOLING, ABILITY_NONE}, .bodyColor = BODY_COLOR_BLUE, + .noFlip = FALSE, }, [SPECIES_MIMIKYU_BUSTED] = @@ -22500,6 +23397,7 @@ const struct BaseStats gBaseStats[] = .eggGroup2 = EGG_GROUP_AMORPHOUS, .abilities = {ABILITY_DISGUISE, ABILITY_NONE}, .bodyColor = BODY_COLOR_YELLOW, + .noFlip = FALSE, }, [SPECIES_LYCANROC_MIDNIGHT] = @@ -22525,6 +23423,7 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_KEEN_EYE, ABILITY_VITAL_SPIRIT}, .abilityHidden = ABILITY_NO_GUARD, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, [SPECIES_LYCANROC_DUSK] = @@ -22550,5 +23449,6 @@ const struct BaseStats gBaseStats[] = .abilities = {ABILITY_TOUGH_CLAWS, ABILITY_TOUGH_CLAWS}, .abilityHidden = ABILITY_TOUGH_CLAWS, .bodyColor = BODY_COLOR_BROWN, + .noFlip = FALSE, }, };