Merge pull request #15 from Bassoonian/rhhspeciesreorder

Add gen 9 Pokémon data

(cherry picked from commit cd3e65f5c92b22f1ce48f4f8275796d40f2ef1c6)
This commit is contained in:
Eduardo Quezada D'Ottone 2023-03-16 22:06:17 -03:00 committed by leo60228
parent 9ece7ed047
commit 133ffc7260
No known key found for this signature in database
GPG Key ID: 6F3EB461799AD95E
22 changed files with 14253 additions and 231 deletions

View File

@ -43,5 +43,6 @@
#define P_GEN_6_POKEMON TRUE // Generation 6 Pokémon (XY, ORAS)
#define P_GEN_7_POKEMON TRUE // Generation 7 Pokémon (SM, USUM, LGPE)
#define P_GEN_8_POKEMON TRUE // Generation 8 Pokémon (SwSh, BDSP, LA)
#define P_GEN_9_POKEMON TRUE // Generation 9 Pokémon (SV)
#endif // GUARD_CONFIG_POKEMON_H

View File

@ -919,12 +919,120 @@ enum {
NATIONAL_DEX_SNEASLER,
NATIONAL_DEX_OVERQWIL,
NATIONAL_DEX_ENAMORUS,
NATIONAL_DEX_SPRIGATITO,
NATIONAL_DEX_FLORAGATO,
NATIONAL_DEX_MEOWSCARADA,
NATIONAL_DEX_FUECOCO,
NATIONAL_DEX_CROCALOR,
NATIONAL_DEX_SKELEDIRGE,
NATIONAL_DEX_QUAXLY,
NATIONAL_DEX_QUAXWELL,
NATIONAL_DEX_QUAQUAVAL,
NATIONAL_DEX_LECHONK,
NATIONAL_DEX_OINKOLOGNE,
NATIONAL_DEX_TAROUNTULA,
NATIONAL_DEX_SPIDOPS,
NATIONAL_DEX_NYMBLE,
NATIONAL_DEX_LOKIX,
NATIONAL_DEX_PAWMI,
NATIONAL_DEX_PAWMO,
NATIONAL_DEX_PAWMOT,
NATIONAL_DEX_TANDEMAUS,
NATIONAL_DEX_MAUSHOLD,
NATIONAL_DEX_FIDOUGH,
NATIONAL_DEX_DACHSBUN,
NATIONAL_DEX_SMOLIV,
NATIONAL_DEX_DOLLIV,
NATIONAL_DEX_ARBOLIVA,
NATIONAL_DEX_SQUAWKABILLY,
NATIONAL_DEX_NACLI,
NATIONAL_DEX_NACLSTACK,
NATIONAL_DEX_GARGANACL,
NATIONAL_DEX_CHARCADET,
NATIONAL_DEX_ARMAROUGE,
NATIONAL_DEX_CERULEDGE,
NATIONAL_DEX_TADBULB,
NATIONAL_DEX_BELLIBOLT,
NATIONAL_DEX_WATTREL,
NATIONAL_DEX_KILOWATTREL,
NATIONAL_DEX_MASCHIFF,
NATIONAL_DEX_MABOSSTIFF,
NATIONAL_DEX_SHROODLE,
NATIONAL_DEX_GRAFAIAI,
NATIONAL_DEX_BRAMBLIN,
NATIONAL_DEX_BRAMBLEGHAST,
NATIONAL_DEX_TOEDSCOOL,
NATIONAL_DEX_TOEDSCRUEL,
NATIONAL_DEX_KLAWF,
NATIONAL_DEX_CAPSAKID,
NATIONAL_DEX_SCOVILLAIN,
NATIONAL_DEX_RELLOR,
NATIONAL_DEX_RABSCA,
NATIONAL_DEX_FLITTLE,
NATIONAL_DEX_ESPATHRA,
NATIONAL_DEX_TINKATINK,
NATIONAL_DEX_TINKATUFF,
NATIONAL_DEX_TINKATON,
NATIONAL_DEX_WIGLETT,
NATIONAL_DEX_WUGTRIO,
NATIONAL_DEX_BOMBIRDIER,
NATIONAL_DEX_FINIZEN,
NATIONAL_DEX_PALAFIN,
NATIONAL_DEX_VAROOM,
NATIONAL_DEX_REVAVROOM,
NATIONAL_DEX_CYCLIZAR,
NATIONAL_DEX_ORTHWORM,
NATIONAL_DEX_GLIMMET,
NATIONAL_DEX_GLIMMORA,
NATIONAL_DEX_GREAVARD,
NATIONAL_DEX_HOUNDSTONE,
NATIONAL_DEX_FLAMIGO,
NATIONAL_DEX_CETODDLE,
NATIONAL_DEX_CETITAN,
NATIONAL_DEX_VELUZA,
NATIONAL_DEX_DONDOZO,
NATIONAL_DEX_TATSUGIRI,
NATIONAL_DEX_ANNIHILAPE,
NATIONAL_DEX_CLODSIRE,
NATIONAL_DEX_FARIGIRAF,
NATIONAL_DEX_DUDUNSPARCE,
NATIONAL_DEX_KINGAMBIT,
NATIONAL_DEX_GREAT_TUSK,
NATIONAL_DEX_SCREAM_TAIL,
NATIONAL_DEX_BRUTE_BONNET,
NATIONAL_DEX_FLUTTER_MANE,
NATIONAL_DEX_SLITHER_WING,
NATIONAL_DEX_SANDY_SHOCKS,
NATIONAL_DEX_IRON_TREADS,
NATIONAL_DEX_IRON_BUNDLE,
NATIONAL_DEX_IRON_HANDS,
NATIONAL_DEX_IRON_JUGULIS,
NATIONAL_DEX_IRON_MOTH,
NATIONAL_DEX_IRON_THORNS,
NATIONAL_DEX_FRIGIBAX,
NATIONAL_DEX_ARCTIBAX,
NATIONAL_DEX_BAXCALIBUR,
NATIONAL_DEX_GIMMIGHOUL,
NATIONAL_DEX_GHOLDENGO,
NATIONAL_DEX_WO_CHIEN,
NATIONAL_DEX_CHIEN_PAO,
NATIONAL_DEX_TING_LU,
NATIONAL_DEX_CHI_YU,
NATIONAL_DEX_ROARING_MOON,
NATIONAL_DEX_IRON_VALIANT,
NATIONAL_DEX_KORAIDON,
NATIONAL_DEX_MIRAIDON,
NATIONAL_DEX_WALKING_WAKE,
NATIONAL_DEX_IRON_LEAVES,
NATIONAL_DEX_COUNT_ENUM,
};
#define KANTO_DEX_COUNT NATIONAL_DEX_MEW
#define JOHTO_DEX_COUNT NATIONAL_DEX_CELEBI
#if P_GEN_8_POKEMON == TRUE
#if P_GEN_9_POKEMON == TRUE
#define NATIONAL_DEX_COUNT NATIONAL_DEX_IRON_LEAVES
#elif P_GEN_8_POKEMON == TRUE
#define NATIONAL_DEX_COUNT NATIONAL_DEX_ENAMORUS
#elif P_GEN_7_POKEMON == TRUE
#define NATIONAL_DEX_COUNT NATIONAL_DEX_MELMETAL

View File

@ -327,6 +327,8 @@
#define SPECIES_FLAG_ALL_PERFECT_IVS (1 << 8)
#define SPECIES_FLAG_CANNOT_BE_TRADED (1 << 9)
#define SPECIES_FLAG_ULTRA_BURST (1 << 10)
#define SPECIES_FLAG_GENDER_DIFFERENCE (1 << 11)
#define SPECIES_FLAG_PARADOX (1 << 12)
#define LEGENDARY_PERFECT_IV_COUNT 3

View File

@ -907,6 +907,111 @@
#define SPECIES_SNEASLER 903
#define SPECIES_OVERQWIL 904
#define SPECIES_ENAMORUS 905
#define SPECIES_SPRIGATITO 906
#define SPECIES_FLORAGATO 907
#define SPECIES_MEOWSCARADA 908
#define SPECIES_FUECOCO 909
#define SPECIES_CROCALOR 910
#define SPECIES_SKELEDIRGE 911
#define SPECIES_QUAXLY 912
#define SPECIES_QUAXWELL 913
#define SPECIES_QUAQUAVAL 914
#define SPECIES_LECHONK 915
#define SPECIES_OINKOLOGNE 916
#define SPECIES_TAROUNTULA 917
#define SPECIES_SPIDOPS 918
#define SPECIES_NYMBLE 919
#define SPECIES_LOKIX 920
#define SPECIES_PAWMI 921
#define SPECIES_PAWMO 922
#define SPECIES_PAWMOT 923
#define SPECIES_TANDEMAUS 924
#define SPECIES_MAUSHOLD 925
#define SPECIES_FIDOUGH 926
#define SPECIES_DACHSBUN 927
#define SPECIES_SMOLIV 928
#define SPECIES_DOLLIV 929
#define SPECIES_ARBOLIVA 930
#define SPECIES_SQUAWKABILLY 931
#define SPECIES_NACLI 932
#define SPECIES_NACLSTACK 933
#define SPECIES_GARGANACL 934
#define SPECIES_CHARCADET 935
#define SPECIES_ARMAROUGE 936
#define SPECIES_CERULEDGE 937
#define SPECIES_TADBULB 938
#define SPECIES_BELLIBOLT 939
#define SPECIES_WATTREL 940
#define SPECIES_KILOWATTREL 941
#define SPECIES_MASCHIFF 942
#define SPECIES_MABOSSTIFF 943
#define SPECIES_SHROODLE 944
#define SPECIES_GRAFAIAI 945
#define SPECIES_BRAMBLIN 946
#define SPECIES_BRAMBLEGHAST 947
#define SPECIES_TOEDSCOOL 948
#define SPECIES_TOEDSCRUEL 949
#define SPECIES_KLAWF 950
#define SPECIES_CAPSAKID 951
#define SPECIES_SCOVILLAIN 952
#define SPECIES_RELLOR 953
#define SPECIES_RABSCA 954
#define SPECIES_FLITTLE 955
#define SPECIES_ESPATHRA 956
#define SPECIES_TINKATINK 957
#define SPECIES_TINKATUFF 958
#define SPECIES_TINKATON 959
#define SPECIES_WIGLETT 960
#define SPECIES_WUGTRIO 961
#define SPECIES_BOMBIRDIER 962
#define SPECIES_FINIZEN 963
#define SPECIES_PALAFIN 964
#define SPECIES_VAROOM 965
#define SPECIES_REVAVROOM 966
#define SPECIES_CYCLIZAR 967
#define SPECIES_ORTHWORM 968
#define SPECIES_GLIMMET 969
#define SPECIES_GLIMMORA 970
#define SPECIES_GREAVARD 971
#define SPECIES_HOUNDSTONE 972
#define SPECIES_FLAMIGO 973
#define SPECIES_CETODDLE 974
#define SPECIES_CETITAN 975
#define SPECIES_VELUZA 976
#define SPECIES_DONDOZO 977
#define SPECIES_TATSUGIRI 978
#define SPECIES_ANNIHILAPE 979
#define SPECIES_CLODSIRE 980
#define SPECIES_FARIGIRAF 981
#define SPECIES_DUDUNSPARCE 982
#define SPECIES_KINGAMBIT 983
#define SPECIES_GREAT_TUSK 984
#define SPECIES_SCREAM_TAIL 985
#define SPECIES_BRUTE_BONNET 986
#define SPECIES_FLUTTER_MANE 987
#define SPECIES_SLITHER_WING 988
#define SPECIES_SANDY_SHOCKS 989
#define SPECIES_IRON_TREADS 990
#define SPECIES_IRON_BUNDLE 991
#define SPECIES_IRON_HANDS 992
#define SPECIES_IRON_JUGULIS 993
#define SPECIES_IRON_MOTH 994
#define SPECIES_IRON_THORNS 995
#define SPECIES_FRIGIBAX 996
#define SPECIES_ARCTIBAX 997
#define SPECIES_BAXCALIBUR 998
#define SPECIES_GIMMIGHOUL 999
#define SPECIES_GHOLDENGO 1000
#define SPECIES_WO_CHIEN 1001
#define SPECIES_CHIEN_PAO 1002
#define SPECIES_TING_LU 1003
#define SPECIES_CHI_YU 1004
#define SPECIES_ROARING_MOON 1005
#define SPECIES_IRON_VALIANT 1006
#define SPECIES_KORAIDON 1007
#define SPECIES_MIRAIDON 1008
#define SPECIES_WALKING_WAKE 1009
#define SPECIES_IRON_LEAVES 1010
// Megas
#define SPECIES_VENUSAUR_MEGA FORMS_START + 1
@ -1021,358 +1126,390 @@
#define SPECIES_AVALUGG_HISUIAN FORMS_START + 102
#define SPECIES_DECIDUEYE_HISUIAN FORMS_START + 103
//Paldean Forms
#define SPECIES_WOOPER_PALDEAN FORMS_START + 104
#define SPECIES_TAUROS_PALDEAN FORMS_START + 105
// Misc Forms
// Cosplay Pikachu
#define SPECIES_PIKACHU_COSPLAY FORMS_START + 104
#define SPECIES_PIKACHU_ROCK_STAR FORMS_START + 105
#define SPECIES_PIKACHU_BELLE FORMS_START + 106
#define SPECIES_PIKACHU_POP_STAR FORMS_START + 107
#define SPECIES_PIKACHU_PH_D FORMS_START + 108
#define SPECIES_PIKACHU_LIBRE FORMS_START + 109
#define SPECIES_PIKACHU_COSPLAY FORMS_START + 106
#define SPECIES_PIKACHU_ROCK_STAR FORMS_START + 107
#define SPECIES_PIKACHU_BELLE FORMS_START + 108
#define SPECIES_PIKACHU_POP_STAR FORMS_START + 109
#define SPECIES_PIKACHU_PH_D FORMS_START + 110
#define SPECIES_PIKACHU_LIBRE FORMS_START + 111
// Cap Pikachu
#define SPECIES_PIKACHU_ORIGINAL_CAP FORMS_START + 110
#define SPECIES_PIKACHU_HOENN_CAP FORMS_START + 111
#define SPECIES_PIKACHU_SINNOH_CAP FORMS_START + 112
#define SPECIES_PIKACHU_UNOVA_CAP FORMS_START + 113
#define SPECIES_PIKACHU_KALOS_CAP FORMS_START + 114
#define SPECIES_PIKACHU_ALOLA_CAP FORMS_START + 115
#define SPECIES_PIKACHU_PARTNER_CAP FORMS_START + 116
#define SPECIES_PIKACHU_WORLD_CAP FORMS_START + 117
#define SPECIES_PIKACHU_ORIGINAL_CAP FORMS_START + 112
#define SPECIES_PIKACHU_HOENN_CAP FORMS_START + 113
#define SPECIES_PIKACHU_SINNOH_CAP FORMS_START + 114
#define SPECIES_PIKACHU_UNOVA_CAP FORMS_START + 115
#define SPECIES_PIKACHU_KALOS_CAP FORMS_START + 116
#define SPECIES_PIKACHU_ALOLA_CAP FORMS_START + 117
#define SPECIES_PIKACHU_PARTNER_CAP FORMS_START + 118
#define SPECIES_PIKACHU_WORLD_CAP FORMS_START + 119
// Pichu
#define SPECIES_PICHU_SPIKY_EARED FORMS_START + 118
#define SPECIES_PICHU_SPIKY_EARED FORMS_START + 120
// Unown
#define SPECIES_UNOWN_B FORMS_START + 119
#define SPECIES_UNOWN_C FORMS_START + 120
#define SPECIES_UNOWN_D FORMS_START + 121
#define SPECIES_UNOWN_E FORMS_START + 122
#define SPECIES_UNOWN_F FORMS_START + 123
#define SPECIES_UNOWN_G FORMS_START + 124
#define SPECIES_UNOWN_H FORMS_START + 125
#define SPECIES_UNOWN_I FORMS_START + 126
#define SPECIES_UNOWN_J FORMS_START + 127
#define SPECIES_UNOWN_K FORMS_START + 128
#define SPECIES_UNOWN_L FORMS_START + 129
#define SPECIES_UNOWN_M FORMS_START + 130
#define SPECIES_UNOWN_N FORMS_START + 131
#define SPECIES_UNOWN_O FORMS_START + 132
#define SPECIES_UNOWN_P FORMS_START + 133
#define SPECIES_UNOWN_Q FORMS_START + 134
#define SPECIES_UNOWN_R FORMS_START + 135
#define SPECIES_UNOWN_S FORMS_START + 136
#define SPECIES_UNOWN_T FORMS_START + 137
#define SPECIES_UNOWN_U FORMS_START + 138
#define SPECIES_UNOWN_V FORMS_START + 139
#define SPECIES_UNOWN_W FORMS_START + 140
#define SPECIES_UNOWN_X FORMS_START + 141
#define SPECIES_UNOWN_Y FORMS_START + 142
#define SPECIES_UNOWN_Z FORMS_START + 143
#define SPECIES_UNOWN_EMARK FORMS_START + 144
#define SPECIES_UNOWN_QMARK FORMS_START + 145
#define SPECIES_UNOWN_B FORMS_START + 121
#define SPECIES_UNOWN_C FORMS_START + 122
#define SPECIES_UNOWN_D FORMS_START + 123
#define SPECIES_UNOWN_E FORMS_START + 124
#define SPECIES_UNOWN_F FORMS_START + 125
#define SPECIES_UNOWN_G FORMS_START + 126
#define SPECIES_UNOWN_H FORMS_START + 127
#define SPECIES_UNOWN_I FORMS_START + 128
#define SPECIES_UNOWN_J FORMS_START + 129
#define SPECIES_UNOWN_K FORMS_START + 130
#define SPECIES_UNOWN_L FORMS_START + 131
#define SPECIES_UNOWN_M FORMS_START + 132
#define SPECIES_UNOWN_N FORMS_START + 133
#define SPECIES_UNOWN_O FORMS_START + 134
#define SPECIES_UNOWN_P FORMS_START + 135
#define SPECIES_UNOWN_Q FORMS_START + 136
#define SPECIES_UNOWN_R FORMS_START + 137
#define SPECIES_UNOWN_S FORMS_START + 138
#define SPECIES_UNOWN_T FORMS_START + 139
#define SPECIES_UNOWN_U FORMS_START + 140
#define SPECIES_UNOWN_V FORMS_START + 141
#define SPECIES_UNOWN_W FORMS_START + 142
#define SPECIES_UNOWN_X FORMS_START + 143
#define SPECIES_UNOWN_Y FORMS_START + 144
#define SPECIES_UNOWN_Z FORMS_START + 145
#define SPECIES_UNOWN_EMARK FORMS_START + 146
#define SPECIES_UNOWN_QMARK FORMS_START + 147
// Castform
#define SPECIES_CASTFORM_SUNNY FORMS_START + 146
#define SPECIES_CASTFORM_RAINY FORMS_START + 147
#define SPECIES_CASTFORM_SNOWY FORMS_START + 148
#define SPECIES_CASTFORM_SUNNY FORMS_START + 148
#define SPECIES_CASTFORM_RAINY FORMS_START + 149
#define SPECIES_CASTFORM_SNOWY FORMS_START + 150
// Deoxys
#define SPECIES_DEOXYS_ATTACK FORMS_START + 149
#define SPECIES_DEOXYS_DEFENSE FORMS_START + 150
#define SPECIES_DEOXYS_SPEED FORMS_START + 151
#define SPECIES_DEOXYS_ATTACK FORMS_START + 151
#define SPECIES_DEOXYS_DEFENSE FORMS_START + 152
#define SPECIES_DEOXYS_SPEED FORMS_START + 153
// Burmy
#define SPECIES_BURMY_SANDY_CLOAK FORMS_START + 152
#define SPECIES_BURMY_TRASH_CLOAK FORMS_START + 153
#define SPECIES_BURMY_SANDY_CLOAK FORMS_START + 154
#define SPECIES_BURMY_TRASH_CLOAK FORMS_START + 155
// Wormadam
#define SPECIES_WORMADAM_SANDY_CLOAK FORMS_START + 154
#define SPECIES_WORMADAM_TRASH_CLOAK FORMS_START + 155
#define SPECIES_WORMADAM_SANDY_CLOAK FORMS_START + 156
#define SPECIES_WORMADAM_TRASH_CLOAK FORMS_START + 157
// Cherrim
#define SPECIES_CHERRIM_SUNSHINE FORMS_START + 156
#define SPECIES_CHERRIM_SUNSHINE FORMS_START + 158
// Shellos
#define SPECIES_SHELLOS_EAST_SEA FORMS_START + 157
#define SPECIES_SHELLOS_EAST_SEA FORMS_START + 159
// Gastrodon
#define SPECIES_GASTRODON_EAST_SEA FORMS_START + 158
#define SPECIES_GASTRODON_EAST_SEA FORMS_START + 160
// Rotom
#define SPECIES_ROTOM_HEAT FORMS_START + 159
#define SPECIES_ROTOM_WASH FORMS_START + 160
#define SPECIES_ROTOM_FROST FORMS_START + 161
#define SPECIES_ROTOM_FAN FORMS_START + 162
#define SPECIES_ROTOM_MOW FORMS_START + 163
#define SPECIES_ROTOM_HEAT FORMS_START + 161
#define SPECIES_ROTOM_WASH FORMS_START + 162
#define SPECIES_ROTOM_FROST FORMS_START + 163
#define SPECIES_ROTOM_FAN FORMS_START + 164
#define SPECIES_ROTOM_MOW FORMS_START + 165
// Origin Forme
#define SPECIES_DIALGA_ORIGIN FORMS_START + 164
#define SPECIES_PALKIA_ORIGIN FORMS_START + 165
#define SPECIES_GIRATINA_ORIGIN FORMS_START + 166
#define SPECIES_DIALGA_ORIGIN FORMS_START + 166
#define SPECIES_PALKIA_ORIGIN FORMS_START + 167
#define SPECIES_GIRATINA_ORIGIN FORMS_START + 168
// Shaymin
#define SPECIES_SHAYMIN_SKY FORMS_START + 167
#define SPECIES_SHAYMIN_SKY FORMS_START + 169
// Arceus
#define SPECIES_ARCEUS_FIGHTING FORMS_START + 168
#define SPECIES_ARCEUS_FLYING FORMS_START + 169
#define SPECIES_ARCEUS_POISON FORMS_START + 170
#define SPECIES_ARCEUS_GROUND FORMS_START + 171
#define SPECIES_ARCEUS_ROCK FORMS_START + 172
#define SPECIES_ARCEUS_BUG FORMS_START + 173
#define SPECIES_ARCEUS_GHOST FORMS_START + 174
#define SPECIES_ARCEUS_STEEL FORMS_START + 175
#define SPECIES_ARCEUS_FIRE FORMS_START + 176
#define SPECIES_ARCEUS_WATER FORMS_START + 177
#define SPECIES_ARCEUS_GRASS FORMS_START + 178
#define SPECIES_ARCEUS_ELECTRIC FORMS_START + 179
#define SPECIES_ARCEUS_PSYCHIC FORMS_START + 180
#define SPECIES_ARCEUS_ICE FORMS_START + 181
#define SPECIES_ARCEUS_DRAGON FORMS_START + 182
#define SPECIES_ARCEUS_DARK FORMS_START + 183
#define SPECIES_ARCEUS_FAIRY FORMS_START + 184
#define SPECIES_ARCEUS_FIGHTING FORMS_START + 170
#define SPECIES_ARCEUS_FLYING FORMS_START + 171
#define SPECIES_ARCEUS_POISON FORMS_START + 172
#define SPECIES_ARCEUS_GROUND FORMS_START + 173
#define SPECIES_ARCEUS_ROCK FORMS_START + 174
#define SPECIES_ARCEUS_BUG FORMS_START + 175
#define SPECIES_ARCEUS_GHOST FORMS_START + 176
#define SPECIES_ARCEUS_STEEL FORMS_START + 177
#define SPECIES_ARCEUS_FIRE FORMS_START + 178
#define SPECIES_ARCEUS_WATER FORMS_START + 179
#define SPECIES_ARCEUS_GRASS FORMS_START + 180
#define SPECIES_ARCEUS_ELECTRIC FORMS_START + 181
#define SPECIES_ARCEUS_PSYCHIC FORMS_START + 182
#define SPECIES_ARCEUS_ICE FORMS_START + 183
#define SPECIES_ARCEUS_DRAGON FORMS_START + 184
#define SPECIES_ARCEUS_DARK FORMS_START + 185
#define SPECIES_ARCEUS_FAIRY FORMS_START + 186
// Basculin
#define SPECIES_BASCULIN_BLUE_STRIPED FORMS_START + 185
#define SPECIES_BASCULIN_WHITE_STRIPED FORMS_START + 186
#define SPECIES_BASCULIN_BLUE_STRIPED FORMS_START + 187
#define SPECIES_BASCULIN_WHITE_STRIPED FORMS_START + 188
// Darmanitan
#define SPECIES_DARMANITAN_ZEN_MODE FORMS_START + 187
#define SPECIES_DARMANITAN_ZEN_MODE_GALARIAN FORMS_START + 188
#define SPECIES_DARMANITAN_ZEN_MODE FORMS_START + 189
#define SPECIES_DARMANITAN_ZEN_MODE_GALARIAN FORMS_START + 190
// Deerling
#define SPECIES_DEERLING_SUMMER FORMS_START + 189
#define SPECIES_DEERLING_AUTUMN FORMS_START + 190
#define SPECIES_DEERLING_WINTER FORMS_START + 191
#define SPECIES_DEERLING_SUMMER FORMS_START + 191
#define SPECIES_DEERLING_AUTUMN FORMS_START + 192
#define SPECIES_DEERLING_WINTER FORMS_START + 193
// Sawsbuck
#define SPECIES_SAWSBUCK_SUMMER FORMS_START + 192
#define SPECIES_SAWSBUCK_AUTUMN FORMS_START + 193
#define SPECIES_SAWSBUCK_WINTER FORMS_START + 194
#define SPECIES_SAWSBUCK_SUMMER FORMS_START + 194
#define SPECIES_SAWSBUCK_AUTUMN FORMS_START + 195
#define SPECIES_SAWSBUCK_WINTER FORMS_START + 196
// Therian Forms
#define SPECIES_TORNADUS_THERIAN FORMS_START + 195
#define SPECIES_THUNDURUS_THERIAN FORMS_START + 196
#define SPECIES_LANDORUS_THERIAN FORMS_START + 197
#define SPECIES_ENAMORUS_THERIAN FORMS_START + 198
#define SPECIES_TORNADUS_THERIAN FORMS_START + 197
#define SPECIES_THUNDURUS_THERIAN FORMS_START + 198
#define SPECIES_LANDORUS_THERIAN FORMS_START + 199
#define SPECIES_ENAMORUS_THERIAN FORMS_START + 200
// Kyurem
#define SPECIES_KYUREM_WHITE FORMS_START + 199
#define SPECIES_KYUREM_BLACK FORMS_START + 200
#define SPECIES_KYUREM_WHITE FORMS_START + 201
#define SPECIES_KYUREM_BLACK FORMS_START + 202
// Keldeo
#define SPECIES_KELDEO_RESOLUTE FORMS_START + 201
#define SPECIES_KELDEO_RESOLUTE FORMS_START + 203
// Meloetta
#define SPECIES_MELOETTA_PIROUETTE FORMS_START + 202
#define SPECIES_MELOETTA_PIROUETTE FORMS_START + 204
// Genesect
#define SPECIES_GENESECT_DOUSE_DRIVE FORMS_START + 203
#define SPECIES_GENESECT_SHOCK_DRIVE FORMS_START + 204
#define SPECIES_GENESECT_BURN_DRIVE FORMS_START + 205
#define SPECIES_GENESECT_CHILL_DRIVE FORMS_START + 206
#define SPECIES_GENESECT_DOUSE_DRIVE FORMS_START + 205
#define SPECIES_GENESECT_SHOCK_DRIVE FORMS_START + 206
#define SPECIES_GENESECT_BURN_DRIVE FORMS_START + 207
#define SPECIES_GENESECT_CHILL_DRIVE FORMS_START + 208
// Greninja
#define SPECIES_GRENINJA_BATTLE_BOND FORMS_START + 207
#define SPECIES_GRENINJA_ASH FORMS_START + 208
#define SPECIES_GRENINJA_BATTLE_BOND FORMS_START + 209
#define SPECIES_GRENINJA_ASH FORMS_START + 210
// Vivillon
#define SPECIES_VIVILLON_POLAR FORMS_START + 209
#define SPECIES_VIVILLON_TUNDRA FORMS_START + 210
#define SPECIES_VIVILLON_CONTINENTAL FORMS_START + 211
#define SPECIES_VIVILLON_GARDEN FORMS_START + 212
#define SPECIES_VIVILLON_ELEGANT FORMS_START + 213
#define SPECIES_VIVILLON_MEADOW FORMS_START + 214
#define SPECIES_VIVILLON_MODERN FORMS_START + 215
#define SPECIES_VIVILLON_MARINE FORMS_START + 216
#define SPECIES_VIVILLON_ARCHIPELAGO FORMS_START + 217
#define SPECIES_VIVILLON_HIGH_PLAINS FORMS_START + 218
#define SPECIES_VIVILLON_SANDSTORM FORMS_START + 219
#define SPECIES_VIVILLON_RIVER FORMS_START + 220
#define SPECIES_VIVILLON_MONSOON FORMS_START + 221
#define SPECIES_VIVILLON_SAVANNA FORMS_START + 222
#define SPECIES_VIVILLON_SUN FORMS_START + 223
#define SPECIES_VIVILLON_OCEAN FORMS_START + 224
#define SPECIES_VIVILLON_JUNGLE FORMS_START + 225
#define SPECIES_VIVILLON_FANCY FORMS_START + 226
#define SPECIES_VIVILLON_POKE_BALL FORMS_START + 227
#define SPECIES_VIVILLON_POLAR FORMS_START + 211
#define SPECIES_VIVILLON_TUNDRA FORMS_START + 212
#define SPECIES_VIVILLON_CONTINENTAL FORMS_START + 213
#define SPECIES_VIVILLON_GARDEN FORMS_START + 214
#define SPECIES_VIVILLON_ELEGANT FORMS_START + 215
#define SPECIES_VIVILLON_MEADOW FORMS_START + 216
#define SPECIES_VIVILLON_MODERN FORMS_START + 217
#define SPECIES_VIVILLON_MARINE FORMS_START + 218
#define SPECIES_VIVILLON_ARCHIPELAGO FORMS_START + 219
#define SPECIES_VIVILLON_HIGH_PLAINS FORMS_START + 220
#define SPECIES_VIVILLON_SANDSTORM FORMS_START + 221
#define SPECIES_VIVILLON_RIVER FORMS_START + 222
#define SPECIES_VIVILLON_MONSOON FORMS_START + 223
#define SPECIES_VIVILLON_SAVANNA FORMS_START + 224
#define SPECIES_VIVILLON_SUN FORMS_START + 225
#define SPECIES_VIVILLON_OCEAN FORMS_START + 226
#define SPECIES_VIVILLON_JUNGLE FORMS_START + 227
#define SPECIES_VIVILLON_FANCY FORMS_START + 228
#define SPECIES_VIVILLON_POKE_BALL FORMS_START + 229
// Flabébé
#define SPECIES_FLABEBE_YELLOW_FLOWER FORMS_START + 228
#define SPECIES_FLABEBE_ORANGE_FLOWER FORMS_START + 229
#define SPECIES_FLABEBE_BLUE_FLOWER FORMS_START + 230
#define SPECIES_FLABEBE_WHITE_FLOWER FORMS_START + 231
#define SPECIES_FLABEBE_YELLOW_FLOWER FORMS_START + 230
#define SPECIES_FLABEBE_ORANGE_FLOWER FORMS_START + 231
#define SPECIES_FLABEBE_BLUE_FLOWER FORMS_START + 232
#define SPECIES_FLABEBE_WHITE_FLOWER FORMS_START + 233
// Floette
#define SPECIES_FLOETTE_YELLOW_FLOWER FORMS_START + 232
#define SPECIES_FLOETTE_ORANGE_FLOWER FORMS_START + 233
#define SPECIES_FLOETTE_BLUE_FLOWER FORMS_START + 234
#define SPECIES_FLOETTE_WHITE_FLOWER FORMS_START + 235
#define SPECIES_FLOETTE_ETERNAL_FLOWER FORMS_START + 236
#define SPECIES_FLOETTE_YELLOW_FLOWER FORMS_START + 234
#define SPECIES_FLOETTE_ORANGE_FLOWER FORMS_START + 235
#define SPECIES_FLOETTE_BLUE_FLOWER FORMS_START + 236
#define SPECIES_FLOETTE_WHITE_FLOWER FORMS_START + 237
#define SPECIES_FLOETTE_ETERNAL_FLOWER FORMS_START + 238
// Florges
#define SPECIES_FLORGES_YELLOW_FLOWER FORMS_START + 237
#define SPECIES_FLORGES_ORANGE_FLOWER FORMS_START + 238
#define SPECIES_FLORGES_BLUE_FLOWER FORMS_START + 239
#define SPECIES_FLORGES_WHITE_FLOWER FORMS_START + 240
#define SPECIES_FLORGES_YELLOW_FLOWER FORMS_START + 239
#define SPECIES_FLORGES_ORANGE_FLOWER FORMS_START + 240
#define SPECIES_FLORGES_BLUE_FLOWER FORMS_START + 241
#define SPECIES_FLORGES_WHITE_FLOWER FORMS_START + 242
// Furfrou
#define SPECIES_FURFROU_HEART_TRIM FORMS_START + 241
#define SPECIES_FURFROU_STAR_TRIM FORMS_START + 242
#define SPECIES_FURFROU_DIAMOND_TRIM FORMS_START + 243
#define SPECIES_FURFROU_DEBUTANTE_TRIM FORMS_START + 244
#define SPECIES_FURFROU_MATRON_TRIM FORMS_START + 245
#define SPECIES_FURFROU_DANDY_TRIM FORMS_START + 246
#define SPECIES_FURFROU_LA_REINE_TRIM FORMS_START + 247
#define SPECIES_FURFROU_KABUKI_TRIM FORMS_START + 248
#define SPECIES_FURFROU_PHARAOH_TRIM FORMS_START + 249
#define SPECIES_FURFROU_HEART_TRIM FORMS_START + 243
#define SPECIES_FURFROU_STAR_TRIM FORMS_START + 244
#define SPECIES_FURFROU_DIAMOND_TRIM FORMS_START + 245
#define SPECIES_FURFROU_DEBUTANTE_TRIM FORMS_START + 246
#define SPECIES_FURFROU_MATRON_TRIM FORMS_START + 247
#define SPECIES_FURFROU_DANDY_TRIM FORMS_START + 248
#define SPECIES_FURFROU_LA_REINE_TRIM FORMS_START + 249
#define SPECIES_FURFROU_KABUKI_TRIM FORMS_START + 250
#define SPECIES_FURFROU_PHARAOH_TRIM FORMS_START + 251
// Meowstic
#define SPECIES_MEOWSTIC_FEMALE FORMS_START + 250
#define SPECIES_MEOWSTIC_FEMALE FORMS_START + 252
// Aegislash
#define SPECIES_AEGISLASH_BLADE FORMS_START + 251
#define SPECIES_AEGISLASH_BLADE FORMS_START + 253
// Pumpkaboo
#define SPECIES_PUMPKABOO_SMALL FORMS_START + 252
#define SPECIES_PUMPKABOO_LARGE FORMS_START + 253
#define SPECIES_PUMPKABOO_SUPER FORMS_START + 254
#define SPECIES_PUMPKABOO_SMALL FORMS_START + 254
#define SPECIES_PUMPKABOO_LARGE FORMS_START + 255
#define SPECIES_PUMPKABOO_SUPER FORMS_START + 256
// Gourgeist
#define SPECIES_GOURGEIST_SMALL FORMS_START + 255
#define SPECIES_GOURGEIST_LARGE FORMS_START + 256
#define SPECIES_GOURGEIST_SUPER FORMS_START + 257
#define SPECIES_GOURGEIST_SMALL FORMS_START + 257
#define SPECIES_GOURGEIST_LARGE FORMS_START + 258
#define SPECIES_GOURGEIST_SUPER FORMS_START + 259
// Xerneas
#define SPECIES_XERNEAS_ACTIVE FORMS_START + 258
#define SPECIES_XERNEAS_ACTIVE FORMS_START + 260
// Zygarde
#define SPECIES_ZYGARDE_10 FORMS_START + 259
#define SPECIES_ZYGARDE_10_POWER_CONSTRUCT FORMS_START + 260
#define SPECIES_ZYGARDE_50_POWER_CONSTRUCT FORMS_START + 261
#define SPECIES_ZYGARDE_COMPLETE FORMS_START + 262
#define SPECIES_ZYGARDE_10 FORMS_START + 261
#define SPECIES_ZYGARDE_10_POWER_CONSTRUCT FORMS_START + 262
#define SPECIES_ZYGARDE_50_POWER_CONSTRUCT FORMS_START + 263
#define SPECIES_ZYGARDE_COMPLETE FORMS_START + 264
// Hoopa
#define SPECIES_HOOPA_UNBOUND FORMS_START + 263
#define SPECIES_HOOPA_UNBOUND FORMS_START + 265
// Oricorio
#define SPECIES_ORICORIO_POM_POM FORMS_START + 264
#define SPECIES_ORICORIO_PAU FORMS_START + 265
#define SPECIES_ORICORIO_SENSU FORMS_START + 266
#define SPECIES_ORICORIO_POM_POM FORMS_START + 266
#define SPECIES_ORICORIO_PAU FORMS_START + 267
#define SPECIES_ORICORIO_SENSU FORMS_START + 268
// Rockruff
#define SPECIES_ROCKRUFF_OWN_TEMPO FORMS_START + 267
#define SPECIES_ROCKRUFF_OWN_TEMPO FORMS_START + 269
// Lycanroc
#define SPECIES_LYCANROC_MIDNIGHT FORMS_START + 268
#define SPECIES_LYCANROC_DUSK FORMS_START + 269
#define SPECIES_LYCANROC_MIDNIGHT FORMS_START + 270
#define SPECIES_LYCANROC_DUSK FORMS_START + 271
// Wishiwashi
#define SPECIES_WISHIWASHI_SCHOOL FORMS_START + 270
#define SPECIES_WISHIWASHI_SCHOOL FORMS_START + 272
// Silvally
#define SPECIES_SILVALLY_FIGHTING FORMS_START + 271
#define SPECIES_SILVALLY_FLYING FORMS_START + 272
#define SPECIES_SILVALLY_POISON FORMS_START + 273
#define SPECIES_SILVALLY_GROUND FORMS_START + 274
#define SPECIES_SILVALLY_ROCK FORMS_START + 275
#define SPECIES_SILVALLY_BUG FORMS_START + 276
#define SPECIES_SILVALLY_GHOST FORMS_START + 277
#define SPECIES_SILVALLY_STEEL FORMS_START + 278
#define SPECIES_SILVALLY_FIRE FORMS_START + 279
#define SPECIES_SILVALLY_WATER FORMS_START + 280
#define SPECIES_SILVALLY_GRASS FORMS_START + 281
#define SPECIES_SILVALLY_ELECTRIC FORMS_START + 282
#define SPECIES_SILVALLY_PSYCHIC FORMS_START + 283
#define SPECIES_SILVALLY_ICE FORMS_START + 284
#define SPECIES_SILVALLY_DRAGON FORMS_START + 285
#define SPECIES_SILVALLY_DARK FORMS_START + 286
#define SPECIES_SILVALLY_FAIRY FORMS_START + 287
#define SPECIES_SILVALLY_FIGHTING FORMS_START + 273
#define SPECIES_SILVALLY_FLYING FORMS_START + 274
#define SPECIES_SILVALLY_POISON FORMS_START + 275
#define SPECIES_SILVALLY_GROUND FORMS_START + 276
#define SPECIES_SILVALLY_ROCK FORMS_START + 277
#define SPECIES_SILVALLY_BUG FORMS_START + 278
#define SPECIES_SILVALLY_GHOST FORMS_START + 279
#define SPECIES_SILVALLY_STEEL FORMS_START + 280
#define SPECIES_SILVALLY_FIRE FORMS_START + 281
#define SPECIES_SILVALLY_WATER FORMS_START + 282
#define SPECIES_SILVALLY_GRASS FORMS_START + 283
#define SPECIES_SILVALLY_ELECTRIC FORMS_START + 284
#define SPECIES_SILVALLY_PSYCHIC FORMS_START + 285
#define SPECIES_SILVALLY_ICE FORMS_START + 286
#define SPECIES_SILVALLY_DRAGON FORMS_START + 287
#define SPECIES_SILVALLY_DARK FORMS_START + 288
#define SPECIES_SILVALLY_FAIRY FORMS_START + 289
// Minior
#define SPECIES_MINIOR_METEOR_ORANGE FORMS_START + 288
#define SPECIES_MINIOR_METEOR_YELLOW FORMS_START + 289
#define SPECIES_MINIOR_METEOR_GREEN FORMS_START + 290
#define SPECIES_MINIOR_METEOR_BLUE FORMS_START + 291
#define SPECIES_MINIOR_METEOR_INDIGO FORMS_START + 292
#define SPECIES_MINIOR_METEOR_VIOLET FORMS_START + 293
#define SPECIES_MINIOR_CORE_RED FORMS_START + 294
#define SPECIES_MINIOR_CORE_ORANGE FORMS_START + 295
#define SPECIES_MINIOR_CORE_YELLOW FORMS_START + 296
#define SPECIES_MINIOR_CORE_GREEN FORMS_START + 297
#define SPECIES_MINIOR_CORE_BLUE FORMS_START + 298
#define SPECIES_MINIOR_CORE_INDIGO FORMS_START + 299
#define SPECIES_MINIOR_CORE_VIOLET FORMS_START + 300
#define SPECIES_MINIOR_METEOR_ORANGE FORMS_START + 290
#define SPECIES_MINIOR_METEOR_YELLOW FORMS_START + 291
#define SPECIES_MINIOR_METEOR_GREEN FORMS_START + 292
#define SPECIES_MINIOR_METEOR_BLUE FORMS_START + 293
#define SPECIES_MINIOR_METEOR_INDIGO FORMS_START + 294
#define SPECIES_MINIOR_METEOR_VIOLET FORMS_START + 295
#define SPECIES_MINIOR_CORE_RED FORMS_START + 296
#define SPECIES_MINIOR_CORE_ORANGE FORMS_START + 297
#define SPECIES_MINIOR_CORE_YELLOW FORMS_START + 298
#define SPECIES_MINIOR_CORE_GREEN FORMS_START + 299
#define SPECIES_MINIOR_CORE_BLUE FORMS_START + 300
#define SPECIES_MINIOR_CORE_INDIGO FORMS_START + 301
#define SPECIES_MINIOR_CORE_VIOLET FORMS_START + 302
// Mimikyu
#define SPECIES_MIMIKYU_BUSTED FORMS_START + 301
#define SPECIES_MIMIKYU_BUSTED FORMS_START + 303
// Necrozma
#define SPECIES_NECROZMA_DUSK_MANE FORMS_START + 302
#define SPECIES_NECROZMA_DAWN_WINGS FORMS_START + 303
#define SPECIES_NECROZMA_ULTRA FORMS_START + 304
#define SPECIES_NECROZMA_DUSK_MANE FORMS_START + 304
#define SPECIES_NECROZMA_DAWN_WINGS FORMS_START + 305
#define SPECIES_NECROZMA_ULTRA FORMS_START + 306
// Magearna
#define SPECIES_MAGEARNA_ORIGINAL_COLOR FORMS_START + 305
#define SPECIES_MAGEARNA_ORIGINAL_COLOR FORMS_START + 307
// Cramorant
#define SPECIES_CRAMORANT_GULPING FORMS_START + 306
#define SPECIES_CRAMORANT_GORGING FORMS_START + 307
#define SPECIES_CRAMORANT_GULPING FORMS_START + 308
#define SPECIES_CRAMORANT_GORGING FORMS_START + 309
// Toxtricity
#define SPECIES_TOXTRICITY_LOW_KEY FORMS_START + 308
#define SPECIES_TOXTRICITY_LOW_KEY FORMS_START + 310
// Sinistea
#define SPECIES_SINISTEA_ANTIQUE FORMS_START + 309
#define SPECIES_SINISTEA_ANTIQUE FORMS_START + 311
// Polteageist
#define SPECIES_POLTEAGEIST_ANTIQUE FORMS_START + 310
#define SPECIES_POLTEAGEIST_ANTIQUE FORMS_START + 312
// Alcremie
#define SPECIES_ALCREMIE_RUBY_CREAM FORMS_START + 311
#define SPECIES_ALCREMIE_MATCHA_CREAM FORMS_START + 312
#define SPECIES_ALCREMIE_MINT_CREAM FORMS_START + 313
#define SPECIES_ALCREMIE_LEMON_CREAM FORMS_START + 314
#define SPECIES_ALCREMIE_SALTED_CREAM FORMS_START + 315
#define SPECIES_ALCREMIE_RUBY_SWIRL FORMS_START + 316
#define SPECIES_ALCREMIE_CARAMEL_SWIRL FORMS_START + 317
#define SPECIES_ALCREMIE_RAINBOW_SWIRL FORMS_START + 318
#define SPECIES_ALCREMIE_RUBY_CREAM FORMS_START + 313
#define SPECIES_ALCREMIE_MATCHA_CREAM FORMS_START + 314
#define SPECIES_ALCREMIE_MINT_CREAM FORMS_START + 315
#define SPECIES_ALCREMIE_LEMON_CREAM FORMS_START + 316
#define SPECIES_ALCREMIE_SALTED_CREAM FORMS_START + 317
#define SPECIES_ALCREMIE_RUBY_SWIRL FORMS_START + 318
#define SPECIES_ALCREMIE_CARAMEL_SWIRL FORMS_START + 319
#define SPECIES_ALCREMIE_RAINBOW_SWIRL FORMS_START + 320
// Eiscue
#define SPECIES_EISCUE_NOICE_FACE FORMS_START + 319
#define SPECIES_EISCUE_NOICE_FACE FORMS_START + 321
// Indeedee
#define SPECIES_INDEEDEE_FEMALE FORMS_START + 320
#define SPECIES_INDEEDEE_FEMALE FORMS_START + 322
// Morpeko
#define SPECIES_MORPEKO_HANGRY FORMS_START + 321
#define SPECIES_MORPEKO_HANGRY FORMS_START + 323
// Zacian
#define SPECIES_ZACIAN_CROWNED_SWORD FORMS_START + 322
#define SPECIES_ZACIAN_CROWNED_SWORD FORMS_START + 324
// Zamazenta
#define SPECIES_ZAMAZENTA_CROWNED_SHIELD FORMS_START + 323
#define SPECIES_ZAMAZENTA_CROWNED_SHIELD FORMS_START + 325
// Eternatus
#define SPECIES_ETERNATUS_ETERNAMAX FORMS_START + 324
#define SPECIES_ETERNATUS_ETERNAMAX FORMS_START + 326
// Urshifu
#define SPECIES_URSHIFU_RAPID_STRIKE_STYLE FORMS_START + 325
#define SPECIES_URSHIFU_RAPID_STRIKE_STYLE FORMS_START + 327
// Zarude
#define SPECIES_ZARUDE_DADA FORMS_START + 326
#define SPECIES_ZARUDE_DADA FORMS_START + 328
// Calyrex
#define SPECIES_CALYREX_ICE_RIDER FORMS_START + 327
#define SPECIES_CALYREX_SHADOW_RIDER FORMS_START + 328
#define SPECIES_CALYREX_ICE_RIDER FORMS_START + 329
#define SPECIES_CALYREX_SHADOW_RIDER FORMS_START + 330
// Basculegion
#define SPECIES_BASCULEGION_FEMALE FORMS_START + 329
#define SPECIES_BASCULEGION_FEMALE FORMS_START + 331
#define FORMS_START SPECIES_ENAMORUS
#define SPECIES_EGG SPECIES_BASCULEGION_FEMALE + 1
// Oinkologne
#define SPECIES_OINKOLOGNE_FEMALE FORMS_START + 332
// Maushold
#define SPECIES_MAUSHOLD_FAMILY_OF_THREE FORMS_START + 333
// Squawkabilly
#define SPECIES_SQUAWKABILLY_BLUE_PLUMAGE FORMS_START + 334
#define SPECIES_SQUAWKABILLY_YELLOW_PLUMAGE FORMS_START + 335
#define SPECIES_SQUAWKABILLY_WHITE_PLUMAGE FORMS_START + 336
// Palafin
#define SPECIES_PALAFIN_HERO FORMS_START + 337
// Tatsugiri
#define SPECIES_TATSUGIRI_DROOPY FORMS_START + 338
#define SPECIES_TATSUGIRI_STRETCHY FORMS_START + 339
// Dudunsparce
#define SPECIES_DUDUNSPARCE_THREE_SEGMENT FORMS_START + 340
// Gimmighoul
#define SPECIES_GIMMIGHOUL_ROAMING FORMS_START + 341
// Tauros-Paldea
#define SPECIES_TAUROS_PALDEAN_BLAZE_BREED FORMS_START + 342
#define SPECIES_TAUROS_PALDEAN_AQUA_BREED FORMS_START + 343
#define FORMS_START SPECIES_IRON_LEAVES
#define SPECIES_EGG SPECIES_TAUROS_PALDEAN_AQUA_BREED + 1
#define NUM_SPECIES SPECIES_EGG

View File

@ -7242,6 +7242,638 @@ extern const u8 gMonFootprint_Calyrex[];
//extern const u8 gMonFootprint_Overqwil[];
//extern const u8 gMonFootprint_Enamorus[];
#endif
#if P_GEN_9_POKEMON == TRUE
//extern const u32 gMonFrontPic_Sprigatito[];
//extern const u32 gMonPalette_Sprigatito[];
//extern const u32 gMonBackPic_Sprigatito[];
//extern const u32 gMonShinyPalette_Sprigatito[];
//extern const u8 gMonIcon_Sprigatito[];
//extern const u8 gMonFootprint_Sprigatito[];
//extern const u32 gMonFrontPic_Floragato[];
//extern const u32 gMonPalette_Floragato[];
//extern const u32 gMonBackPic_Floragato[];
//extern const u32 gMonShinyPalette_Floragato[];
//extern const u8 gMonIcon_Floragato[];
//extern const u8 gMonFootprint_Floragato[];
//extern const u32 gMonFrontPic_Meowscarada[];
//extern const u32 gMonPalette_Meowscarada[];
//extern const u32 gMonBackPic_Meowscarada[];
//extern const u32 gMonShinyPalette_Meowscarada[];
//extern const u8 gMonIcon_Meowscarada[];
//extern const u8 gMonFootprint_Meowscarada[];
//extern const u32 gMonFrontPic_Fuecoco[];
//extern const u32 gMonPalette_Fuecoco[];
//extern const u32 gMonBackPic_Fuecoco[];
//extern const u32 gMonShinyPalette_Fuecoco[];
//extern const u8 gMonIcon_Fuecoco[];
//extern const u8 gMonFootprint_Fuecoco[];
//extern const u32 gMonFrontPic_Crocalor[];
//extern const u32 gMonPalette_Crocalor[];
//extern const u32 gMonBackPic_Crocalor[];
//extern const u32 gMonShinyPalette_Crocalor[];
//extern const u8 gMonIcon_Crocalor[];
//extern const u8 gMonFootprint_Crocalor[];
//extern const u32 gMonFrontPic_Skeledirge[];
//extern const u32 gMonPalette_Skeledirge[];
//extern const u32 gMonBackPic_Skeledirge[];
//extern const u32 gMonShinyPalette_Skeledirge[];
//extern const u8 gMonIcon_Skeledirge[];
//extern const u8 gMonFootprint_Skeledirge[];
//extern const u32 gMonFrontPic_Quaxly[];
//extern const u32 gMonPalette_Quaxly[];
//extern const u32 gMonBackPic_Quaxly[];
//extern const u32 gMonShinyPalette_Quaxly[];
//extern const u8 gMonIcon_Quaxly[];
//extern const u8 gMonFootprint_Quaxly[];
//extern const u32 gMonFrontPic_Quaxwell[];
//extern const u32 gMonPalette_Quaxwell[];
//extern const u32 gMonBackPic_Quaxwell[];
//extern const u32 gMonShinyPalette_Quaxwell[];
//extern const u8 gMonIcon_Quaxwell[];
//extern const u8 gMonFootprint_Quaxwell[];
//extern const u32 gMonFrontPic_Quaquaval[];
//extern const u32 gMonPalette_Quaquaval[];
//extern const u32 gMonBackPic_Quaquaval[];
//extern const u32 gMonShinyPalette_Quaquaval[];
//extern const u8 gMonIcon_Quaquaval[];
//extern const u8 gMonFootprint_Quaquaval[];
//extern const u32 gMonFrontPic_Lechonk[];
//extern const u32 gMonPalette_Lechonk[];
//extern const u32 gMonBackPic_Lechonk[];
//extern const u32 gMonShinyPalette_Lechonk[];
//extern const u8 gMonIcon_Lechonk[];
//extern const u8 gMonFootprint_Lechonk[];
//extern const u32 gMonFrontPic_Oinkologne[];
//extern const u32 gMonPalette_Oinkologne[];
//extern const u32 gMonBackPic_Oinkologne[];
//extern const u32 gMonShinyPalette_Oinkologne[];
//extern const u8 gMonIcon_Oinkologne[];
//extern const u8 gMonFootprint_Oinkologne[];
//extern const u32 gMonFrontPic_Tarountula[];
//extern const u32 gMonPalette_Tarountula[];
//extern const u32 gMonBackPic_Tarountula[];
//extern const u32 gMonShinyPalette_Tarountula[];
//extern const u8 gMonIcon_Tarountula[];
//extern const u8 gMonFootprint_Tarountula[];
//extern const u32 gMonFrontPic_Spidops[];
//extern const u32 gMonPalette_Spidops[];
//extern const u32 gMonBackPic_Spidops[];
//extern const u32 gMonShinyPalette_Spidops[];
//extern const u8 gMonIcon_Spidops[];
//extern const u8 gMonFootprint_Spidops[];
//extern const u32 gMonFrontPic_Nymble[];
//extern const u32 gMonPalette_Nymble[];
//extern const u32 gMonBackPic_Nymble[];
//extern const u32 gMonShinyPalette_Nymble[];
//extern const u8 gMonIcon_Nymble[];
//extern const u8 gMonFootprint_Nymble[];
//extern const u32 gMonFrontPic_Lokix[];
//extern const u32 gMonPalette_Lokix[];
//extern const u32 gMonBackPic_Lokix[];
//extern const u32 gMonShinyPalette_Lokix[];
//extern const u8 gMonIcon_Lokix[];
//extern const u8 gMonFootprint_Lokix[];
//extern const u32 gMonFrontPic_Pawmi[];
//extern const u32 gMonPalette_Pawmi[];
//extern const u32 gMonBackPic_Pawmi[];
//extern const u32 gMonShinyPalette_Pawmi[];
//extern const u8 gMonIcon_Pawmi[];
//extern const u8 gMonFootprint_Pawmi[];
//extern const u32 gMonFrontPic_Pawmo[];
//extern const u32 gMonPalette_Pawmo[];
//extern const u32 gMonBackPic_Pawmo[];
//extern const u32 gMonShinyPalette_Pawmo[];
//extern const u8 gMonIcon_Pawmo[];
//extern const u8 gMonFootprint_Pawmo[];
//extern const u32 gMonFrontPic_Pawmot[];
//extern const u32 gMonPalette_Pawmot[];
//extern const u32 gMonBackPic_Pawmot[];
//extern const u32 gMonShinyPalette_Pawmot[];
//extern const u8 gMonIcon_Pawmot[];
//extern const u8 gMonFootprint_Pawmot[];
//extern const u32 gMonFrontPic_Tandemaus[];
//extern const u32 gMonPalette_Tandemaus[];
//extern const u32 gMonBackPic_Tandemaus[];
//extern const u32 gMonShinyPalette_Tandemaus[];
//extern const u8 gMonIcon_Tandemaus[];
//extern const u8 gMonFootprint_Tandemaus[];
//extern const u32 gMonFrontPic_Maushold[];
//extern const u32 gMonPalette_Maushold[];
//extern const u32 gMonBackPic_Maushold[];
//extern const u32 gMonShinyPalette_Maushold[];
//extern const u8 gMonIcon_Maushold[];
//extern const u8 gMonFootprint_Maushold[];
//extern const u32 gMonFrontPic_Fidough[];
//extern const u32 gMonPalette_Fidough[];
//extern const u32 gMonBackPic_Fidough[];
//extern const u32 gMonShinyPalette_Fidough[];
//extern const u8 gMonIcon_Fidough[];
//extern const u8 gMonFootprint_Fidough[];
//extern const u32 gMonFrontPic_Dachsbun[];
//extern const u32 gMonPalette_Dachsbun[];
//extern const u32 gMonBackPic_Dachsbun[];
//extern const u32 gMonShinyPalette_Dachsbun[];
//extern const u8 gMonIcon_Dachsbun[];
//extern const u8 gMonFootprint_Dachsbun[];
//extern const u32 gMonFrontPic_Smoliv[];
//extern const u32 gMonPalette_Smoliv[];
//extern const u32 gMonBackPic_Smoliv[];
//extern const u32 gMonShinyPalette_Smoliv[];
//extern const u8 gMonIcon_Smoliv[];
//extern const u8 gMonFootprint_Smoliv[];
//extern const u32 gMonFrontPic_Dolliv[];
//extern const u32 gMonPalette_Dolliv[];
//extern const u32 gMonBackPic_Dolliv[];
//extern const u32 gMonShinyPalette_Dolliv[];
//extern const u8 gMonIcon_Dolliv[];
//extern const u8 gMonFootprint_Dolliv[];
//extern const u32 gMonFrontPic_Arboliva[];
//extern const u32 gMonPalette_Arboliva[];
//extern const u32 gMonBackPic_Arboliva[];
//extern const u32 gMonShinyPalette_Arboliva[];
//extern const u8 gMonIcon_Arboliva[];
//extern const u8 gMonFootprint_Arboliva[];
//extern const u32 gMonFrontPic_Squawkabilly[];
//extern const u32 gMonPalette_Squawkabilly[];
//extern const u32 gMonBackPic_Squawkabilly[];
//extern const u32 gMonShinyPalette_Squawkabilly[];
//extern const u8 gMonIcon_Squawkabilly[];
//extern const u8 gMonFootprint_Squawkabilly[];
//extern const u32 gMonFrontPic_Nacli[];
//extern const u32 gMonPalette_Nacli[];
//extern const u32 gMonBackPic_Nacli[];
//extern const u32 gMonShinyPalette_Nacli[];
//extern const u8 gMonIcon_Nacli[];
//extern const u8 gMonFootprint_Nacli[];
//extern const u32 gMonFrontPic_Naclstack[];
//extern const u32 gMonPalette_Naclstack[];
//extern const u32 gMonBackPic_Naclstack[];
//extern const u32 gMonShinyPalette_Naclstack[];
//extern const u8 gMonIcon_Naclstack[];
//extern const u8 gMonFootprint_Naclstack[];
//extern const u32 gMonFrontPic_Garganacl[];
//extern const u32 gMonPalette_Garganacl[];
//extern const u32 gMonBackPic_Garganacl[];
//extern const u32 gMonShinyPalette_Garganacl[];
//extern const u8 gMonIcon_Garganacl[];
//extern const u8 gMonFootprint_Garganacl[];
//extern const u32 gMonFrontPic_Charcadet[];
//extern const u32 gMonPalette_Charcadet[];
//extern const u32 gMonBackPic_Charcadet[];
//extern const u32 gMonShinyPalette_Charcadet[];
//extern const u8 gMonIcon_Charcadet[];
//extern const u8 gMonFootprint_Charcadet[];
//extern const u32 gMonFrontPic_Armarouge[];
//extern const u32 gMonPalette_Armarouge[];
//extern const u32 gMonBackPic_Armarouge[];
//extern const u32 gMonShinyPalette_Armarouge[];
//extern const u8 gMonIcon_Armarouge[];
//extern const u8 gMonFootprint_Armarouge[];
//extern const u32 gMonFrontPic_Ceruledge[];
//extern const u32 gMonPalette_Ceruledge[];
//extern const u32 gMonBackPic_Ceruledge[];
//extern const u32 gMonShinyPalette_Ceruledge[];
//extern const u8 gMonIcon_Ceruledge[];
//extern const u8 gMonFootprint_Ceruledge[];
//extern const u32 gMonFrontPic_Tadbulb[];
//extern const u32 gMonPalette_Tadbulb[];
//extern const u32 gMonBackPic_Tadbulb[];
//extern const u32 gMonShinyPalette_Tadbulb[];
//extern const u8 gMonIcon_Tadbulb[];
//extern const u8 gMonFootprint_Tadbulb[];
//extern const u32 gMonFrontPic_Bellibolt[];
//extern const u32 gMonPalette_Bellibolt[];
//extern const u32 gMonBackPic_Bellibolt[];
//extern const u32 gMonShinyPalette_Bellibolt[];
//extern const u8 gMonIcon_Bellibolt[];
//extern const u8 gMonFootprint_Bellibolt[];
//extern const u32 gMonFrontPic_Wattrel[];
//extern const u32 gMonPalette_Wattrel[];
//extern const u32 gMonBackPic_Wattrel[];
//extern const u32 gMonShinyPalette_Wattrel[];
//extern const u8 gMonIcon_Wattrel[];
//extern const u8 gMonFootprint_Wattrel[];
//extern const u32 gMonFrontPic_Kilowattrel[];
//extern const u32 gMonPalette_Kilowattrel[];
//extern const u32 gMonBackPic_Kilowattrel[];
//extern const u32 gMonShinyPalette_Kilowattrel[];
//extern const u8 gMonIcon_Kilowattrel[];
//extern const u8 gMonFootprint_Kilowattrel[];
//extern const u32 gMonFrontPic_Maschiff[];
//extern const u32 gMonPalette_Maschiff[];
//extern const u32 gMonBackPic_Maschiff[];
//extern const u32 gMonShinyPalette_Maschiff[];
//extern const u8 gMonIcon_Maschiff[];
//extern const u8 gMonFootprint_Maschiff[];
//extern const u32 gMonFrontPic_Mabosstiff[];
//extern const u32 gMonPalette_Mabosstiff[];
//extern const u32 gMonBackPic_Mabosstiff[];
//extern const u32 gMonShinyPalette_Mabosstiff[];
//extern const u8 gMonIcon_Mabosstiff[];
//extern const u8 gMonFootprint_Mabosstiff[];
//extern const u32 gMonFrontPic_Shroodle[];
//extern const u32 gMonPalette_Shroodle[];
//extern const u32 gMonBackPic_Shroodle[];
//extern const u32 gMonShinyPalette_Shroodle[];
//extern const u8 gMonIcon_Shroodle[];
//extern const u8 gMonFootprint_Shroodle[];
//extern const u32 gMonFrontPic_Grafaiai[];
//extern const u32 gMonPalette_Grafaiai[];
//extern const u32 gMonBackPic_Grafaiai[];
//extern const u32 gMonShinyPalette_Grafaiai[];
//extern const u8 gMonIcon_Grafaiai[];
//extern const u8 gMonFootprint_Grafaiai[];
//extern const u32 gMonFrontPic_Bramblin[];
//extern const u32 gMonPalette_Bramblin[];
//extern const u32 gMonBackPic_Bramblin[];
//extern const u32 gMonShinyPalette_Bramblin[];
//extern const u8 gMonIcon_Bramblin[];
//extern const u8 gMonFootprint_Bramblin[];
//extern const u32 gMonFrontPic_Brambleghast[];
//extern const u32 gMonPalette_Brambleghast[];
//extern const u32 gMonBackPic_Brambleghast[];
//extern const u32 gMonShinyPalette_Brambleghast[];
//extern const u8 gMonIcon_Brambleghast[];
//extern const u8 gMonFootprint_Brambleghast[];
//extern const u32 gMonFrontPic_Toedscool[];
//extern const u32 gMonPalette_Toedscool[];
//extern const u32 gMonBackPic_Toedscool[];
//extern const u32 gMonShinyPalette_Toedscool[];
//extern const u8 gMonIcon_Toedscool[];
//extern const u8 gMonFootprint_Toedscool[];
//extern const u32 gMonFrontPic_Toedscruel[];
//extern const u32 gMonPalette_Toedscruel[];
//extern const u32 gMonBackPic_Toedscruel[];
//extern const u32 gMonShinyPalette_Toedscruel[];
//extern const u8 gMonIcon_Toedscruel[];
//extern const u8 gMonFootprint_Toedscruel[];
//extern const u32 gMonFrontPic_Klawf[];
//extern const u32 gMonPalette_Klawf[];
//extern const u32 gMonBackPic_Klawf[];
//extern const u32 gMonShinyPalette_Klawf[];
//extern const u8 gMonIcon_Klawf[];
//extern const u8 gMonFootprint_Klawf[];
//extern const u32 gMonFrontPic_Capsakid[];
//extern const u32 gMonPalette_Capsakid[];
//extern const u32 gMonBackPic_Capsakid[];
//extern const u32 gMonShinyPalette_Capsakid[];
//extern const u8 gMonIcon_Capsakid[];
//extern const u8 gMonFootprint_Capsakid[];
//extern const u32 gMonFrontPic_Scovillain[];
//extern const u32 gMonPalette_Scovillain[];
//extern const u32 gMonBackPic_Scovillain[];
//extern const u32 gMonShinyPalette_Scovillain[];
//extern const u8 gMonIcon_Scovillain[];
//extern const u8 gMonFootprint_Scovillain[];
//extern const u32 gMonFrontPic_Rellor[];
//extern const u32 gMonPalette_Rellor[];
//extern const u32 gMonBackPic_Rellor[];
//extern const u32 gMonShinyPalette_Rellor[];
//extern const u8 gMonIcon_Rellor[];
//extern const u8 gMonFootprint_Rellor[];
//extern const u32 gMonFrontPic_Rabsca[];
//extern const u32 gMonPalette_Rabsca[];
//extern const u32 gMonBackPic_Rabsca[];
//extern const u32 gMonShinyPalette_Rabsca[];
//extern const u8 gMonIcon_Rabsca[];
//extern const u8 gMonFootprint_Rabsca[];
//extern const u32 gMonFrontPic_Flittle[];
//extern const u32 gMonPalette_Flittle[];
//extern const u32 gMonBackPic_Flittle[];
//extern const u32 gMonShinyPalette_Flittle[];
//extern const u8 gMonIcon_Flittle[];
//extern const u8 gMonFootprint_Flittle[];
//extern const u32 gMonFrontPic_Espathra[];
//extern const u32 gMonPalette_Espathra[];
//extern const u32 gMonBackPic_Espathra[];
//extern const u32 gMonShinyPalette_Espathra[];
//extern const u8 gMonIcon_Espathra[];
//extern const u8 gMonFootprint_Espathra[];
//extern const u32 gMonFrontPic_Tinkatink[];
//extern const u32 gMonPalette_Tinkatink[];
//extern const u32 gMonBackPic_Tinkatink[];
//extern const u32 gMonShinyPalette_Tinkatink[];
//extern const u8 gMonIcon_Tinkatink[];
//extern const u8 gMonFootprint_Tinkatink[];
//extern const u32 gMonFrontPic_Tinkatuff[];
//extern const u32 gMonPalette_Tinkatuff[];
//extern const u32 gMonBackPic_Tinkatuff[];
//extern const u32 gMonShinyPalette_Tinkatuff[];
//extern const u8 gMonIcon_Tinkatuff[];
//extern const u8 gMonFootprint_Tinkatuff[];
//extern const u32 gMonFrontPic_Tinkaton[];
//extern const u32 gMonPalette_Tinkaton[];
//extern const u32 gMonBackPic_Tinkaton[];
//extern const u32 gMonShinyPalette_Tinkaton[];
//extern const u8 gMonIcon_Tinkaton[];
//extern const u8 gMonFootprint_Tinkaton[];
//extern const u32 gMonFrontPic_Wiglett[];
//extern const u32 gMonPalette_Wiglett[];
//extern const u32 gMonBackPic_Wiglett[];
//extern const u32 gMonShinyPalette_Wiglett[];
//extern const u8 gMonIcon_Wiglett[];
//extern const u8 gMonFootprint_Wiglett[];
//extern const u32 gMonFrontPic_Wugtrio[];
//extern const u32 gMonPalette_Wugtrio[];
//extern const u32 gMonBackPic_Wugtrio[];
//extern const u32 gMonShinyPalette_Wugtrio[];
//extern const u8 gMonIcon_Wugtrio[];
//extern const u8 gMonFootprint_Wugtrio[];
//extern const u32 gMonFrontPic_Bombirdier[];
//extern const u32 gMonPalette_Bombirdier[];
//extern const u32 gMonBackPic_Bombirdier[];
//extern const u32 gMonShinyPalette_Bombirdier[];
//extern const u8 gMonIcon_Bombirdier[];
//extern const u8 gMonFootprint_Bombirdier[];
//extern const u32 gMonFrontPic_Finizen[];
//extern const u32 gMonPalette_Finizen[];
//extern const u32 gMonBackPic_Finizen[];
//extern const u32 gMonShinyPalette_Finizen[];
//extern const u8 gMonIcon_Finizen[];
//extern const u8 gMonFootprint_Finizen[];
//extern const u32 gMonFrontPic_Palafin[];
//extern const u32 gMonPalette_Palafin[];
//extern const u32 gMonBackPic_Palafin[];
//extern const u32 gMonShinyPalette_Palafin[];
//extern const u8 gMonIcon_Palafin[];
//extern const u8 gMonFootprint_Palafin[];
//extern const u32 gMonFrontPic_Varoom[];
//extern const u32 gMonPalette_Varoom[];
//extern const u32 gMonBackPic_Varoom[];
//extern const u32 gMonShinyPalette_Varoom[];
//extern const u8 gMonIcon_Varoom[];
//extern const u8 gMonFootprint_Varoom[];
//extern const u32 gMonFrontPic_Revavroom[];
//extern const u32 gMonPalette_Revavroom[];
//extern const u32 gMonBackPic_Revavroom[];
//extern const u32 gMonShinyPalette_Revavroom[];
//extern const u8 gMonIcon_Revavroom[];
//extern const u8 gMonFootprint_Revavroom[];
//extern const u32 gMonFrontPic_Cyclizar[];
//extern const u32 gMonPalette_Cyclizar[];
//extern const u32 gMonBackPic_Cyclizar[];
//extern const u32 gMonShinyPalette_Cyclizar[];
//extern const u8 gMonIcon_Cyclizar[];
//extern const u8 gMonFootprint_Cyclizar[];
//extern const u32 gMonFrontPic_Orthworm[];
//extern const u32 gMonPalette_Orthworm[];
//extern const u32 gMonBackPic_Orthworm[];
//extern const u32 gMonShinyPalette_Orthworm[];
//extern const u8 gMonIcon_Orthworm[];
//extern const u8 gMonFootprint_Orthworm[];
//extern const u32 gMonFrontPic_Glimmet[];
//extern const u32 gMonPalette_Glimmet[];
//extern const u32 gMonBackPic_Glimmet[];
//extern const u32 gMonShinyPalette_Glimmet[];
//extern const u8 gMonIcon_Glimmet[];
//extern const u8 gMonFootprint_Glimmet[];
//extern const u32 gMonFrontPic_Glimmora[];
//extern const u32 gMonPalette_Glimmora[];
//extern const u32 gMonBackPic_Glimmora[];
//extern const u32 gMonShinyPalette_Glimmora[];
//extern const u8 gMonIcon_Glimmora[];
//extern const u8 gMonFootprint_Glimmora[];
//extern const u32 gMonFrontPic_Greavard[];
//extern const u32 gMonPalette_Greavard[];
//extern const u32 gMonBackPic_Greavard[];
//extern const u32 gMonShinyPalette_Greavard[];
//extern const u8 gMonIcon_Greavard[];
//extern const u8 gMonFootprint_Greavard[];
//extern const u32 gMonFrontPic_Houndstone[];
//extern const u32 gMonPalette_Houndstone[];
//extern const u32 gMonBackPic_Houndstone[];
//extern const u32 gMonShinyPalette_Houndstone[];
//extern const u8 gMonIcon_Houndstone[];
//extern const u8 gMonFootprint_Houndstone[];
//extern const u32 gMonFrontPic_Flamigo[];
//extern const u32 gMonPalette_Flamigo[];
//extern const u32 gMonBackPic_Flamigo[];
//extern const u32 gMonShinyPalette_Flamigo[];
//extern const u8 gMonIcon_Flamigo[];
//extern const u8 gMonFootprint_Flamigo[];
//extern const u32 gMonFrontPic_Cetoddle[];
//extern const u32 gMonPalette_Cetoddle[];
//extern const u32 gMonBackPic_Cetoddle[];
//extern const u32 gMonShinyPalette_Cetoddle[];
//extern const u8 gMonIcon_Cetoddle[];
//extern const u8 gMonFootprint_Cetoddle[];
//extern const u32 gMonFrontPic_Cetitan[];
//extern const u32 gMonPalette_Cetitan[];
//extern const u32 gMonBackPic_Cetitan[];
//extern const u32 gMonShinyPalette_Cetitan[];
//extern const u8 gMonIcon_Cetitan[];
//extern const u8 gMonFootprint_Cetitan[];
//extern const u32 gMonFrontPic_Veluza[];
//extern const u32 gMonPalette_Veluza[];
//extern const u32 gMonBackPic_Veluza[];
//extern const u32 gMonShinyPalette_Veluza[];
//extern const u8 gMonIcon_Veluza[];
//extern const u8 gMonFootprint_Veluza[];
//extern const u32 gMonFrontPic_Dondozo[];
//extern const u32 gMonPalette_Dondozo[];
//extern const u32 gMonBackPic_Dondozo[];
//extern const u32 gMonShinyPalette_Dondozo[];
//extern const u8 gMonIcon_Dondozo[];
//extern const u8 gMonFootprint_Dondozo[];
//extern const u32 gMonFrontPic_Tatsugiri[];
//extern const u32 gMonPalette_Tatsugiri[];
//extern const u32 gMonBackPic_Tatsugiri[];
//extern const u32 gMonShinyPalette_Tatsugiri[];
//extern const u8 gMonIcon_Tatsugiri[];
//extern const u8 gMonFootprint_Tatsugiri[];
//extern const u32 gMonFrontPic_Annihilape[];
//extern const u32 gMonPalette_Annihilape[];
//extern const u32 gMonBackPic_Annihilape[];
//extern const u32 gMonShinyPalette_Annihilape[];
//extern const u8 gMonIcon_Annihilape[];
//extern const u8 gMonFootprint_Annihilape[];
//extern const u32 gMonFrontPic_Clodsire[];
//extern const u32 gMonPalette_Clodsire[];
//extern const u32 gMonBackPic_Clodsire[];
//extern const u32 gMonShinyPalette_Clodsire[];
//extern const u8 gMonIcon_Clodsire[];
//extern const u8 gMonFootprint_Clodsire[];
//extern const u32 gMonFrontPic_Farigiraf[];
//extern const u32 gMonPalette_Farigiraf[];
//extern const u32 gMonBackPic_Farigiraf[];
//extern const u32 gMonShinyPalette_Farigiraf[];
//extern const u8 gMonIcon_Farigiraf[];
//extern const u8 gMonFootprint_Farigiraf[];
//extern const u32 gMonFrontPic_Dudunsparce[];
//extern const u32 gMonPalette_Dudunsparce[];
//extern const u32 gMonBackPic_Dudunsparce[];
//extern const u32 gMonShinyPalette_Dudunsparce[];
//extern const u8 gMonIcon_Dudunsparce[];
//extern const u8 gMonFootprint_Dudunsparce[];
//extern const u32 gMonFrontPic_Kingambit[];
//extern const u32 gMonPalette_Kingambit[];
//extern const u32 gMonBackPic_Kingambit[];
//extern const u32 gMonShinyPalette_Kingambit[];
//extern const u8 gMonIcon_Kingambit[];
//extern const u8 gMonFootprint_Kingambit[];
//extern const u32 gMonFrontPic_GreatTusk[];
//extern const u32 gMonPalette_GreatTusk[];
//extern const u32 gMonBackPic_GreatTusk[];
//extern const u32 gMonShinyPalette_GreatTusk[];
//extern const u8 gMonIcon_GreatTusk[];
//extern const u8 gMonFootprint_GreatTusk[];
//extern const u32 gMonFrontPic_ScreamTail[];
//extern const u32 gMonPalette_ScreamTail[];
//extern const u32 gMonBackPic_ScreamTail[];
//extern const u32 gMonShinyPalette_ScreamTail[];
//extern const u8 gMonIcon_ScreamTail[];
//extern const u8 gMonFootprint_ScreamTail[];
//extern const u32 gMonFrontPic_BruteBonnet[];
//extern const u32 gMonPalette_BruteBonnet[];
//extern const u32 gMonBackPic_BruteBonnet[];
//extern const u32 gMonShinyPalette_BruteBonnet[];
//extern const u8 gMonIcon_BruteBonnet[];
//extern const u8 gMonFootprint_BruteBonnet[];
//extern const u32 gMonFrontPic_FlutterMane[];
//extern const u32 gMonPalette_FlutterMane[];
//extern const u32 gMonBackPic_FlutterMane[];
//extern const u32 gMonShinyPalette_FlutterMane[];
//extern const u8 gMonIcon_FlutterMane[];
//extern const u8 gMonFootprint_FlutterMane[];
//extern const u32 gMonFrontPic_SlitherWing[];
//extern const u32 gMonPalette_SlitherWing[];
//extern const u32 gMonBackPic_SlitherWing[];
//extern const u32 gMonShinyPalette_SlitherWing[];
//extern const u8 gMonIcon_SlitherWing[];
//extern const u8 gMonFootprint_SlitherWing[];
//extern const u32 gMonFrontPic_SandyShocks[];
//extern const u32 gMonPalette_SandyShocks[];
//extern const u32 gMonBackPic_SandyShocks[];
//extern const u32 gMonShinyPalette_SandyShocks[];
//extern const u8 gMonIcon_SandyShocks[];
//extern const u8 gMonFootprint_SandyShocks[];
//extern const u32 gMonFrontPic_IronTreads[];
//extern const u32 gMonPalette_IronTreads[];
//extern const u32 gMonBackPic_IronTreads[];
//extern const u32 gMonShinyPalette_IronTreads[];
//extern const u8 gMonIcon_IronTreads[];
//extern const u8 gMonFootprint_IronTreads[];
//extern const u32 gMonFrontPic_IronBundle[];
//extern const u32 gMonPalette_IronBundle[];
//extern const u32 gMonBackPic_IronBundle[];
//extern const u32 gMonShinyPalette_IronBundle[];
//extern const u8 gMonIcon_IronBundle[];
//extern const u8 gMonFootprint_IronBundle[];
//extern const u32 gMonFrontPic_IronHands[];
//extern const u32 gMonPalette_IronHands[];
//extern const u32 gMonBackPic_IronHands[];
//extern const u32 gMonShinyPalette_IronHands[];
//extern const u8 gMonIcon_IronHands[];
//extern const u8 gMonFootprint_IronHands[];
//extern const u32 gMonFrontPic_IronJugulis[];
//extern const u32 gMonPalette_IronJugulis[];
//extern const u32 gMonBackPic_IronJugulis[];
//extern const u32 gMonShinyPalette_IronJugulis[];
//extern const u8 gMonIcon_IronJugulis[];
//extern const u8 gMonFootprint_IronJugulis[];
//extern const u32 gMonFrontPic_IronMoth[];
//extern const u32 gMonPalette_IronMoth[];
//extern const u32 gMonBackPic_IronMoth[];
//extern const u32 gMonShinyPalette_IronMoth[];
//extern const u8 gMonIcon_IronMoth[];
//extern const u8 gMonFootprint_IronMoth[];
//extern const u32 gMonFrontPic_IronThorns[];
//extern const u32 gMonPalette_IronThorns[];
//extern const u32 gMonBackPic_IronThorns[];
//extern const u32 gMonShinyPalette_IronThorns[];
//extern const u8 gMonIcon_IronThorns[];
//extern const u8 gMonFootprint_IronThorns[];
//extern const u32 gMonFrontPic_Frigibax[];
//extern const u32 gMonPalette_Frigibax[];
//extern const u32 gMonBackPic_Frigibax[];
//extern const u32 gMonShinyPalette_Frigibax[];
//extern const u8 gMonIcon_Frigibax[];
//extern const u8 gMonFootprint_Frigibax[];
//extern const u32 gMonFrontPic_Arctibax[];
//extern const u32 gMonPalette_Arctibax[];
//extern const u32 gMonBackPic_Arctibax[];
//extern const u32 gMonShinyPalette_Arctibax[];
//extern const u8 gMonIcon_Arctibax[];
//extern const u8 gMonFootprint_Arctibax[];
//extern const u32 gMonFrontPic_Baxcalibur[];
//extern const u32 gMonPalette_Baxcalibur[];
//extern const u32 gMonBackPic_Baxcalibur[];
//extern const u32 gMonShinyPalette_Baxcalibur[];
//extern const u8 gMonIcon_Baxcalibur[];
//extern const u8 gMonFootprint_Baxcalibur[];
//extern const u32 gMonFrontPic_Gimmighoul[];
//extern const u32 gMonPalette_Gimmighoul[];
//extern const u32 gMonBackPic_Gimmighoul[];
//extern const u32 gMonShinyPalette_Gimmighoul[];
//extern const u8 gMonIcon_Gimmighoul[];
//extern const u8 gMonFootprint_Gimmighoul[];
//extern const u32 gMonFrontPic_Gholdengo[];
//extern const u32 gMonPalette_Gholdengo[];
//extern const u32 gMonBackPic_Gholdengo[];
//extern const u32 gMonShinyPalette_Gholdengo[];
//extern const u8 gMonIcon_Gholdengo[];
//extern const u8 gMonFootprint_Gholdengo[];
//extern const u32 gMonFrontPic_WoChien[];
//extern const u32 gMonPalette_WoChien[];
//extern const u32 gMonBackPic_WoChien[];
//extern const u32 gMonShinyPalette_WoChien[];
//extern const u8 gMonIcon_WoChien[];
//extern const u8 gMonFootprint_WoChien[];
//extern const u32 gMonFrontPic_ChienPao[];
//extern const u32 gMonPalette_ChienPao[];
//extern const u32 gMonBackPic_ChienPao[];
//extern const u32 gMonShinyPalette_ChienPao[];
//extern const u8 gMonIcon_ChienPao[];
//extern const u8 gMonFootprint_ChienPao[];
//extern const u32 gMonFrontPic_TingLu[];
//extern const u32 gMonPalette_TingLu[];
//extern const u32 gMonBackPic_TingLu[];
//extern const u32 gMonShinyPalette_TingLu[];
//extern const u8 gMonIcon_TingLu[];
//extern const u8 gMonFootprint_TingLu[];
//extern const u32 gMonFrontPic_ChiYu[];
//extern const u32 gMonPalette_ChiYu[];
//extern const u32 gMonBackPic_ChiYu[];
//extern const u32 gMonShinyPalette_ChiYu[];
//extern const u8 gMonIcon_ChiYu[];
//extern const u8 gMonFootprint_ChiYu[];
//extern const u32 gMonFrontPic_RoaringMoon[];
//extern const u32 gMonPalette_RoaringMoon[];
//extern const u32 gMonBackPic_RoaringMoon[];
//extern const u32 gMonShinyPalette_RoaringMoon[];
//extern const u8 gMonIcon_RoaringMoon[];
//extern const u8 gMonFootprint_RoaringMoon[];
//extern const u32 gMonFrontPic_IronValiant[];
//extern const u32 gMonPalette_IronValiant[];
//extern const u32 gMonBackPic_IronValiant[];
//extern const u32 gMonShinyPalette_IronValiant[];
//extern const u8 gMonIcon_IronValiant[];
//extern const u8 gMonFootprint_IronValiant[];
//extern const u32 gMonFrontPic_Koraidon[];
//extern const u32 gMonPalette_Koraidon[];
//extern const u32 gMonBackPic_Koraidon[];
//extern const u32 gMonShinyPalette_Koraidon[];
//extern const u8 gMonIcon_Koraidon[];
//extern const u8 gMonFootprint_Koraidon[];
//extern const u32 gMonFrontPic_Miraidon[];
//extern const u32 gMonPalette_Miraidon[];
//extern const u32 gMonBackPic_Miraidon[];
//extern const u32 gMonShinyPalette_Miraidon[];
//extern const u8 gMonIcon_Miraidon[];
//extern const u8 gMonFootprint_Miraidon[];
//extern const u32 gMonFrontPic_WalkingWake[];
//extern const u32 gMonPalette_WalkingWake[];
//extern const u32 gMonBackPic_WalkingWake[];
//extern const u32 gMonShinyPalette_WalkingWake[];
//extern const u8 gMonIcon_WalkingWake[];
//extern const u8 gMonFootprint_WalkingWake[];
//extern const u32 gMonFrontPic_IronLeaves[];
//extern const u32 gMonPalette_IronLeaves[];
//extern const u32 gMonBackPic_IronLeaves[];
//extern const u32 gMonShinyPalette_IronLeaves[];
//extern const u8 gMonIcon_IronLeaves[];
//extern const u8 gMonFootprint_IronLeaves[];
#endif
// trainer sprites
extern const u32 gTrainerFrontPic_Hiker[];

View File

@ -1438,6 +1438,113 @@ gCryTable::
cry Cry_Unown
cry Cry_Unown
cry Cry_Unown
.endif
.if P_GEN_9_POKEMON == TRUE
cry Cry_Unown //Cry_Sprigatito
cry Cry_Unown //Cry_Floragato
cry Cry_Unown //Cry_Meowscarada
cry Cry_Unown //Cry_Fuecoco
cry Cry_Unown //Cry_Crocalor
cry Cry_Unown //Cry_Skeledirge
cry Cry_Unown //Cry_Quaxly
cry Cry_Unown //Cry_Quaxwell
cry Cry_Unown //Cry_Quaquaval
cry Cry_Unown //Cry_Lechonk
cry Cry_Unown //Cry_Oinkologne
cry Cry_Unown //Cry_Tarountula
cry Cry_Unown //Cry_Spidops
cry Cry_Unown //Cry_Nymble
cry Cry_Unown //Cry_Lokix
cry Cry_Unown //Cry_Pawmi
cry Cry_Unown //Cry_Pawmo
cry Cry_Unown //Cry_Pawmot
cry Cry_Unown //Cry_Tandemaus
cry Cry_Unown //Cry_Maushold
cry Cry_Unown //Cry_Fidough
cry Cry_Unown //Cry_Dachsbun
cry Cry_Unown //Cry_Smoliv
cry Cry_Unown //Cry_Dolliv
cry Cry_Unown //Cry_Arboliva
cry Cry_Unown //Cry_Squawkabilly
cry Cry_Unown //Cry_Nacli
cry Cry_Unown //Cry_Naclstack
cry Cry_Unown //Cry_Garganacl
cry Cry_Unown //Cry_Charcadet
cry Cry_Unown //Cry_Armarouge
cry Cry_Unown //Cry_Ceruledge
cry Cry_Unown //Cry_Tadbulb
cry Cry_Unown //Cry_Bellibolt
cry Cry_Unown //Cry_Wattrel
cry Cry_Unown //Cry_Kilowattrel
cry Cry_Unown //Cry_Maschiff
cry Cry_Unown //Cry_Mabosstiff
cry Cry_Unown //Cry_Shroodle
cry Cry_Unown //Cry_Grafaiai
cry Cry_Unown //Cry_Bramblin
cry Cry_Unown //Cry_Brambleghast
cry Cry_Unown //Cry_Toedscool
cry Cry_Unown //Cry_Toedscruel
cry Cry_Unown //Cry_Klawf
cry Cry_Unown //Cry_Capsakid
cry Cry_Unown //Cry_Scovillain
cry Cry_Unown //Cry_Rellor
cry Cry_Unown //Cry_Rabsca
cry Cry_Unown //Cry_Flittle
cry Cry_Unown //Cry_Espathra
cry Cry_Unown //Cry_Tinkatink
cry Cry_Unown //Cry_Tinkatuff
cry Cry_Unown //Cry_Tinkaton
cry Cry_Unown //Cry_Wiglett
cry Cry_Unown //Cry_Wugtrio
cry Cry_Unown //Cry_Bombirdier
cry Cry_Unown //Cry_Finizen
cry Cry_Unown //Cry_Palafin
cry Cry_Unown //Cry_Varoom
cry Cry_Unown //Cry_Revavroom
cry Cry_Unown //Cry_Cyclizar
cry Cry_Unown //Cry_Orthworm
cry Cry_Unown //Cry_Glimmet
cry Cry_Unown //Cry_Glimmora
cry Cry_Unown //Cry_Greavard
cry Cry_Unown //Cry_Houndstone
cry Cry_Unown //Cry_Flamigo
cry Cry_Unown //Cry_Cetoddle
cry Cry_Unown //Cry_Cetitan
cry Cry_Unown //Cry_Veluza
cry Cry_Unown //Cry_Dondozo
cry Cry_Unown //Cry_Tatsugiri
cry Cry_Unown //Cry_Annihilape
cry Cry_Unown //Cry_Clodsire
cry Cry_Unown //Cry_Farigiraf
cry Cry_Unown //Cry_Dudunsparce
cry Cry_Unown //Cry_Kingambit
cry Cry_Unown //Cry_GreatTusk
cry Cry_Unown //Cry_ScreamTail
cry Cry_Unown //Cry_BruteBonnet
cry Cry_Unown //Cry_FlutterMane
cry Cry_Unown //Cry_SlitherWing
cry Cry_Unown //Cry_SandyShocks
cry Cry_Unown //Cry_IronTreads
cry Cry_Unown //Cry_IronBundle
cry Cry_Unown //Cry_IronHands
cry Cry_Unown //Cry_IronJugulis
cry Cry_Unown //Cry_IronMoth
cry Cry_Unown //Cry_IronThorns
cry Cry_Unown //Cry_Frigibax
cry Cry_Unown //Cry_Arctibax
cry Cry_Unown //Cry_Baxcalibur
cry Cry_Unown //Cry_Gimmighoul
cry Cry_Unown //Cry_Gholdengo
cry Cry_Unown //Cry_WoChien
cry Cry_Unown //Cry_ChienPao
cry Cry_Unown //Cry_TingLu
cry Cry_Unown //Cry_ChiYu
cry Cry_Unown //Cry_RoaringMoon
cry Cry_Unown //Cry_IronValiant
cry Cry_Unown //Cry_Koraidon
cry Cry_Unown //Cry_Miraidon
cry Cry_Unown //Cry_WalkingWake
cry Cry_Unown //Cry_IronLeaves
.endif
@ Megas
cry Cry_VenusaurMega
@ -1588,6 +1695,9 @@ gCryTable::
.else
cry Cry_Unown
.endif
@ Paldean Forms
cry Cry_Wooper
cry Cry_Tauros
@ Misc Forms
@ Cosplay Pikachu
cry Cry_Pikachu
@ -2122,6 +2232,11 @@ gCryTable::
cry Cry_Unown
@ Basculegion
cry Cry_Unown
.endif
.if P_GEN_9_POKEMON == TRUE
.else
.endif
.align 2
@ -3564,6 +3679,113 @@ gCryTable_Reverse::
cry_reverse Cry_Unown
cry_reverse Cry_Unown
cry_reverse Cry_Unown
.endif
.if P_GEN_9_POKEMON == TRUE
cry_reverse Cry_Unown //Cry_Sprigatito
cry_reverse Cry_Unown //Cry_Floragato
cry_reverse Cry_Unown //Cry_Meowscarada
cry_reverse Cry_Unown //Cry_Fuecoco
cry_reverse Cry_Unown //Cry_Crocalor
cry_reverse Cry_Unown //Cry_Skeledirge
cry_reverse Cry_Unown //Cry_Quaxly
cry_reverse Cry_Unown //Cry_Quaxwell
cry_reverse Cry_Unown //Cry_Quaquaval
cry_reverse Cry_Unown //Cry_Lechonk
cry_reverse Cry_Unown //Cry_Oinkologne
cry_reverse Cry_Unown //Cry_Tarountula
cry_reverse Cry_Unown //Cry_Spidops
cry_reverse Cry_Unown //Cry_Nymble
cry_reverse Cry_Unown //Cry_Lokix
cry_reverse Cry_Unown //Cry_Pawmi
cry_reverse Cry_Unown //Cry_Pawmo
cry_reverse Cry_Unown //Cry_Pawmot
cry_reverse Cry_Unown //Cry_Tandemaus
cry_reverse Cry_Unown //Cry_Maushold
cry_reverse Cry_Unown //Cry_Fidough
cry_reverse Cry_Unown //Cry_Dachsbun
cry_reverse Cry_Unown //Cry_Smoliv
cry_reverse Cry_Unown //Cry_Dolliv
cry_reverse Cry_Unown //Cry_Arboliva
cry_reverse Cry_Unown //Cry_Squawkabilly
cry_reverse Cry_Unown //Cry_Nacli
cry_reverse Cry_Unown //Cry_Naclstack
cry_reverse Cry_Unown //Cry_Garganacl
cry_reverse Cry_Unown //Cry_Charcadet
cry_reverse Cry_Unown //Cry_Armarouge
cry_reverse Cry_Unown //Cry_Ceruledge
cry_reverse Cry_Unown //Cry_Tadbulb
cry_reverse Cry_Unown //Cry_Bellibolt
cry_reverse Cry_Unown //Cry_Wattrel
cry_reverse Cry_Unown //Cry_Kilowattrel
cry_reverse Cry_Unown //Cry_Maschiff
cry_reverse Cry_Unown //Cry_Mabosstiff
cry_reverse Cry_Unown //Cry_Shroodle
cry_reverse Cry_Unown //Cry_Grafaiai
cry_reverse Cry_Unown //Cry_Bramblin
cry_reverse Cry_Unown //Cry_Brambleghast
cry_reverse Cry_Unown //Cry_Toedscool
cry_reverse Cry_Unown //Cry_Toedscruel
cry_reverse Cry_Unown //Cry_Klawf
cry_reverse Cry_Unown //Cry_Capsakid
cry_reverse Cry_Unown //Cry_Scovillain
cry_reverse Cry_Unown //Cry_Rellor
cry_reverse Cry_Unown //Cry_Rabsca
cry_reverse Cry_Unown //Cry_Flittle
cry_reverse Cry_Unown //Cry_Espathra
cry_reverse Cry_Unown //Cry_Tinkatink
cry_reverse Cry_Unown //Cry_Tinkatuff
cry_reverse Cry_Unown //Cry_Tinkaton
cry_reverse Cry_Unown //Cry_Wiglett
cry_reverse Cry_Unown //Cry_Wugtrio
cry_reverse Cry_Unown //Cry_Bombirdier
cry_reverse Cry_Unown //Cry_Finizen
cry_reverse Cry_Unown //Cry_Palafin
cry_reverse Cry_Unown //Cry_Varoom
cry_reverse Cry_Unown //Cry_Revavroom
cry_reverse Cry_Unown //Cry_Cyclizar
cry_reverse Cry_Unown //Cry_Orthworm
cry_reverse Cry_Unown //Cry_Glimmet
cry_reverse Cry_Unown //Cry_Glimmora
cry_reverse Cry_Unown //Cry_Greavard
cry_reverse Cry_Unown //Cry_Houndstone
cry_reverse Cry_Unown //Cry_Flamigo
cry_reverse Cry_Unown //Cry_Cetoddle
cry_reverse Cry_Unown //Cry_Cetitan
cry_reverse Cry_Unown //Cry_Veluza
cry_reverse Cry_Unown //Cry_Dondozo
cry_reverse Cry_Unown //Cry_Tatsugiri
cry_reverse Cry_Unown //Cry_Annihilape
cry_reverse Cry_Unown //Cry_Clodsire
cry_reverse Cry_Unown //Cry_Farigiraf
cry_reverse Cry_Unown //Cry_Dudunsparce
cry_reverse Cry_Unown //Cry_Kingambit
cry_reverse Cry_Unown //Cry_GreatTusk
cry_reverse Cry_Unown //Cry_ScreamTail
cry_reverse Cry_Unown //Cry_BruteBonnet
cry_reverse Cry_Unown //Cry_FlutterMane
cry_reverse Cry_Unown //Cry_SlitherWing
cry_reverse Cry_Unown //Cry_SandyShocks
cry_reverse Cry_Unown //Cry_IronTreads
cry_reverse Cry_Unown //Cry_IronBundle
cry_reverse Cry_Unown //Cry_IronHands
cry_reverse Cry_Unown //Cry_IronJugulis
cry_reverse Cry_Unown //Cry_IronMoth
cry_reverse Cry_Unown //Cry_IronThorns
cry_reverse Cry_Unown //Cry_Frigibax
cry_reverse Cry_Unown //Cry_Arctibax
cry_reverse Cry_Unown //Cry_Baxcalibur
cry_reverse Cry_Unown //Cry_Gimmighoul
cry_reverse Cry_Unown //Cry_Gholdengo
cry_reverse Cry_Unown //Cry_WoChien
cry_reverse Cry_Unown //Cry_ChienPao
cry_reverse Cry_Unown //Cry_TingLu
cry_reverse Cry_Unown //Cry_ChiYu
cry_reverse Cry_Unown //Cry_RoaringMoon
cry_reverse Cry_Unown //Cry_IronValiant
cry_reverse Cry_Unown //Cry_Koraidon
cry_reverse Cry_Unown //Cry_Miraidon
cry_reverse Cry_Unown //Cry_WalkingWake
cry_reverse Cry_Unown //Cry_IronLeaves
.endif
@ Megas
cry_reverse Cry_VenusaurMega
@ -3714,6 +3936,9 @@ gCryTable_Reverse::
.else
cry_reverse Cry_Unown
.endif
@ Paldean Forms
cry_reverse Cry_Wooper
cry_reverse Cry_Tauros
@ Misc Forms
@ Cosplay Pikachu
cry_reverse Cry_Pikachu

View File

@ -4364,6 +4364,428 @@ Cry_CalyrexIceRider::
Cry_CalyrexShadowRider::
.incbin "sound/direct_sound_samples/cries/calyrex_shadow_rider.bin"
.endif
.if P_GEN_9_POKEMON == TRUE
// .align 2
//Cry_Sprigatito::
// .incbin "sound/direct_sound_samples/cries/sprigatito.bin"
// .align 2
//Cry_Floragato::
// .incbin "sound/direct_sound_samples/cries/floragato.bin"
// .align 2
//Cry_Meowscarada::
// .incbin "sound/direct_sound_samples/cries/meowscarada.bin"
// .align 2
//Cry_Fuecoco::
// .incbin "sound/direct_sound_samples/cries/fuecoco.bin"
// .align 2
//Cry_Crocalor::
// .incbin "sound/direct_sound_samples/cries/crocalor.bin"
// .align 2
//Cry_Skeledirge::
// .incbin "sound/direct_sound_samples/cries/skeledirge.bin"
// .align 2
//Cry_Quaxly::
// .incbin "sound/direct_sound_samples/cries/quaxly.bin"
// .align 2
//Cry_Quaxwell::
// .incbin "sound/direct_sound_samples/cries/quaxwell.bin"
// .align 2
//Cry_Quaquaval::
// .incbin "sound/direct_sound_samples/cries/quaquaval.bin"
// .align 2
//Cry_Lechonk::
// .incbin "sound/direct_sound_samples/cries/lechonk.bin"
// .align 2
//Cry_Oinkologne::
// .incbin "sound/direct_sound_samples/cries/oinkologne.bin"
// .align 2
//Cry_Tarountula::
// .incbin "sound/direct_sound_samples/cries/tarountula.bin"
// .align 2
//Cry_Spidops::
// .incbin "sound/direct_sound_samples/cries/spidops.bin"
// .align 2
//Cry_Nymble::
// .incbin "sound/direct_sound_samples/cries/nymble.bin"
// .align 2
//Cry_Lokix::
// .incbin "sound/direct_sound_samples/cries/lokix.bin"
// .align 2
//Cry_Pawmi::
// .incbin "sound/direct_sound_samples/cries/pawmi.bin"
// .align 2
//Cry_Pawmo::
// .incbin "sound/direct_sound_samples/cries/pawmo.bin"
// .align 2
//Cry_Pawmot::
// .incbin "sound/direct_sound_samples/cries/pawmot.bin"
// .align 2
//Cry_Tandemaus::
// .incbin "sound/direct_sound_samples/cries/tandemaus.bin"
// .align 2
//Cry_Maushold::
// .incbin "sound/direct_sound_samples/cries/maushold.bin"
// .align 2
//Cry_Fidough::
// .incbin "sound/direct_sound_samples/cries/fidough.bin"
// .align 2
//Cry_Dachsbun::
// .incbin "sound/direct_sound_samples/cries/dachsbun.bin"
// .align 2
//Cry_Smoliv::
// .incbin "sound/direct_sound_samples/cries/smoliv.bin"
// .align 2
//Cry_Dolliv::
// .incbin "sound/direct_sound_samples/cries/dolliv.bin"
// .align 2
//Cry_Arboliva::
// .incbin "sound/direct_sound_samples/cries/arboliva.bin"
// .align 2
//Cry_Squawkabilly::
// .incbin "sound/direct_sound_samples/cries/squawkabilly.bin"
// .align 2
//Cry_Nacli::
// .incbin "sound/direct_sound_samples/cries/nacli.bin"
// .align 2
//Cry_Naclstack::
// .incbin "sound/direct_sound_samples/cries/naclstack.bin"
// .align 2
//Cry_Garganacl::
// .incbin "sound/direct_sound_samples/cries/garganacl.bin"
// .align 2
//Cry_Charcadet::
// .incbin "sound/direct_sound_samples/cries/charcadet.bin"
// .align 2
//Cry_Armarouge::
// .incbin "sound/direct_sound_samples/cries/armarouge.bin"
// .align 2
//Cry_Ceruledge::
// .incbin "sound/direct_sound_samples/cries/ceruledge.bin"
// .align 2
//Cry_Tadbulb::
// .incbin "sound/direct_sound_samples/cries/tadbulb.bin"
// .align 2
//Cry_Bellibolt::
// .incbin "sound/direct_sound_samples/cries/bellibolt.bin"
// .align 2
//Cry_Wattrel::
// .incbin "sound/direct_sound_samples/cries/wattrel.bin"
// .align 2
//Cry_Kilowattrel::
// .incbin "sound/direct_sound_samples/cries/kilowattrel.bin"
// .align 2
//Cry_Maschiff::
// .incbin "sound/direct_sound_samples/cries/maschiff.bin"
// .align 2
//Cry_Mabosstiff::
// .incbin "sound/direct_sound_samples/cries/mabosstiff.bin"
// .align 2
//Cry_Shroodle::
// .incbin "sound/direct_sound_samples/cries/shroodle.bin"
// .align 2
//Cry_Grafaiai::
// .incbin "sound/direct_sound_samples/cries/grafaiai.bin"
// .align 2
//Cry_Bramblin::
// .incbin "sound/direct_sound_samples/cries/bramblin.bin"
// .align 2
//Cry_Brambleghast::
// .incbin "sound/direct_sound_samples/cries/brambleghast.bin"
// .align 2
//Cry_Toedscool::
// .incbin "sound/direct_sound_samples/cries/toedscool.bin"
// .align 2
//Cry_Toedscruel::
// .incbin "sound/direct_sound_samples/cries/toedscruel.bin"
// .align 2
//Cry_Klawf::
// .incbin "sound/direct_sound_samples/cries/klawf.bin"
// .align 2
//Cry_Capsakid::
// .incbin "sound/direct_sound_samples/cries/capsakid.bin"
// .align 2
//Cry_Scovillain::
// .incbin "sound/direct_sound_samples/cries/scovillain.bin"
// .align 2
//Cry_Rellor::
// .incbin "sound/direct_sound_samples/cries/rellor.bin"
// .align 2
//Cry_Rabsca::
// .incbin "sound/direct_sound_samples/cries/rabsca.bin"
// .align 2
//Cry_Flittle::
// .incbin "sound/direct_sound_samples/cries/flittle.bin"
// .align 2
//Cry_Espathra::
// .incbin "sound/direct_sound_samples/cries/espathra.bin"
// .align 2
//Cry_Tinkatink::
// .incbin "sound/direct_sound_samples/cries/tinkatink.bin"
// .align 2
//Cry_Tinkatuff::
// .incbin "sound/direct_sound_samples/cries/tinkatuff.bin"
// .align 2
//Cry_Tinkaton::
// .incbin "sound/direct_sound_samples/cries/tinkaton.bin"
// .align 2
//Cry_Wiglett::
// .incbin "sound/direct_sound_samples/cries/wiglett.bin"
// .align 2
//Cry_Wugtrio::
// .incbin "sound/direct_sound_samples/cries/wugtrio.bin"
// .align 2
//Cry_Bombirdier::
// .incbin "sound/direct_sound_samples/cries/bombirdier.bin"
// .align 2
//Cry_Finizen::
// .incbin "sound/direct_sound_samples/cries/finizen.bin"
// .align 2
//Cry_Palafin::
// .incbin "sound/direct_sound_samples/cries/palafin.bin"
// .align 2
//Cry_Varoom::
// .incbin "sound/direct_sound_samples/cries/varoom.bin"
// .align 2
//Cry_Revavroom::
// .incbin "sound/direct_sound_samples/cries/revavroom.bin"
// .align 2
//Cry_Cyclizar::
// .incbin "sound/direct_sound_samples/cries/cyclizar.bin"
// .align 2
//Cry_Orthworm::
// .incbin "sound/direct_sound_samples/cries/orthworm.bin"
// .align 2
//Cry_Glimmet::
// .incbin "sound/direct_sound_samples/cries/glimmet.bin"
// .align 2
//Cry_Glimmora::
// .incbin "sound/direct_sound_samples/cries/glimmora.bin"
// .align 2
//Cry_Greavard::
// .incbin "sound/direct_sound_samples/cries/greavard.bin"
// .align 2
//Cry_Houndstone::
// .incbin "sound/direct_sound_samples/cries/houndstone.bin"
// .align 2
//Cry_Flamigo::
// .incbin "sound/direct_sound_samples/cries/flamigo.bin"
// .align 2
//Cry_Cetoddle::
// .incbin "sound/direct_sound_samples/cries/cetoddle.bin"
// .align 2
//Cry_Cetitan::
// .incbin "sound/direct_sound_samples/cries/cetitan.bin"
// .align 2
//Cry_Veluza::
// .incbin "sound/direct_sound_samples/cries/veluza.bin"
// .align 2
//Cry_Dondozo::
// .incbin "sound/direct_sound_samples/cries/dondozo.bin"
// .align 2
//Cry_Tatsugiri::
// .incbin "sound/direct_sound_samples/cries/tatsugiri.bin"
// .align 2
//Cry_Annihilape::
// .incbin "sound/direct_sound_samples/cries/annihilape.bin"
// .align 2
//Cry_Clodsire::
// .incbin "sound/direct_sound_samples/cries/clodsire.bin"
// .align 2
//Cry_Farigiraf::
// .incbin "sound/direct_sound_samples/cries/farigiraf.bin"
// .align 2
//Cry_Dudunsparce::
// .incbin "sound/direct_sound_samples/cries/dudunsparce.bin"
// .align 2
//Cry_Kingambit::
// .incbin "sound/direct_sound_samples/cries/kingambit.bin"
// .align 2
//Cry_GreatTusk::
// .incbin "sound/direct_sound_samples/cries/greattusk.bin"
// .align 2
//Cry_ScreamTail::
// .incbin "sound/direct_sound_samples/cries/screamtail.bin"
// .align 2
//Cry_BruteBonnet::
// .incbin "sound/direct_sound_samples/cries/brutebonnet.bin"
// .align 2
//Cry_FlutterMane::
// .incbin "sound/direct_sound_samples/cries/fluttermane.bin"
// .align 2
//Cry_SlitherWing::
// .incbin "sound/direct_sound_samples/cries/slitherwing.bin"
// .align 2
//Cry_SandyShocks::
// .incbin "sound/direct_sound_samples/cries/sandyshocks.bin"
// .align 2
//Cry_IronTreads::
// .incbin "sound/direct_sound_samples/cries/irontreads.bin"
// .align 2
//Cry_IronBundle::
// .incbin "sound/direct_sound_samples/cries/ironbundle.bin"
// .align 2
//Cry_IronHands::
// .incbin "sound/direct_sound_samples/cries/ironhands.bin"
// .align 2
//Cry_IronJugulis::
// .incbin "sound/direct_sound_samples/cries/ironjugulis.bin"
// .align 2
//Cry_IronMoth::
// .incbin "sound/direct_sound_samples/cries/ironmoth.bin"
// .align 2
//Cry_IronThorns::
// .incbin "sound/direct_sound_samples/cries/ironthorns.bin"
// .align 2
//Cry_Frigibax::
// .incbin "sound/direct_sound_samples/cries/frigibax.bin"
// .align 2
//Cry_Arctibax::
// .incbin "sound/direct_sound_samples/cries/arctibax.bin"
// .align 2
//Cry_Baxcalibur::
// .incbin "sound/direct_sound_samples/cries/baxcalibur.bin"
// .align 2
//Cry_Gimmighoul::
// .incbin "sound/direct_sound_samples/cries/gimmighoul.bin"
// .align 2
//Cry_Gholdengo::
// .incbin "sound/direct_sound_samples/cries/gholdengo.bin"
// .align 2
//Cry_WoChien::
// .incbin "sound/direct_sound_samples/cries/wochien.bin"
// .align 2
//Cry_ChienPao::
// .incbin "sound/direct_sound_samples/cries/chienpao.bin"
// .align 2
//Cry_TingLu::
// .incbin "sound/direct_sound_samples/cries/tinglu.bin"
// .align 2
//Cry_ChiYu::
// .incbin "sound/direct_sound_samples/cries/chiyu.bin"
// .align 2
//Cry_RoaringMoon::
// .incbin "sound/direct_sound_samples/cries/roaringmoon.bin"
// .align 2
//Cry_IronValiant::
// .incbin "sound/direct_sound_samples/cries/ironvaliant.bin"
// .align 2
//Cry_Koraidon::
// .incbin "sound/direct_sound_samples/cries/koraidon.bin"
// .align 2
//Cry_Miraidon::
// .incbin "sound/direct_sound_samples/cries/miraidon.bin"
// .align 2
//Cry_WalkingWake::
// .incbin "sound/direct_sound_samples/cries/walkingwake.bin"
// .align 2
//Cry_IronLeaves::
// .incbin "sound/direct_sound_samples/cries/ironleaves.bin"
.endif
.align 2

View File

@ -7173,3 +7173,740 @@ const u8 gMonFootprint_Calyrex[] = INCBIN_U8("graphics/pokemon/calyrex/footprint
//const u8 gMonFootprint_Overqwil[] = INCBIN_U8("graphics/pokemon/overqwil/footprint.1bpp");
//const u8 gMonFootprint_Enamorus[] = INCBIN_U8("graphics/pokemon/enamorus/footprint.1bpp");
#endif
#if P_GEN_9_POKEMON == TRUE
//const u32 gMonFrontPic_Sprigatito[] = INCBIN_U32("graphics/pokemon/sprigatito/front.4bpp.lz");
//const u32 gMonPalette_Sprigatito[] = INCBIN_U32("graphics/pokemon/sprigatito/normal.gbapal.lz");
//const u32 gMonBackPic_Sprigatito[] = INCBIN_U32("graphics/pokemon/sprigatito/back.4bpp.lz");
//const u32 gMonShinyPalette_Sprigatito[] = INCBIN_U32("graphics/pokemon/sprigatito/shiny.gbapal.lz");
//const u8 gMonIcon_Sprigatito[] = INCBIN_U8("graphics/pokemon/sprigatito/icon.4bpp");
//const u8 gMonFootprint_Sprigatito[] = INCBIN_U8("graphics/pokemon/sprigatito/footprint.1bpp");
//const u32 gMonFrontPic_Floragato[] = INCBIN_U32("graphics/pokemon/floragato/front.4bpp.lz");
//const u32 gMonPalette_Floragato[] = INCBIN_U32("graphics/pokemon/floragato/normal.gbapal.lz");
//const u32 gMonBackPic_Floragato[] = INCBIN_U32("graphics/pokemon/floragato/back.4bpp.lz");
//const u32 gMonShinyPalette_Floragato[] = INCBIN_U32("graphics/pokemon/floragato/shiny.gbapal.lz");
//const u8 gMonIcon_Floragato[] = INCBIN_U8("graphics/pokemon/floragato/icon.4bpp");
//const u8 gMonFootprint_Floragato[] = INCBIN_U8("graphics/pokemon/floragato/footprint.1bpp");
//const u32 gMonFrontPic_Meowscarada[] = INCBIN_U32("graphics/pokemon/meowscarada/front.4bpp.lz");
//const u32 gMonPalette_Meowscarada[] = INCBIN_U32("graphics/pokemon/meowscarada/normal.gbapal.lz");
//const u32 gMonBackPic_Meowscarada[] = INCBIN_U32("graphics/pokemon/meowscarada/back.4bpp.lz");
//const u32 gMonShinyPalette_Meowscarada[] = INCBIN_U32("graphics/pokemon/meowscarada/shiny.gbapal.lz");
//const u8 gMonIcon_Meowscarada[] = INCBIN_U8("graphics/pokemon/meowscarada/icon.4bpp");
//const u8 gMonFootprint_Meowscarada[] = INCBIN_U8("graphics/pokemon/meowscarada/footprint.1bpp");
//const u32 gMonFrontPic_Fuecoco[] = INCBIN_U32("graphics/pokemon/fuecoco/front.4bpp.lz");
//const u32 gMonPalette_Fuecoco[] = INCBIN_U32("graphics/pokemon/fuecoco/normal.gbapal.lz");
//const u32 gMonBackPic_Fuecoco[] = INCBIN_U32("graphics/pokemon/fuecoco/back.4bpp.lz");
//const u32 gMonShinyPalette_Fuecoco[] = INCBIN_U32("graphics/pokemon/fuecoco/shiny.gbapal.lz");
//const u8 gMonIcon_Fuecoco[] = INCBIN_U8("graphics/pokemon/fuecoco/icon.4bpp");
//const u8 gMonFootprint_Fuecoco[] = INCBIN_U8("graphics/pokemon/fuecoco/footprint.1bpp");
//const u32 gMonFrontPic_Crocalor[] = INCBIN_U32("graphics/pokemon/crocalor/front.4bpp.lz");
//const u32 gMonPalette_Crocalor[] = INCBIN_U32("graphics/pokemon/crocalor/normal.gbapal.lz");
//const u32 gMonBackPic_Crocalor[] = INCBIN_U32("graphics/pokemon/crocalor/back.4bpp.lz");
//const u32 gMonShinyPalette_Crocalor[] = INCBIN_U32("graphics/pokemon/crocalor/shiny.gbapal.lz");
//const u8 gMonIcon_Crocalor[] = INCBIN_U8("graphics/pokemon/crocalor/icon.4bpp");
//const u8 gMonFootprint_Crocalor[] = INCBIN_U8("graphics/pokemon/crocalor/footprint.1bpp");
//const u32 gMonFrontPic_Skeledirge[] = INCBIN_U32("graphics/pokemon/skeledirge/front.4bpp.lz");
//const u32 gMonPalette_Skeledirge[] = INCBIN_U32("graphics/pokemon/skeledirge/normal.gbapal.lz");
//const u32 gMonBackPic_Skeledirge[] = INCBIN_U32("graphics/pokemon/skeledirge/back.4bpp.lz");
//const u32 gMonShinyPalette_Skeledirge[] = INCBIN_U32("graphics/pokemon/skeledirge/shiny.gbapal.lz");
//const u8 gMonIcon_Skeledirge[] = INCBIN_U8("graphics/pokemon/skeledirge/icon.4bpp");
//const u8 gMonFootprint_Skeledirge[] = INCBIN_U8("graphics/pokemon/skeledirge/footprint.1bpp");
//const u32 gMonFrontPic_Quaxly[] = INCBIN_U32("graphics/pokemon/quaxly/front.4bpp.lz");
//const u32 gMonPalette_Quaxly[] = INCBIN_U32("graphics/pokemon/quaxly/normal.gbapal.lz");
//const u32 gMonBackPic_Quaxly[] = INCBIN_U32("graphics/pokemon/quaxly/back.4bpp.lz");
//const u32 gMonShinyPalette_Quaxly[] = INCBIN_U32("graphics/pokemon/quaxly/shiny.gbapal.lz");
//const u8 gMonIcon_Quaxly[] = INCBIN_U8("graphics/pokemon/quaxly/icon.4bpp");
//const u8 gMonFootprint_Quaxly[] = INCBIN_U8("graphics/pokemon/quaxly/footprint.1bpp");
//const u32 gMonFrontPic_Quaxwell[] = INCBIN_U32("graphics/pokemon/quaxwell/front.4bpp.lz");
//const u32 gMonPalette_Quaxwell[] = INCBIN_U32("graphics/pokemon/quaxwell/normal.gbapal.lz");
//const u32 gMonBackPic_Quaxwell[] = INCBIN_U32("graphics/pokemon/quaxwell/back.4bpp.lz");
//const u32 gMonShinyPalette_Quaxwell[] = INCBIN_U32("graphics/pokemon/quaxwell/shiny.gbapal.lz");
//const u8 gMonIcon_Quaxwell[] = INCBIN_U8("graphics/pokemon/quaxwell/icon.4bpp");
//const u8 gMonFootprint_Quaxwell[] = INCBIN_U8("graphics/pokemon/quaxwell/footprint.1bpp");
//const u32 gMonFrontPic_Quaquaval[] = INCBIN_U32("graphics/pokemon/quaquaval/front.4bpp.lz");
//const u32 gMonPalette_Quaquaval[] = INCBIN_U32("graphics/pokemon/quaquaval/normal.gbapal.lz");
//const u32 gMonBackPic_Quaquaval[] = INCBIN_U32("graphics/pokemon/quaquaval/back.4bpp.lz");
//const u32 gMonShinyPalette_Quaquaval[] = INCBIN_U32("graphics/pokemon/quaquaval/shiny.gbapal.lz");
//const u8 gMonIcon_Quaquaval[] = INCBIN_U8("graphics/pokemon/quaquaval/icon.4bpp");
//const u8 gMonFootprint_Quaquaval[] = INCBIN_U8("graphics/pokemon/quaquaval/footprint.1bpp");
//const u32 gMonFrontPic_Lechonk[] = INCBIN_U32("graphics/pokemon/lechonk/front.4bpp.lz");
//const u32 gMonPalette_Lechonk[] = INCBIN_U32("graphics/pokemon/lechonk/normal.gbapal.lz");
//const u32 gMonBackPic_Lechonk[] = INCBIN_U32("graphics/pokemon/lechonk/back.4bpp.lz");
//const u32 gMonShinyPalette_Lechonk[] = INCBIN_U32("graphics/pokemon/lechonk/shiny.gbapal.lz");
//const u8 gMonIcon_Lechonk[] = INCBIN_U8("graphics/pokemon/lechonk/icon.4bpp");
//const u8 gMonFootprint_Lechonk[] = INCBIN_U8("graphics/pokemon/lechonk/footprint.1bpp");
//const u32 gMonFrontPic_Oinkologne[] = INCBIN_U32("graphics/pokemon/oinkologne/front.4bpp.lz");
//const u32 gMonPalette_Oinkologne[] = INCBIN_U32("graphics/pokemon/oinkologne/normal.gbapal.lz");
//const u32 gMonBackPic_Oinkologne[] = INCBIN_U32("graphics/pokemon/oinkologne/back.4bpp.lz");
//const u32 gMonShinyPalette_Oinkologne[] = INCBIN_U32("graphics/pokemon/oinkologne/shiny.gbapal.lz");
//const u8 gMonIcon_Oinkologne[] = INCBIN_U8("graphics/pokemon/oinkologne/icon.4bpp");
//const u8 gMonFootprint_Oinkologne[] = INCBIN_U8("graphics/pokemon/oinkologne/footprint.1bpp");
//const u32 gMonFrontPic_Tarountula[] = INCBIN_U32("graphics/pokemon/tarountula/front.4bpp.lz");
//const u32 gMonPalette_Tarountula[] = INCBIN_U32("graphics/pokemon/tarountula/normal.gbapal.lz");
//const u32 gMonBackPic_Tarountula[] = INCBIN_U32("graphics/pokemon/tarountula/back.4bpp.lz");
//const u32 gMonShinyPalette_Tarountula[] = INCBIN_U32("graphics/pokemon/tarountula/shiny.gbapal.lz");
//const u8 gMonIcon_Tarountula[] = INCBIN_U8("graphics/pokemon/tarountula/icon.4bpp");
//const u8 gMonFootprint_Tarountula[] = INCBIN_U8("graphics/pokemon/tarountula/footprint.1bpp");
//const u32 gMonFrontPic_Spidops[] = INCBIN_U32("graphics/pokemon/spidops/front.4bpp.lz");
//const u32 gMonPalette_Spidops[] = INCBIN_U32("graphics/pokemon/spidops/normal.gbapal.lz");
//const u32 gMonBackPic_Spidops[] = INCBIN_U32("graphics/pokemon/spidops/back.4bpp.lz");
//const u32 gMonShinyPalette_Spidops[] = INCBIN_U32("graphics/pokemon/spidops/shiny.gbapal.lz");
//const u8 gMonIcon_Spidops[] = INCBIN_U8("graphics/pokemon/spidops/icon.4bpp");
//const u8 gMonFootprint_Spidops[] = INCBIN_U8("graphics/pokemon/spidops/footprint.1bpp");
//const u32 gMonFrontPic_Nymble[] = INCBIN_U32("graphics/pokemon/nymble/front.4bpp.lz");
//const u32 gMonPalette_Nymble[] = INCBIN_U32("graphics/pokemon/nymble/normal.gbapal.lz");
//const u32 gMonBackPic_Nymble[] = INCBIN_U32("graphics/pokemon/nymble/back.4bpp.lz");
//const u32 gMonShinyPalette_Nymble[] = INCBIN_U32("graphics/pokemon/nymble/shiny.gbapal.lz");
//const u8 gMonIcon_Nymble[] = INCBIN_U8("graphics/pokemon/nymble/icon.4bpp");
//const u8 gMonFootprint_Nymble[] = INCBIN_U8("graphics/pokemon/nymble/footprint.1bpp");
//const u32 gMonFrontPic_Lokix[] = INCBIN_U32("graphics/pokemon/lokix/front.4bpp.lz");
//const u32 gMonPalette_Lokix[] = INCBIN_U32("graphics/pokemon/lokix/normal.gbapal.lz");
//const u32 gMonBackPic_Lokix[] = INCBIN_U32("graphics/pokemon/lokix/back.4bpp.lz");
//const u32 gMonShinyPalette_Lokix[] = INCBIN_U32("graphics/pokemon/lokix/shiny.gbapal.lz");
//const u8 gMonIcon_Lokix[] = INCBIN_U8("graphics/pokemon/lokix/icon.4bpp");
//const u8 gMonFootprint_Lokix[] = INCBIN_U8("graphics/pokemon/lokix/footprint.1bpp");
//const u32 gMonFrontPic_Pawmi[] = INCBIN_U32("graphics/pokemon/pawmi/front.4bpp.lz");
//const u32 gMonPalette_Pawmi[] = INCBIN_U32("graphics/pokemon/pawmi/normal.gbapal.lz");
//const u32 gMonBackPic_Pawmi[] = INCBIN_U32("graphics/pokemon/pawmi/back.4bpp.lz");
//const u32 gMonShinyPalette_Pawmi[] = INCBIN_U32("graphics/pokemon/pawmi/shiny.gbapal.lz");
//const u8 gMonIcon_Pawmi[] = INCBIN_U8("graphics/pokemon/pawmi/icon.4bpp");
//const u8 gMonFootprint_Pawmi[] = INCBIN_U8("graphics/pokemon/pawmi/footprint.1bpp");
//const u32 gMonFrontPic_Pawmo[] = INCBIN_U32("graphics/pokemon/pawmo/front.4bpp.lz");
//const u32 gMonPalette_Pawmo[] = INCBIN_U32("graphics/pokemon/pawmo/normal.gbapal.lz");
//const u32 gMonBackPic_Pawmo[] = INCBIN_U32("graphics/pokemon/pawmo/back.4bpp.lz");
//const u32 gMonShinyPalette_Pawmo[] = INCBIN_U32("graphics/pokemon/pawmo/shiny.gbapal.lz");
//const u8 gMonIcon_Pawmo[] = INCBIN_U8("graphics/pokemon/pawmo/icon.4bpp");
//const u8 gMonFootprint_Pawmo[] = INCBIN_U8("graphics/pokemon/pawmo/footprint.1bpp");
//const u32 gMonFrontPic_Pawmot[] = INCBIN_U32("graphics/pokemon/pawmot/front.4bpp.lz");
//const u32 gMonPalette_Pawmot[] = INCBIN_U32("graphics/pokemon/pawmot/normal.gbapal.lz");
//const u32 gMonBackPic_Pawmot[] = INCBIN_U32("graphics/pokemon/pawmot/back.4bpp.lz");
//const u32 gMonShinyPalette_Pawmot[] = INCBIN_U32("graphics/pokemon/pawmot/shiny.gbapal.lz");
//const u8 gMonIcon_Pawmot[] = INCBIN_U8("graphics/pokemon/pawmot/icon.4bpp");
//const u8 gMonFootprint_Pawmot[] = INCBIN_U8("graphics/pokemon/pawmot/footprint.1bpp");
//const u32 gMonFrontPic_Tandemaus[] = INCBIN_U32("graphics/pokemon/tandemaus/front.4bpp.lz");
//const u32 gMonPalette_Tandemaus[] = INCBIN_U32("graphics/pokemon/tandemaus/normal.gbapal.lz");
//const u32 gMonBackPic_Tandemaus[] = INCBIN_U32("graphics/pokemon/tandemaus/back.4bpp.lz");
//const u32 gMonShinyPalette_Tandemaus[] = INCBIN_U32("graphics/pokemon/tandemaus/shiny.gbapal.lz");
//const u8 gMonIcon_Tandemaus[] = INCBIN_U8("graphics/pokemon/tandemaus/icon.4bpp");
//const u8 gMonFootprint_Tandemaus[] = INCBIN_U8("graphics/pokemon/tandemaus/footprint.1bpp");
//const u32 gMonFrontPic_Maushold[] = INCBIN_U32("graphics/pokemon/maushold/front.4bpp.lz");
//const u32 gMonPalette_Maushold[] = INCBIN_U32("graphics/pokemon/maushold/normal.gbapal.lz");
//const u32 gMonBackPic_Maushold[] = INCBIN_U32("graphics/pokemon/maushold/back.4bpp.lz");
//const u32 gMonShinyPalette_Maushold[] = INCBIN_U32("graphics/pokemon/maushold/shiny.gbapal.lz");
//const u8 gMonIcon_Maushold[] = INCBIN_U8("graphics/pokemon/maushold/icon.4bpp");
//const u8 gMonFootprint_Maushold[] = INCBIN_U8("graphics/pokemon/maushold/footprint.1bpp");
//const u32 gMonFrontPic_Fidough[] = INCBIN_U32("graphics/pokemon/fidough/front.4bpp.lz");
//const u32 gMonPalette_Fidough[] = INCBIN_U32("graphics/pokemon/fidough/normal.gbapal.lz");
//const u32 gMonBackPic_Fidough[] = INCBIN_U32("graphics/pokemon/fidough/back.4bpp.lz");
//const u32 gMonShinyPalette_Fidough[] = INCBIN_U32("graphics/pokemon/fidough/shiny.gbapal.lz");
//const u8 gMonIcon_Fidough[] = INCBIN_U8("graphics/pokemon/fidough/icon.4bpp");
//const u8 gMonFootprint_Fidough[] = INCBIN_U8("graphics/pokemon/fidough/footprint.1bpp");
//const u32 gMonFrontPic_Dachsbun[] = INCBIN_U32("graphics/pokemon/dachsbun/front.4bpp.lz");
//const u32 gMonPalette_Dachsbun[] = INCBIN_U32("graphics/pokemon/dachsbun/normal.gbapal.lz");
//const u32 gMonBackPic_Dachsbun[] = INCBIN_U32("graphics/pokemon/dachsbun/back.4bpp.lz");
//const u32 gMonShinyPalette_Dachsbun[] = INCBIN_U32("graphics/pokemon/dachsbun/shiny.gbapal.lz");
//const u8 gMonIcon_Dachsbun[] = INCBIN_U8("graphics/pokemon/dachsbun/icon.4bpp");
//const u8 gMonFootprint_Dachsbun[] = INCBIN_U8("graphics/pokemon/dachsbun/footprint.1bpp");
//const u32 gMonFrontPic_Smoliv[] = INCBIN_U32("graphics/pokemon/smoliv/front.4bpp.lz");
//const u32 gMonPalette_Smoliv[] = INCBIN_U32("graphics/pokemon/smoliv/normal.gbapal.lz");
//const u32 gMonBackPic_Smoliv[] = INCBIN_U32("graphics/pokemon/smoliv/back.4bpp.lz");
//const u32 gMonShinyPalette_Smoliv[] = INCBIN_U32("graphics/pokemon/smoliv/shiny.gbapal.lz");
//const u8 gMonIcon_Smoliv[] = INCBIN_U8("graphics/pokemon/smoliv/icon.4bpp");
//const u8 gMonFootprint_Smoliv[] = INCBIN_U8("graphics/pokemon/smoliv/footprint.1bpp");
//const u32 gMonFrontPic_Dolliv[] = INCBIN_U32("graphics/pokemon/dolliv/front.4bpp.lz");
//const u32 gMonPalette_Dolliv[] = INCBIN_U32("graphics/pokemon/dolliv/normal.gbapal.lz");
//const u32 gMonBackPic_Dolliv[] = INCBIN_U32("graphics/pokemon/dolliv/back.4bpp.lz");
//const u32 gMonShinyPalette_Dolliv[] = INCBIN_U32("graphics/pokemon/dolliv/shiny.gbapal.lz");
//const u8 gMonIcon_Dolliv[] = INCBIN_U8("graphics/pokemon/dolliv/icon.4bpp");
//const u8 gMonFootprint_Dolliv[] = INCBIN_U8("graphics/pokemon/dolliv/footprint.1bpp");
//const u32 gMonFrontPic_Arboliva[] = INCBIN_U32("graphics/pokemon/arboliva/front.4bpp.lz");
//const u32 gMonPalette_Arboliva[] = INCBIN_U32("graphics/pokemon/arboliva/normal.gbapal.lz");
//const u32 gMonBackPic_Arboliva[] = INCBIN_U32("graphics/pokemon/arboliva/back.4bpp.lz");
//const u32 gMonShinyPalette_Arboliva[] = INCBIN_U32("graphics/pokemon/arboliva/shiny.gbapal.lz");
//const u8 gMonIcon_Arboliva[] = INCBIN_U8("graphics/pokemon/arboliva/icon.4bpp");
//const u8 gMonFootprint_Arboliva[] = INCBIN_U8("graphics/pokemon/arboliva/footprint.1bpp");
//const u32 gMonFrontPic_Squawkabilly[] = INCBIN_U32("graphics/pokemon/squawkabilly/front.4bpp.lz");
//const u32 gMonPalette_Squawkabilly[] = INCBIN_U32("graphics/pokemon/squawkabilly/normal.gbapal.lz");
//const u32 gMonBackPic_Squawkabilly[] = INCBIN_U32("graphics/pokemon/squawkabilly/back.4bpp.lz");
//const u32 gMonShinyPalette_Squawkabilly[] = INCBIN_U32("graphics/pokemon/squawkabilly/shiny.gbapal.lz");
//const u8 gMonIcon_Squawkabilly[] = INCBIN_U8("graphics/pokemon/squawkabilly/icon.4bpp");
//const u8 gMonFootprint_Squawkabilly[] = INCBIN_U8("graphics/pokemon/squawkabilly/footprint.1bpp");
//const u32 gMonFrontPic_Nacli[] = INCBIN_U32("graphics/pokemon/nacli/front.4bpp.lz");
//const u32 gMonPalette_Nacli[] = INCBIN_U32("graphics/pokemon/nacli/normal.gbapal.lz");
//const u32 gMonBackPic_Nacli[] = INCBIN_U32("graphics/pokemon/nacli/back.4bpp.lz");
//const u32 gMonShinyPalette_Nacli[] = INCBIN_U32("graphics/pokemon/nacli/shiny.gbapal.lz");
//const u8 gMonIcon_Nacli[] = INCBIN_U8("graphics/pokemon/nacli/icon.4bpp");
//const u8 gMonFootprint_Nacli[] = INCBIN_U8("graphics/pokemon/nacli/footprint.1bpp");
//const u32 gMonFrontPic_Naclstack[] = INCBIN_U32("graphics/pokemon/naclstack/front.4bpp.lz");
//const u32 gMonPalette_Naclstack[] = INCBIN_U32("graphics/pokemon/naclstack/normal.gbapal.lz");
//const u32 gMonBackPic_Naclstack[] = INCBIN_U32("graphics/pokemon/naclstack/back.4bpp.lz");
//const u32 gMonShinyPalette_Naclstack[] = INCBIN_U32("graphics/pokemon/naclstack/shiny.gbapal.lz");
//const u8 gMonIcon_Naclstack[] = INCBIN_U8("graphics/pokemon/naclstack/icon.4bpp");
//const u8 gMonFootprint_Naclstack[] = INCBIN_U8("graphics/pokemon/naclstack/footprint.1bpp");
//const u32 gMonFrontPic_Garganacl[] = INCBIN_U32("graphics/pokemon/garganacl/front.4bpp.lz");
//const u32 gMonPalette_Garganacl[] = INCBIN_U32("graphics/pokemon/garganacl/normal.gbapal.lz");
//const u32 gMonBackPic_Garganacl[] = INCBIN_U32("graphics/pokemon/garganacl/back.4bpp.lz");
//const u32 gMonShinyPalette_Garganacl[] = INCBIN_U32("graphics/pokemon/garganacl/shiny.gbapal.lz");
//const u8 gMonIcon_Garganacl[] = INCBIN_U8("graphics/pokemon/garganacl/icon.4bpp");
//const u8 gMonFootprint_Garganacl[] = INCBIN_U8("graphics/pokemon/garganacl/footprint.1bpp");
//const u32 gMonFrontPic_Charcadet[] = INCBIN_U32("graphics/pokemon/charcadet/front.4bpp.lz");
//const u32 gMonPalette_Charcadet[] = INCBIN_U32("graphics/pokemon/charcadet/normal.gbapal.lz");
//const u32 gMonBackPic_Charcadet[] = INCBIN_U32("graphics/pokemon/charcadet/back.4bpp.lz");
//const u32 gMonShinyPalette_Charcadet[] = INCBIN_U32("graphics/pokemon/charcadet/shiny.gbapal.lz");
//const u8 gMonIcon_Charcadet[] = INCBIN_U8("graphics/pokemon/charcadet/icon.4bpp");
//const u8 gMonFootprint_Charcadet[] = INCBIN_U8("graphics/pokemon/charcadet/footprint.1bpp");
//const u32 gMonFrontPic_Armarouge[] = INCBIN_U32("graphics/pokemon/armarouge/front.4bpp.lz");
//const u32 gMonPalette_Armarouge[] = INCBIN_U32("graphics/pokemon/armarouge/normal.gbapal.lz");
//const u32 gMonBackPic_Armarouge[] = INCBIN_U32("graphics/pokemon/armarouge/back.4bpp.lz");
//const u32 gMonShinyPalette_Armarouge[] = INCBIN_U32("graphics/pokemon/armarouge/shiny.gbapal.lz");
//const u8 gMonIcon_Armarouge[] = INCBIN_U8("graphics/pokemon/armarouge/icon.4bpp");
//const u8 gMonFootprint_Armarouge[] = INCBIN_U8("graphics/pokemon/armarouge/footprint.1bpp");
//const u32 gMonFrontPic_Ceruledge[] = INCBIN_U32("graphics/pokemon/ceruledge/front.4bpp.lz");
//const u32 gMonPalette_Ceruledge[] = INCBIN_U32("graphics/pokemon/ceruledge/normal.gbapal.lz");
//const u32 gMonBackPic_Ceruledge[] = INCBIN_U32("graphics/pokemon/ceruledge/back.4bpp.lz");
//const u32 gMonShinyPalette_Ceruledge[] = INCBIN_U32("graphics/pokemon/ceruledge/shiny.gbapal.lz");
//const u8 gMonIcon_Ceruledge[] = INCBIN_U8("graphics/pokemon/ceruledge/icon.4bpp");
//const u8 gMonFootprint_Ceruledge[] = INCBIN_U8("graphics/pokemon/ceruledge/footprint.1bpp");
//const u32 gMonFrontPic_Tadbulb[] = INCBIN_U32("graphics/pokemon/tadbulb/front.4bpp.lz");
//const u32 gMonPalette_Tadbulb[] = INCBIN_U32("graphics/pokemon/tadbulb/normal.gbapal.lz");
//const u32 gMonBackPic_Tadbulb[] = INCBIN_U32("graphics/pokemon/tadbulb/back.4bpp.lz");
//const u32 gMonShinyPalette_Tadbulb[] = INCBIN_U32("graphics/pokemon/tadbulb/shiny.gbapal.lz");
//const u8 gMonIcon_Tadbulb[] = INCBIN_U8("graphics/pokemon/tadbulb/icon.4bpp");
//const u8 gMonFootprint_Tadbulb[] = INCBIN_U8("graphics/pokemon/tadbulb/footprint.1bpp");
//const u32 gMonFrontPic_Bellibolt[] = INCBIN_U32("graphics/pokemon/bellibolt/front.4bpp.lz");
//const u32 gMonPalette_Bellibolt[] = INCBIN_U32("graphics/pokemon/bellibolt/normal.gbapal.lz");
//const u32 gMonBackPic_Bellibolt[] = INCBIN_U32("graphics/pokemon/bellibolt/back.4bpp.lz");
//const u32 gMonShinyPalette_Bellibolt[] = INCBIN_U32("graphics/pokemon/bellibolt/shiny.gbapal.lz");
//const u8 gMonIcon_Bellibolt[] = INCBIN_U8("graphics/pokemon/bellibolt/icon.4bpp");
//const u8 gMonFootprint_Bellibolt[] = INCBIN_U8("graphics/pokemon/bellibolt/footprint.1bpp");
//const u32 gMonFrontPic_Wattrel[] = INCBIN_U32("graphics/pokemon/wattrel/front.4bpp.lz");
//const u32 gMonPalette_Wattrel[] = INCBIN_U32("graphics/pokemon/wattrel/normal.gbapal.lz");
//const u32 gMonBackPic_Wattrel[] = INCBIN_U32("graphics/pokemon/wattrel/back.4bpp.lz");
//const u32 gMonShinyPalette_Wattrel[] = INCBIN_U32("graphics/pokemon/wattrel/shiny.gbapal.lz");
//const u8 gMonIcon_Wattrel[] = INCBIN_U8("graphics/pokemon/wattrel/icon.4bpp");
//const u8 gMonFootprint_Wattrel[] = INCBIN_U8("graphics/pokemon/wattrel/footprint.1bpp");
//const u32 gMonFrontPic_Kilowattrel[] = INCBIN_U32("graphics/pokemon/kilowattrel/front.4bpp.lz");
//const u32 gMonPalette_Kilowattrel[] = INCBIN_U32("graphics/pokemon/kilowattrel/normal.gbapal.lz");
//const u32 gMonBackPic_Kilowattrel[] = INCBIN_U32("graphics/pokemon/kilowattrel/back.4bpp.lz");
//const u32 gMonShinyPalette_Kilowattrel[] = INCBIN_U32("graphics/pokemon/kilowattrel/shiny.gbapal.lz");
//const u8 gMonIcon_Kilowattrel[] = INCBIN_U8("graphics/pokemon/kilowattrel/icon.4bpp");
//const u8 gMonFootprint_Kilowattrel[] = INCBIN_U8("graphics/pokemon/kilowattrel/footprint.1bpp");
//const u32 gMonFrontPic_Maschiff[] = INCBIN_U32("graphics/pokemon/maschiff/front.4bpp.lz");
//const u32 gMonPalette_Maschiff[] = INCBIN_U32("graphics/pokemon/maschiff/normal.gbapal.lz");
//const u32 gMonBackPic_Maschiff[] = INCBIN_U32("graphics/pokemon/maschiff/back.4bpp.lz");
//const u32 gMonShinyPalette_Maschiff[] = INCBIN_U32("graphics/pokemon/maschiff/shiny.gbapal.lz");
//const u8 gMonIcon_Maschiff[] = INCBIN_U8("graphics/pokemon/maschiff/icon.4bpp");
//const u8 gMonFootprint_Maschiff[] = INCBIN_U8("graphics/pokemon/maschiff/footprint.1bpp");
//const u32 gMonFrontPic_Mabosstiff[] = INCBIN_U32("graphics/pokemon/mabosstiff/front.4bpp.lz");
//const u32 gMonPalette_Mabosstiff[] = INCBIN_U32("graphics/pokemon/mabosstiff/normal.gbapal.lz");
//const u32 gMonBackPic_Mabosstiff[] = INCBIN_U32("graphics/pokemon/mabosstiff/back.4bpp.lz");
//const u32 gMonShinyPalette_Mabosstiff[] = INCBIN_U32("graphics/pokemon/mabosstiff/shiny.gbapal.lz");
//const u8 gMonIcon_Mabosstiff[] = INCBIN_U8("graphics/pokemon/mabosstiff/icon.4bpp");
//const u8 gMonFootprint_Mabosstiff[] = INCBIN_U8("graphics/pokemon/mabosstiff/footprint.1bpp");
//const u32 gMonFrontPic_Shroodle[] = INCBIN_U32("graphics/pokemon/shroodle/front.4bpp.lz");
//const u32 gMonPalette_Shroodle[] = INCBIN_U32("graphics/pokemon/shroodle/normal.gbapal.lz");
//const u32 gMonBackPic_Shroodle[] = INCBIN_U32("graphics/pokemon/shroodle/back.4bpp.lz");
//const u32 gMonShinyPalette_Shroodle[] = INCBIN_U32("graphics/pokemon/shroodle/shiny.gbapal.lz");
//const u8 gMonIcon_Shroodle[] = INCBIN_U8("graphics/pokemon/shroodle/icon.4bpp");
//const u8 gMonFootprint_Shroodle[] = INCBIN_U8("graphics/pokemon/shroodle/footprint.1bpp");
//const u32 gMonFrontPic_Grafaiai[] = INCBIN_U32("graphics/pokemon/grafaiai/front.4bpp.lz");
//const u32 gMonPalette_Grafaiai[] = INCBIN_U32("graphics/pokemon/grafaiai/normal.gbapal.lz");
//const u32 gMonBackPic_Grafaiai[] = INCBIN_U32("graphics/pokemon/grafaiai/back.4bpp.lz");
//const u32 gMonShinyPalette_Grafaiai[] = INCBIN_U32("graphics/pokemon/grafaiai/shiny.gbapal.lz");
//const u8 gMonIcon_Grafaiai[] = INCBIN_U8("graphics/pokemon/grafaiai/icon.4bpp");
//const u8 gMonFootprint_Grafaiai[] = INCBIN_U8("graphics/pokemon/grafaiai/footprint.1bpp");
//const u32 gMonFrontPic_Bramblin[] = INCBIN_U32("graphics/pokemon/bramblin/front.4bpp.lz");
//const u32 gMonPalette_Bramblin[] = INCBIN_U32("graphics/pokemon/bramblin/normal.gbapal.lz");
//const u32 gMonBackPic_Bramblin[] = INCBIN_U32("graphics/pokemon/bramblin/back.4bpp.lz");
//const u32 gMonShinyPalette_Bramblin[] = INCBIN_U32("graphics/pokemon/bramblin/shiny.gbapal.lz");
//const u8 gMonIcon_Bramblin[] = INCBIN_U8("graphics/pokemon/bramblin/icon.4bpp");
//const u8 gMonFootprint_Bramblin[] = INCBIN_U8("graphics/pokemon/bramblin/footprint.1bpp");
//const u32 gMonFrontPic_Brambleghast[] = INCBIN_U32("graphics/pokemon/brambleghast/front.4bpp.lz");
//const u32 gMonPalette_Brambleghast[] = INCBIN_U32("graphics/pokemon/brambleghast/normal.gbapal.lz");
//const u32 gMonBackPic_Brambleghast[] = INCBIN_U32("graphics/pokemon/brambleghast/back.4bpp.lz");
//const u32 gMonShinyPalette_Brambleghast[] = INCBIN_U32("graphics/pokemon/brambleghast/shiny.gbapal.lz");
//const u8 gMonIcon_Brambleghast[] = INCBIN_U8("graphics/pokemon/brambleghast/icon.4bpp");
//const u8 gMonFootprint_Brambleghast[] = INCBIN_U8("graphics/pokemon/brambleghast/footprint.1bpp");
//const u32 gMonFrontPic_Toedscool[] = INCBIN_U32("graphics/pokemon/toedscool/front.4bpp.lz");
//const u32 gMonPalette_Toedscool[] = INCBIN_U32("graphics/pokemon/toedscool/normal.gbapal.lz");
//const u32 gMonBackPic_Toedscool[] = INCBIN_U32("graphics/pokemon/toedscool/back.4bpp.lz");
//const u32 gMonShinyPalette_Toedscool[] = INCBIN_U32("graphics/pokemon/toedscool/shiny.gbapal.lz");
//const u8 gMonIcon_Toedscool[] = INCBIN_U8("graphics/pokemon/toedscool/icon.4bpp");
//const u8 gMonFootprint_Toedscool[] = INCBIN_U8("graphics/pokemon/toedscool/footprint.1bpp");
//const u32 gMonFrontPic_Toedscruel[] = INCBIN_U32("graphics/pokemon/toedscruel/front.4bpp.lz");
//const u32 gMonPalette_Toedscruel[] = INCBIN_U32("graphics/pokemon/toedscruel/normal.gbapal.lz");
//const u32 gMonBackPic_Toedscruel[] = INCBIN_U32("graphics/pokemon/toedscruel/back.4bpp.lz");
//const u32 gMonShinyPalette_Toedscruel[] = INCBIN_U32("graphics/pokemon/toedscruel/shiny.gbapal.lz");
//const u8 gMonIcon_Toedscruel[] = INCBIN_U8("graphics/pokemon/toedscruel/icon.4bpp");
//const u8 gMonFootprint_Toedscruel[] = INCBIN_U8("graphics/pokemon/toedscruel/footprint.1bpp");
//const u32 gMonFrontPic_Klawf[] = INCBIN_U32("graphics/pokemon/klawf/front.4bpp.lz");
//const u32 gMonPalette_Klawf[] = INCBIN_U32("graphics/pokemon/klawf/normal.gbapal.lz");
//const u32 gMonBackPic_Klawf[] = INCBIN_U32("graphics/pokemon/klawf/back.4bpp.lz");
//const u32 gMonShinyPalette_Klawf[] = INCBIN_U32("graphics/pokemon/klawf/shiny.gbapal.lz");
//const u8 gMonIcon_Klawf[] = INCBIN_U8("graphics/pokemon/klawf/icon.4bpp");
//const u8 gMonFootprint_Klawf[] = INCBIN_U8("graphics/pokemon/klawf/footprint.1bpp");
//const u32 gMonFrontPic_Capsakid[] = INCBIN_U32("graphics/pokemon/capsakid/front.4bpp.lz");
//const u32 gMonPalette_Capsakid[] = INCBIN_U32("graphics/pokemon/capsakid/normal.gbapal.lz");
//const u32 gMonBackPic_Capsakid[] = INCBIN_U32("graphics/pokemon/capsakid/back.4bpp.lz");
//const u32 gMonShinyPalette_Capsakid[] = INCBIN_U32("graphics/pokemon/capsakid/shiny.gbapal.lz");
//const u8 gMonIcon_Capsakid[] = INCBIN_U8("graphics/pokemon/capsakid/icon.4bpp");
//const u8 gMonFootprint_Capsakid[] = INCBIN_U8("graphics/pokemon/capsakid/footprint.1bpp");
//const u32 gMonFrontPic_Scovillain[] = INCBIN_U32("graphics/pokemon/scovillain/front.4bpp.lz");
//const u32 gMonPalette_Scovillain[] = INCBIN_U32("graphics/pokemon/scovillain/normal.gbapal.lz");
//const u32 gMonBackPic_Scovillain[] = INCBIN_U32("graphics/pokemon/scovillain/back.4bpp.lz");
//const u32 gMonShinyPalette_Scovillain[] = INCBIN_U32("graphics/pokemon/scovillain/shiny.gbapal.lz");
//const u8 gMonIcon_Scovillain[] = INCBIN_U8("graphics/pokemon/scovillain/icon.4bpp");
//const u8 gMonFootprint_Scovillain[] = INCBIN_U8("graphics/pokemon/scovillain/footprint.1bpp");
//const u32 gMonFrontPic_Rellor[] = INCBIN_U32("graphics/pokemon/rellor/front.4bpp.lz");
//const u32 gMonPalette_Rellor[] = INCBIN_U32("graphics/pokemon/rellor/normal.gbapal.lz");
//const u32 gMonBackPic_Rellor[] = INCBIN_U32("graphics/pokemon/rellor/back.4bpp.lz");
//const u32 gMonShinyPalette_Rellor[] = INCBIN_U32("graphics/pokemon/rellor/shiny.gbapal.lz");
//const u8 gMonIcon_Rellor[] = INCBIN_U8("graphics/pokemon/rellor/icon.4bpp");
//const u8 gMonFootprint_Rellor[] = INCBIN_U8("graphics/pokemon/rellor/footprint.1bpp");
//const u32 gMonFrontPic_Rabsca[] = INCBIN_U32("graphics/pokemon/rabsca/front.4bpp.lz");
//const u32 gMonPalette_Rabsca[] = INCBIN_U32("graphics/pokemon/rabsca/normal.gbapal.lz");
//const u32 gMonBackPic_Rabsca[] = INCBIN_U32("graphics/pokemon/rabsca/back.4bpp.lz");
//const u32 gMonShinyPalette_Rabsca[] = INCBIN_U32("graphics/pokemon/rabsca/shiny.gbapal.lz");
//const u8 gMonIcon_Rabsca[] = INCBIN_U8("graphics/pokemon/rabsca/icon.4bpp");
//const u8 gMonFootprint_Rabsca[] = INCBIN_U8("graphics/pokemon/rabsca/footprint.1bpp");
//const u32 gMonFrontPic_Flittle[] = INCBIN_U32("graphics/pokemon/flittle/front.4bpp.lz");
//const u32 gMonPalette_Flittle[] = INCBIN_U32("graphics/pokemon/flittle/normal.gbapal.lz");
//const u32 gMonBackPic_Flittle[] = INCBIN_U32("graphics/pokemon/flittle/back.4bpp.lz");
//const u32 gMonShinyPalette_Flittle[] = INCBIN_U32("graphics/pokemon/flittle/shiny.gbapal.lz");
//const u8 gMonIcon_Flittle[] = INCBIN_U8("graphics/pokemon/flittle/icon.4bpp");
//const u8 gMonFootprint_Flittle[] = INCBIN_U8("graphics/pokemon/flittle/footprint.1bpp");
//const u32 gMonFrontPic_Espathra[] = INCBIN_U32("graphics/pokemon/espathra/front.4bpp.lz");
//const u32 gMonPalette_Espathra[] = INCBIN_U32("graphics/pokemon/espathra/normal.gbapal.lz");
//const u32 gMonBackPic_Espathra[] = INCBIN_U32("graphics/pokemon/espathra/back.4bpp.lz");
//const u32 gMonShinyPalette_Espathra[] = INCBIN_U32("graphics/pokemon/espathra/shiny.gbapal.lz");
//const u8 gMonIcon_Espathra[] = INCBIN_U8("graphics/pokemon/espathra/icon.4bpp");
//const u8 gMonFootprint_Espathra[] = INCBIN_U8("graphics/pokemon/espathra/footprint.1bpp");
//const u32 gMonFrontPic_Tinkatink[] = INCBIN_U32("graphics/pokemon/tinkatink/front.4bpp.lz");
//const u32 gMonPalette_Tinkatink[] = INCBIN_U32("graphics/pokemon/tinkatink/normal.gbapal.lz");
//const u32 gMonBackPic_Tinkatink[] = INCBIN_U32("graphics/pokemon/tinkatink/back.4bpp.lz");
//const u32 gMonShinyPalette_Tinkatink[] = INCBIN_U32("graphics/pokemon/tinkatink/shiny.gbapal.lz");
//const u8 gMonIcon_Tinkatink[] = INCBIN_U8("graphics/pokemon/tinkatink/icon.4bpp");
//const u8 gMonFootprint_Tinkatink[] = INCBIN_U8("graphics/pokemon/tinkatink/footprint.1bpp");
//const u32 gMonFrontPic_Tinkatuff[] = INCBIN_U32("graphics/pokemon/tinkatuff/front.4bpp.lz");
//const u32 gMonPalette_Tinkatuff[] = INCBIN_U32("graphics/pokemon/tinkatuff/normal.gbapal.lz");
//const u32 gMonBackPic_Tinkatuff[] = INCBIN_U32("graphics/pokemon/tinkatuff/back.4bpp.lz");
//const u32 gMonShinyPalette_Tinkatuff[] = INCBIN_U32("graphics/pokemon/tinkatuff/shiny.gbapal.lz");
//const u8 gMonIcon_Tinkatuff[] = INCBIN_U8("graphics/pokemon/tinkatuff/icon.4bpp");
//const u8 gMonFootprint_Tinkatuff[] = INCBIN_U8("graphics/pokemon/tinkatuff/footprint.1bpp");
//const u32 gMonFrontPic_Tinkaton[] = INCBIN_U32("graphics/pokemon/tinkaton/front.4bpp.lz");
//const u32 gMonPalette_Tinkaton[] = INCBIN_U32("graphics/pokemon/tinkaton/normal.gbapal.lz");
//const u32 gMonBackPic_Tinkaton[] = INCBIN_U32("graphics/pokemon/tinkaton/back.4bpp.lz");
//const u32 gMonShinyPalette_Tinkaton[] = INCBIN_U32("graphics/pokemon/tinkaton/shiny.gbapal.lz");
//const u8 gMonIcon_Tinkaton[] = INCBIN_U8("graphics/pokemon/tinkaton/icon.4bpp");
//const u8 gMonFootprint_Tinkaton[] = INCBIN_U8("graphics/pokemon/tinkaton/footprint.1bpp");
//const u32 gMonFrontPic_Wiglett[] = INCBIN_U32("graphics/pokemon/wiglett/front.4bpp.lz");
//const u32 gMonPalette_Wiglett[] = INCBIN_U32("graphics/pokemon/wiglett/normal.gbapal.lz");
//const u32 gMonBackPic_Wiglett[] = INCBIN_U32("graphics/pokemon/wiglett/back.4bpp.lz");
//const u32 gMonShinyPalette_Wiglett[] = INCBIN_U32("graphics/pokemon/wiglett/shiny.gbapal.lz");
//const u8 gMonIcon_Wiglett[] = INCBIN_U8("graphics/pokemon/wiglett/icon.4bpp");
//const u8 gMonFootprint_Wiglett[] = INCBIN_U8("graphics/pokemon/wiglett/footprint.1bpp");
//const u32 gMonFrontPic_Wugtrio[] = INCBIN_U32("graphics/pokemon/wugtrio/front.4bpp.lz");
//const u32 gMonPalette_Wugtrio[] = INCBIN_U32("graphics/pokemon/wugtrio/normal.gbapal.lz");
//const u32 gMonBackPic_Wugtrio[] = INCBIN_U32("graphics/pokemon/wugtrio/back.4bpp.lz");
//const u32 gMonShinyPalette_Wugtrio[] = INCBIN_U32("graphics/pokemon/wugtrio/shiny.gbapal.lz");
//const u8 gMonIcon_Wugtrio[] = INCBIN_U8("graphics/pokemon/wugtrio/icon.4bpp");
//const u8 gMonFootprint_Wugtrio[] = INCBIN_U8("graphics/pokemon/wugtrio/footprint.1bpp");
//const u32 gMonFrontPic_Bombirdier[] = INCBIN_U32("graphics/pokemon/bombirdier/front.4bpp.lz");
//const u32 gMonPalette_Bombirdier[] = INCBIN_U32("graphics/pokemon/bombirdier/normal.gbapal.lz");
//const u32 gMonBackPic_Bombirdier[] = INCBIN_U32("graphics/pokemon/bombirdier/back.4bpp.lz");
//const u32 gMonShinyPalette_Bombirdier[] = INCBIN_U32("graphics/pokemon/bombirdier/shiny.gbapal.lz");
//const u8 gMonIcon_Bombirdier[] = INCBIN_U8("graphics/pokemon/bombirdier/icon.4bpp");
//const u8 gMonFootprint_Bombirdier[] = INCBIN_U8("graphics/pokemon/bombirdier/footprint.1bpp");
//const u32 gMonFrontPic_Finizen[] = INCBIN_U32("graphics/pokemon/finizen/front.4bpp.lz");
//const u32 gMonPalette_Finizen[] = INCBIN_U32("graphics/pokemon/finizen/normal.gbapal.lz");
//const u32 gMonBackPic_Finizen[] = INCBIN_U32("graphics/pokemon/finizen/back.4bpp.lz");
//const u32 gMonShinyPalette_Finizen[] = INCBIN_U32("graphics/pokemon/finizen/shiny.gbapal.lz");
//const u8 gMonIcon_Finizen[] = INCBIN_U8("graphics/pokemon/finizen/icon.4bpp");
//const u8 gMonFootprint_Finizen[] = INCBIN_U8("graphics/pokemon/finizen/footprint.1bpp");
//const u32 gMonFrontPic_Palafin[] = INCBIN_U32("graphics/pokemon/palafin/front.4bpp.lz");
//const u32 gMonPalette_Palafin[] = INCBIN_U32("graphics/pokemon/palafin/normal.gbapal.lz");
//const u32 gMonBackPic_Palafin[] = INCBIN_U32("graphics/pokemon/palafin/back.4bpp.lz");
//const u32 gMonShinyPalette_Palafin[] = INCBIN_U32("graphics/pokemon/palafin/shiny.gbapal.lz");
//const u8 gMonIcon_Palafin[] = INCBIN_U8("graphics/pokemon/palafin/icon.4bpp");
//const u8 gMonFootprint_Palafin[] = INCBIN_U8("graphics/pokemon/palafin/footprint.1bpp");
//const u32 gMonFrontPic_Varoom[] = INCBIN_U32("graphics/pokemon/varoom/front.4bpp.lz");
//const u32 gMonPalette_Varoom[] = INCBIN_U32("graphics/pokemon/varoom/normal.gbapal.lz");
//const u32 gMonBackPic_Varoom[] = INCBIN_U32("graphics/pokemon/varoom/back.4bpp.lz");
//const u32 gMonShinyPalette_Varoom[] = INCBIN_U32("graphics/pokemon/varoom/shiny.gbapal.lz");
//const u8 gMonIcon_Varoom[] = INCBIN_U8("graphics/pokemon/varoom/icon.4bpp");
//const u8 gMonFootprint_Varoom[] = INCBIN_U8("graphics/pokemon/varoom/footprint.1bpp");
//const u32 gMonFrontPic_Revavroom[] = INCBIN_U32("graphics/pokemon/revavroom/front.4bpp.lz");
//const u32 gMonPalette_Revavroom[] = INCBIN_U32("graphics/pokemon/revavroom/normal.gbapal.lz");
//const u32 gMonBackPic_Revavroom[] = INCBIN_U32("graphics/pokemon/revavroom/back.4bpp.lz");
//const u32 gMonShinyPalette_Revavroom[] = INCBIN_U32("graphics/pokemon/revavroom/shiny.gbapal.lz");
//const u8 gMonIcon_Revavroom[] = INCBIN_U8("graphics/pokemon/revavroom/icon.4bpp");
//const u8 gMonFootprint_Revavroom[] = INCBIN_U8("graphics/pokemon/revavroom/footprint.1bpp");
//const u32 gMonFrontPic_Cyclizar[] = INCBIN_U32("graphics/pokemon/cyclizar/front.4bpp.lz");
//const u32 gMonPalette_Cyclizar[] = INCBIN_U32("graphics/pokemon/cyclizar/normal.gbapal.lz");
//const u32 gMonBackPic_Cyclizar[] = INCBIN_U32("graphics/pokemon/cyclizar/back.4bpp.lz");
//const u32 gMonShinyPalette_Cyclizar[] = INCBIN_U32("graphics/pokemon/cyclizar/shiny.gbapal.lz");
//const u8 gMonIcon_Cyclizar[] = INCBIN_U8("graphics/pokemon/cyclizar/icon.4bpp");
//const u8 gMonFootprint_Cyclizar[] = INCBIN_U8("graphics/pokemon/cyclizar/footprint.1bpp");
//const u32 gMonFrontPic_Orthworm[] = INCBIN_U32("graphics/pokemon/orthworm/front.4bpp.lz");
//const u32 gMonPalette_Orthworm[] = INCBIN_U32("graphics/pokemon/orthworm/normal.gbapal.lz");
//const u32 gMonBackPic_Orthworm[] = INCBIN_U32("graphics/pokemon/orthworm/back.4bpp.lz");
//const u32 gMonShinyPalette_Orthworm[] = INCBIN_U32("graphics/pokemon/orthworm/shiny.gbapal.lz");
//const u8 gMonIcon_Orthworm[] = INCBIN_U8("graphics/pokemon/orthworm/icon.4bpp");
//const u8 gMonFootprint_Orthworm[] = INCBIN_U8("graphics/pokemon/orthworm/footprint.1bpp");
//const u32 gMonFrontPic_Glimmet[] = INCBIN_U32("graphics/pokemon/glimmet/front.4bpp.lz");
//const u32 gMonPalette_Glimmet[] = INCBIN_U32("graphics/pokemon/glimmet/normal.gbapal.lz");
//const u32 gMonBackPic_Glimmet[] = INCBIN_U32("graphics/pokemon/glimmet/back.4bpp.lz");
//const u32 gMonShinyPalette_Glimmet[] = INCBIN_U32("graphics/pokemon/glimmet/shiny.gbapal.lz");
//const u8 gMonIcon_Glimmet[] = INCBIN_U8("graphics/pokemon/glimmet/icon.4bpp");
//const u8 gMonFootprint_Glimmet[] = INCBIN_U8("graphics/pokemon/glimmet/footprint.1bpp");
//const u32 gMonFrontPic_Glimmora[] = INCBIN_U32("graphics/pokemon/glimmora/front.4bpp.lz");
//const u32 gMonPalette_Glimmora[] = INCBIN_U32("graphics/pokemon/glimmora/normal.gbapal.lz");
//const u32 gMonBackPic_Glimmora[] = INCBIN_U32("graphics/pokemon/glimmora/back.4bpp.lz");
//const u32 gMonShinyPalette_Glimmora[] = INCBIN_U32("graphics/pokemon/glimmora/shiny.gbapal.lz");
//const u8 gMonIcon_Glimmora[] = INCBIN_U8("graphics/pokemon/glimmora/icon.4bpp");
//const u8 gMonFootprint_Glimmora[] = INCBIN_U8("graphics/pokemon/glimmora/footprint.1bpp");
//const u32 gMonFrontPic_Greavard[] = INCBIN_U32("graphics/pokemon/greavard/front.4bpp.lz");
//const u32 gMonPalette_Greavard[] = INCBIN_U32("graphics/pokemon/greavard/normal.gbapal.lz");
//const u32 gMonBackPic_Greavard[] = INCBIN_U32("graphics/pokemon/greavard/back.4bpp.lz");
//const u32 gMonShinyPalette_Greavard[] = INCBIN_U32("graphics/pokemon/greavard/shiny.gbapal.lz");
//const u8 gMonIcon_Greavard[] = INCBIN_U8("graphics/pokemon/greavard/icon.4bpp");
//const u8 gMonFootprint_Greavard[] = INCBIN_U8("graphics/pokemon/greavard/footprint.1bpp");
//const u32 gMonFrontPic_Houndstone[] = INCBIN_U32("graphics/pokemon/houndstone/front.4bpp.lz");
//const u32 gMonPalette_Houndstone[] = INCBIN_U32("graphics/pokemon/houndstone/normal.gbapal.lz");
//const u32 gMonBackPic_Houndstone[] = INCBIN_U32("graphics/pokemon/houndstone/back.4bpp.lz");
//const u32 gMonShinyPalette_Houndstone[] = INCBIN_U32("graphics/pokemon/houndstone/shiny.gbapal.lz");
//const u8 gMonIcon_Houndstone[] = INCBIN_U8("graphics/pokemon/houndstone/icon.4bpp");
//const u8 gMonFootprint_Houndstone[] = INCBIN_U8("graphics/pokemon/houndstone/footprint.1bpp");
//const u32 gMonFrontPic_Flamigo[] = INCBIN_U32("graphics/pokemon/flamigo/front.4bpp.lz");
//const u32 gMonPalette_Flamigo[] = INCBIN_U32("graphics/pokemon/flamigo/normal.gbapal.lz");
//const u32 gMonBackPic_Flamigo[] = INCBIN_U32("graphics/pokemon/flamigo/back.4bpp.lz");
//const u32 gMonShinyPalette_Flamigo[] = INCBIN_U32("graphics/pokemon/flamigo/shiny.gbapal.lz");
//const u8 gMonIcon_Flamigo[] = INCBIN_U8("graphics/pokemon/flamigo/icon.4bpp");
//const u8 gMonFootprint_Flamigo[] = INCBIN_U8("graphics/pokemon/flamigo/footprint.1bpp");
//const u32 gMonFrontPic_Cetoddle[] = INCBIN_U32("graphics/pokemon/cetoddle/front.4bpp.lz");
//const u32 gMonPalette_Cetoddle[] = INCBIN_U32("graphics/pokemon/cetoddle/normal.gbapal.lz");
//const u32 gMonBackPic_Cetoddle[] = INCBIN_U32("graphics/pokemon/cetoddle/back.4bpp.lz");
//const u32 gMonShinyPalette_Cetoddle[] = INCBIN_U32("graphics/pokemon/cetoddle/shiny.gbapal.lz");
//const u8 gMonIcon_Cetoddle[] = INCBIN_U8("graphics/pokemon/cetoddle/icon.4bpp");
//const u8 gMonFootprint_Cetoddle[] = INCBIN_U8("graphics/pokemon/cetoddle/footprint.1bpp");
//const u32 gMonFrontPic_Cetitan[] = INCBIN_U32("graphics/pokemon/cetitan/front.4bpp.lz");
//const u32 gMonPalette_Cetitan[] = INCBIN_U32("graphics/pokemon/cetitan/normal.gbapal.lz");
//const u32 gMonBackPic_Cetitan[] = INCBIN_U32("graphics/pokemon/cetitan/back.4bpp.lz");
//const u32 gMonShinyPalette_Cetitan[] = INCBIN_U32("graphics/pokemon/cetitan/shiny.gbapal.lz");
//const u8 gMonIcon_Cetitan[] = INCBIN_U8("graphics/pokemon/cetitan/icon.4bpp");
//const u8 gMonFootprint_Cetitan[] = INCBIN_U8("graphics/pokemon/cetitan/footprint.1bpp");
//const u32 gMonFrontPic_Veluza[] = INCBIN_U32("graphics/pokemon/veluza/front.4bpp.lz");
//const u32 gMonPalette_Veluza[] = INCBIN_U32("graphics/pokemon/veluza/normal.gbapal.lz");
//const u32 gMonBackPic_Veluza[] = INCBIN_U32("graphics/pokemon/veluza/back.4bpp.lz");
//const u32 gMonShinyPalette_Veluza[] = INCBIN_U32("graphics/pokemon/veluza/shiny.gbapal.lz");
//const u8 gMonIcon_Veluza[] = INCBIN_U8("graphics/pokemon/veluza/icon.4bpp");
//const u8 gMonFootprint_Veluza[] = INCBIN_U8("graphics/pokemon/veluza/footprint.1bpp");
//const u32 gMonFrontPic_Dondozo[] = INCBIN_U32("graphics/pokemon/dondozo/front.4bpp.lz");
//const u32 gMonPalette_Dondozo[] = INCBIN_U32("graphics/pokemon/dondozo/normal.gbapal.lz");
//const u32 gMonBackPic_Dondozo[] = INCBIN_U32("graphics/pokemon/dondozo/back.4bpp.lz");
//const u32 gMonShinyPalette_Dondozo[] = INCBIN_U32("graphics/pokemon/dondozo/shiny.gbapal.lz");
//const u8 gMonIcon_Dondozo[] = INCBIN_U8("graphics/pokemon/dondozo/icon.4bpp");
//const u8 gMonFootprint_Dondozo[] = INCBIN_U8("graphics/pokemon/dondozo/footprint.1bpp");
//const u32 gMonFrontPic_Tatsugiri[] = INCBIN_U32("graphics/pokemon/tatsugiri/front.4bpp.lz");
//const u32 gMonPalette_Tatsugiri[] = INCBIN_U32("graphics/pokemon/tatsugiri/normal.gbapal.lz");
//const u32 gMonBackPic_Tatsugiri[] = INCBIN_U32("graphics/pokemon/tatsugiri/back.4bpp.lz");
//const u32 gMonShinyPalette_Tatsugiri[] = INCBIN_U32("graphics/pokemon/tatsugiri/shiny.gbapal.lz");
//const u8 gMonIcon_Tatsugiri[] = INCBIN_U8("graphics/pokemon/tatsugiri/icon.4bpp");
//const u8 gMonFootprint_Tatsugiri[] = INCBIN_U8("graphics/pokemon/tatsugiri/footprint.1bpp");
//const u32 gMonFrontPic_Annihilape[] = INCBIN_U32("graphics/pokemon/annihilape/front.4bpp.lz");
//const u32 gMonPalette_Annihilape[] = INCBIN_U32("graphics/pokemon/annihilape/normal.gbapal.lz");
//const u32 gMonBackPic_Annihilape[] = INCBIN_U32("graphics/pokemon/annihilape/back.4bpp.lz");
//const u32 gMonShinyPalette_Annihilape[] = INCBIN_U32("graphics/pokemon/annihilape/shiny.gbapal.lz");
//const u8 gMonIcon_Annihilape[] = INCBIN_U8("graphics/pokemon/annihilape/icon.4bpp");
//const u8 gMonFootprint_Annihilape[] = INCBIN_U8("graphics/pokemon/annihilape/footprint.1bpp");
//const u32 gMonFrontPic_Clodsire[] = INCBIN_U32("graphics/pokemon/clodsire/front.4bpp.lz");
//const u32 gMonPalette_Clodsire[] = INCBIN_U32("graphics/pokemon/clodsire/normal.gbapal.lz");
//const u32 gMonBackPic_Clodsire[] = INCBIN_U32("graphics/pokemon/clodsire/back.4bpp.lz");
//const u32 gMonShinyPalette_Clodsire[] = INCBIN_U32("graphics/pokemon/clodsire/shiny.gbapal.lz");
//const u8 gMonIcon_Clodsire[] = INCBIN_U8("graphics/pokemon/clodsire/icon.4bpp");
//const u8 gMonFootprint_Clodsire[] = INCBIN_U8("graphics/pokemon/clodsire/footprint.1bpp");
//const u32 gMonFrontPic_Farigiraf[] = INCBIN_U32("graphics/pokemon/farigiraf/front.4bpp.lz");
//const u32 gMonPalette_Farigiraf[] = INCBIN_U32("graphics/pokemon/farigiraf/normal.gbapal.lz");
//const u32 gMonBackPic_Farigiraf[] = INCBIN_U32("graphics/pokemon/farigiraf/back.4bpp.lz");
//const u32 gMonShinyPalette_Farigiraf[] = INCBIN_U32("graphics/pokemon/farigiraf/shiny.gbapal.lz");
//const u8 gMonIcon_Farigiraf[] = INCBIN_U8("graphics/pokemon/farigiraf/icon.4bpp");
//const u8 gMonFootprint_Farigiraf[] = INCBIN_U8("graphics/pokemon/farigiraf/footprint.1bpp");
//const u32 gMonFrontPic_Dudunsparce[] = INCBIN_U32("graphics/pokemon/dudunsparce/front.4bpp.lz");
//const u32 gMonPalette_Dudunsparce[] = INCBIN_U32("graphics/pokemon/dudunsparce/normal.gbapal.lz");
//const u32 gMonBackPic_Dudunsparce[] = INCBIN_U32("graphics/pokemon/dudunsparce/back.4bpp.lz");
//const u32 gMonShinyPalette_Dudunsparce[] = INCBIN_U32("graphics/pokemon/dudunsparce/shiny.gbapal.lz");
//const u8 gMonIcon_Dudunsparce[] = INCBIN_U8("graphics/pokemon/dudunsparce/icon.4bpp");
//const u8 gMonFootprint_Dudunsparce[] = INCBIN_U8("graphics/pokemon/dudunsparce/footprint.1bpp");
//const u32 gMonFrontPic_Kingambit[] = INCBIN_U32("graphics/pokemon/kingambit/front.4bpp.lz");
//const u32 gMonPalette_Kingambit[] = INCBIN_U32("graphics/pokemon/kingambit/normal.gbapal.lz");
//const u32 gMonBackPic_Kingambit[] = INCBIN_U32("graphics/pokemon/kingambit/back.4bpp.lz");
//const u32 gMonShinyPalette_Kingambit[] = INCBIN_U32("graphics/pokemon/kingambit/shiny.gbapal.lz");
//const u8 gMonIcon_Kingambit[] = INCBIN_U8("graphics/pokemon/kingambit/icon.4bpp");
//const u8 gMonFootprint_Kingambit[] = INCBIN_U8("graphics/pokemon/kingambit/footprint.1bpp");
//const u32 gMonFrontPic_GreatTusk[] = INCBIN_U32("graphics/pokemon/greattusk/front.4bpp.lz");
//const u32 gMonPalette_GreatTusk[] = INCBIN_U32("graphics/pokemon/greattusk/normal.gbapal.lz");
//const u32 gMonBackPic_GreatTusk[] = INCBIN_U32("graphics/pokemon/greattusk/back.4bpp.lz");
//const u32 gMonShinyPalette_GreatTusk[] = INCBIN_U32("graphics/pokemon/greattusk/shiny.gbapal.lz");
//const u8 gMonIcon_GreatTusk[] = INCBIN_U8("graphics/pokemon/greattusk/icon.4bpp");
//const u8 gMonFootprint_GreatTusk[] = INCBIN_U8("graphics/pokemon/greattusk/footprint.1bpp");
//const u32 gMonFrontPic_ScreamTail[] = INCBIN_U32("graphics/pokemon/screamtail/front.4bpp.lz");
//const u32 gMonPalette_ScreamTail[] = INCBIN_U32("graphics/pokemon/screamtail/normal.gbapal.lz");
//const u32 gMonBackPic_ScreamTail[] = INCBIN_U32("graphics/pokemon/screamtail/back.4bpp.lz");
//const u32 gMonShinyPalette_ScreamTail[] = INCBIN_U32("graphics/pokemon/screamtail/shiny.gbapal.lz");
//const u8 gMonIcon_ScreamTail[] = INCBIN_U8("graphics/pokemon/screamtail/icon.4bpp");
//const u8 gMonFootprint_ScreamTail[] = INCBIN_U8("graphics/pokemon/screamtail/footprint.1bpp");
//const u32 gMonFrontPic_BruteBonnet[] = INCBIN_U32("graphics/pokemon/brutebonnet/front.4bpp.lz");
//const u32 gMonPalette_BruteBonnet[] = INCBIN_U32("graphics/pokemon/brutebonnet/normal.gbapal.lz");
//const u32 gMonBackPic_BruteBonnet[] = INCBIN_U32("graphics/pokemon/brutebonnet/back.4bpp.lz");
//const u32 gMonShinyPalette_BruteBonnet[] = INCBIN_U32("graphics/pokemon/brutebonnet/shiny.gbapal.lz");
//const u8 gMonIcon_BruteBonnet[] = INCBIN_U8("graphics/pokemon/brutebonnet/icon.4bpp");
//const u8 gMonFootprint_BruteBonnet[] = INCBIN_U8("graphics/pokemon/brutebonnet/footprint.1bpp");
//const u32 gMonFrontPic_FlutterMane[] = INCBIN_U32("graphics/pokemon/fluttermane/front.4bpp.lz");
//const u32 gMonPalette_FlutterMane[] = INCBIN_U32("graphics/pokemon/fluttermane/normal.gbapal.lz");
//const u32 gMonBackPic_FlutterMane[] = INCBIN_U32("graphics/pokemon/fluttermane/back.4bpp.lz");
//const u32 gMonShinyPalette_FlutterMane[] = INCBIN_U32("graphics/pokemon/fluttermane/shiny.gbapal.lz");
//const u8 gMonIcon_FlutterMane[] = INCBIN_U8("graphics/pokemon/fluttermane/icon.4bpp");
//const u8 gMonFootprint_FlutterMane[] = INCBIN_U8("graphics/pokemon/fluttermane/footprint.1bpp");
//const u32 gMonFrontPic_SlitherWing[] = INCBIN_U32("graphics/pokemon/slitherwing/front.4bpp.lz");
//const u32 gMonPalette_SlitherWing[] = INCBIN_U32("graphics/pokemon/slitherwing/normal.gbapal.lz");
//const u32 gMonBackPic_SlitherWing[] = INCBIN_U32("graphics/pokemon/slitherwing/back.4bpp.lz");
//const u32 gMonShinyPalette_SlitherWing[] = INCBIN_U32("graphics/pokemon/slitherwing/shiny.gbapal.lz");
//const u8 gMonIcon_SlitherWing[] = INCBIN_U8("graphics/pokemon/slitherwing/icon.4bpp");
//const u8 gMonFootprint_SlitherWing[] = INCBIN_U8("graphics/pokemon/slitherwing/footprint.1bpp");
//const u32 gMonFrontPic_SandyShocks[] = INCBIN_U32("graphics/pokemon/sandyshocks/front.4bpp.lz");
//const u32 gMonPalette_SandyShocks[] = INCBIN_U32("graphics/pokemon/sandyshocks/normal.gbapal.lz");
//const u32 gMonBackPic_SandyShocks[] = INCBIN_U32("graphics/pokemon/sandyshocks/back.4bpp.lz");
//const u32 gMonShinyPalette_SandyShocks[] = INCBIN_U32("graphics/pokemon/sandyshocks/shiny.gbapal.lz");
//const u8 gMonIcon_SandyShocks[] = INCBIN_U8("graphics/pokemon/sandyshocks/icon.4bpp");
//const u8 gMonFootprint_SandyShocks[] = INCBIN_U8("graphics/pokemon/sandyshocks/footprint.1bpp");
//const u32 gMonFrontPic_IronTreads[] = INCBIN_U32("graphics/pokemon/irontreads/front.4bpp.lz");
//const u32 gMonPalette_IronTreads[] = INCBIN_U32("graphics/pokemon/irontreads/normal.gbapal.lz");
//const u32 gMonBackPic_IronTreads[] = INCBIN_U32("graphics/pokemon/irontreads/back.4bpp.lz");
//const u32 gMonShinyPalette_IronTreads[] = INCBIN_U32("graphics/pokemon/irontreads/shiny.gbapal.lz");
//const u8 gMonIcon_IronTreads[] = INCBIN_U8("graphics/pokemon/irontreads/icon.4bpp");
//const u8 gMonFootprint_IronTreads[] = INCBIN_U8("graphics/pokemon/irontreads/footprint.1bpp");
//const u32 gMonFrontPic_IronBundle[] = INCBIN_U32("graphics/pokemon/ironbundle/front.4bpp.lz");
//const u32 gMonPalette_IronBundle[] = INCBIN_U32("graphics/pokemon/ironbundle/normal.gbapal.lz");
//const u32 gMonBackPic_IronBundle[] = INCBIN_U32("graphics/pokemon/ironbundle/back.4bpp.lz");
//const u32 gMonShinyPalette_IronBundle[] = INCBIN_U32("graphics/pokemon/ironbundle/shiny.gbapal.lz");
//const u8 gMonIcon_IronBundle[] = INCBIN_U8("graphics/pokemon/ironbundle/icon.4bpp");
//const u8 gMonFootprint_IronBundle[] = INCBIN_U8("graphics/pokemon/ironbundle/footprint.1bpp");
//const u32 gMonFrontPic_IronHands[] = INCBIN_U32("graphics/pokemon/ironhands/front.4bpp.lz");
//const u32 gMonPalette_IronHands[] = INCBIN_U32("graphics/pokemon/ironhands/normal.gbapal.lz");
//const u32 gMonBackPic_IronHands[] = INCBIN_U32("graphics/pokemon/ironhands/back.4bpp.lz");
//const u32 gMonShinyPalette_IronHands[] = INCBIN_U32("graphics/pokemon/ironhands/shiny.gbapal.lz");
//const u8 gMonIcon_IronHands[] = INCBIN_U8("graphics/pokemon/ironhands/icon.4bpp");
//const u8 gMonFootprint_IronHands[] = INCBIN_U8("graphics/pokemon/ironhands/footprint.1bpp");
//const u32 gMonFrontPic_IronJugulis[] = INCBIN_U32("graphics/pokemon/ironjugulis/front.4bpp.lz");
//const u32 gMonPalette_IronJugulis[] = INCBIN_U32("graphics/pokemon/ironjugulis/normal.gbapal.lz");
//const u32 gMonBackPic_IronJugulis[] = INCBIN_U32("graphics/pokemon/ironjugulis/back.4bpp.lz");
//const u32 gMonShinyPalette_IronJugulis[] = INCBIN_U32("graphics/pokemon/ironjugulis/shiny.gbapal.lz");
//const u8 gMonIcon_IronJugulis[] = INCBIN_U8("graphics/pokemon/ironjugulis/icon.4bpp");
//const u8 gMonFootprint_IronJugulis[] = INCBIN_U8("graphics/pokemon/ironjugulis/footprint.1bpp");
//const u32 gMonFrontPic_IronMoth[] = INCBIN_U32("graphics/pokemon/ironmoth/front.4bpp.lz");
//const u32 gMonPalette_IronMoth[] = INCBIN_U32("graphics/pokemon/ironmoth/normal.gbapal.lz");
//const u32 gMonBackPic_IronMoth[] = INCBIN_U32("graphics/pokemon/ironmoth/back.4bpp.lz");
//const u32 gMonShinyPalette_IronMoth[] = INCBIN_U32("graphics/pokemon/ironmoth/shiny.gbapal.lz");
//const u8 gMonIcon_IronMoth[] = INCBIN_U8("graphics/pokemon/ironmoth/icon.4bpp");
//const u8 gMonFootprint_IronMoth[] = INCBIN_U8("graphics/pokemon/ironmoth/footprint.1bpp");
//const u32 gMonFrontPic_IronThorns[] = INCBIN_U32("graphics/pokemon/ironthorns/front.4bpp.lz");
//const u32 gMonPalette_IronThorns[] = INCBIN_U32("graphics/pokemon/ironthorns/normal.gbapal.lz");
//const u32 gMonBackPic_IronThorns[] = INCBIN_U32("graphics/pokemon/ironthorns/back.4bpp.lz");
//const u32 gMonShinyPalette_IronThorns[] = INCBIN_U32("graphics/pokemon/ironthorns/shiny.gbapal.lz");
//const u8 gMonIcon_IronThorns[] = INCBIN_U8("graphics/pokemon/ironthorns/icon.4bpp");
//const u8 gMonFootprint_IronThorns[] = INCBIN_U8("graphics/pokemon/ironthorns/footprint.1bpp");
//const u32 gMonFrontPic_Frigibax[] = INCBIN_U32("graphics/pokemon/frigibax/front.4bpp.lz");
//const u32 gMonPalette_Frigibax[] = INCBIN_U32("graphics/pokemon/frigibax/normal.gbapal.lz");
//const u32 gMonBackPic_Frigibax[] = INCBIN_U32("graphics/pokemon/frigibax/back.4bpp.lz");
//const u32 gMonShinyPalette_Frigibax[] = INCBIN_U32("graphics/pokemon/frigibax/shiny.gbapal.lz");
//const u8 gMonIcon_Frigibax[] = INCBIN_U8("graphics/pokemon/frigibax/icon.4bpp");
//const u8 gMonFootprint_Frigibax[] = INCBIN_U8("graphics/pokemon/frigibax/footprint.1bpp");
//const u32 gMonFrontPic_Arctibax[] = INCBIN_U32("graphics/pokemon/arctibax/front.4bpp.lz");
//const u32 gMonPalette_Arctibax[] = INCBIN_U32("graphics/pokemon/arctibax/normal.gbapal.lz");
//const u32 gMonBackPic_Arctibax[] = INCBIN_U32("graphics/pokemon/arctibax/back.4bpp.lz");
//const u32 gMonShinyPalette_Arctibax[] = INCBIN_U32("graphics/pokemon/arctibax/shiny.gbapal.lz");
//const u8 gMonIcon_Arctibax[] = INCBIN_U8("graphics/pokemon/arctibax/icon.4bpp");
//const u8 gMonFootprint_Arctibax[] = INCBIN_U8("graphics/pokemon/arctibax/footprint.1bpp");
//const u32 gMonFrontPic_Baxcalibur[] = INCBIN_U32("graphics/pokemon/baxcalibur/front.4bpp.lz");
//const u32 gMonPalette_Baxcalibur[] = INCBIN_U32("graphics/pokemon/baxcalibur/normal.gbapal.lz");
//const u32 gMonBackPic_Baxcalibur[] = INCBIN_U32("graphics/pokemon/baxcalibur/back.4bpp.lz");
//const u32 gMonShinyPalette_Baxcalibur[] = INCBIN_U32("graphics/pokemon/baxcalibur/shiny.gbapal.lz");
//const u8 gMonIcon_Baxcalibur[] = INCBIN_U8("graphics/pokemon/baxcalibur/icon.4bpp");
//const u8 gMonFootprint_Baxcalibur[] = INCBIN_U8("graphics/pokemon/baxcalibur/footprint.1bpp");
//const u32 gMonFrontPic_Gimmighoul[] = INCBIN_U32("graphics/pokemon/gimmighoul/front.4bpp.lz");
//const u32 gMonPalette_Gimmighoul[] = INCBIN_U32("graphics/pokemon/gimmighoul/normal.gbapal.lz");
//const u32 gMonBackPic_Gimmighoul[] = INCBIN_U32("graphics/pokemon/gimmighoul/back.4bpp.lz");
//const u32 gMonShinyPalette_Gimmighoul[] = INCBIN_U32("graphics/pokemon/gimmighoul/shiny.gbapal.lz");
//const u8 gMonIcon_Gimmighoul[] = INCBIN_U8("graphics/pokemon/gimmighoul/icon.4bpp");
//const u8 gMonFootprint_Gimmighoul[] = INCBIN_U8("graphics/pokemon/gimmighoul/footprint.1bpp");
//const u32 gMonFrontPic_Gholdengo[] = INCBIN_U32("graphics/pokemon/gholdengo/front.4bpp.lz");
//const u32 gMonPalette_Gholdengo[] = INCBIN_U32("graphics/pokemon/gholdengo/normal.gbapal.lz");
//const u32 gMonBackPic_Gholdengo[] = INCBIN_U32("graphics/pokemon/gholdengo/back.4bpp.lz");
//const u32 gMonShinyPalette_Gholdengo[] = INCBIN_U32("graphics/pokemon/gholdengo/shiny.gbapal.lz");
//const u8 gMonIcon_Gholdengo[] = INCBIN_U8("graphics/pokemon/gholdengo/icon.4bpp");
//const u8 gMonFootprint_Gholdengo[] = INCBIN_U8("graphics/pokemon/gholdengo/footprint.1bpp");
//const u32 gMonFrontPic_WoChien[] = INCBIN_U32("graphics/pokemon/wochien/front.4bpp.lz");
//const u32 gMonPalette_WoChien[] = INCBIN_U32("graphics/pokemon/wochien/normal.gbapal.lz");
//const u32 gMonBackPic_WoChien[] = INCBIN_U32("graphics/pokemon/wochien/back.4bpp.lz");
//const u32 gMonShinyPalette_WoChien[] = INCBIN_U32("graphics/pokemon/wochien/shiny.gbapal.lz");
//const u8 gMonIcon_WoChien[] = INCBIN_U8("graphics/pokemon/wochien/icon.4bpp");
//const u8 gMonFootprint_WoChien[] = INCBIN_U8("graphics/pokemon/wochien/footprint.1bpp");
//const u32 gMonFrontPic_ChienPao[] = INCBIN_U32("graphics/pokemon/chienpao/front.4bpp.lz");
//const u32 gMonPalette_ChienPao[] = INCBIN_U32("graphics/pokemon/chienpao/normal.gbapal.lz");
//const u32 gMonBackPic_ChienPao[] = INCBIN_U32("graphics/pokemon/chienpao/back.4bpp.lz");
//const u32 gMonShinyPalette_ChienPao[] = INCBIN_U32("graphics/pokemon/chienpao/shiny.gbapal.lz");
//const u8 gMonIcon_ChienPao[] = INCBIN_U8("graphics/pokemon/chienpao/icon.4bpp");
//const u8 gMonFootprint_ChienPao[] = INCBIN_U8("graphics/pokemon/chienpao/footprint.1bpp");
//const u32 gMonFrontPic_TingLu[] = INCBIN_U32("graphics/pokemon/tinglu/front.4bpp.lz");
//const u32 gMonPalette_TingLu[] = INCBIN_U32("graphics/pokemon/tinglu/normal.gbapal.lz");
//const u32 gMonBackPic_TingLu[] = INCBIN_U32("graphics/pokemon/tinglu/back.4bpp.lz");
//const u32 gMonShinyPalette_TingLu[] = INCBIN_U32("graphics/pokemon/tinglu/shiny.gbapal.lz");
//const u8 gMonIcon_TingLu[] = INCBIN_U8("graphics/pokemon/tinglu/icon.4bpp");
//const u8 gMonFootprint_TingLu[] = INCBIN_U8("graphics/pokemon/tinglu/footprint.1bpp");
//const u32 gMonFrontPic_ChiYu[] = INCBIN_U32("graphics/pokemon/chiyu/front.4bpp.lz");
//const u32 gMonPalette_ChiYu[] = INCBIN_U32("graphics/pokemon/chiyu/normal.gbapal.lz");
//const u32 gMonBackPic_ChiYu[] = INCBIN_U32("graphics/pokemon/chiyu/back.4bpp.lz");
//const u32 gMonShinyPalette_ChiYu[] = INCBIN_U32("graphics/pokemon/chiyu/shiny.gbapal.lz");
//const u8 gMonIcon_ChiYu[] = INCBIN_U8("graphics/pokemon/chiyu/icon.4bpp");
//const u8 gMonFootprint_ChiYu[] = INCBIN_U8("graphics/pokemon/chiyu/footprint.1bpp");
//const u32 gMonFrontPic_RoaringMoon[] = INCBIN_U32("graphics/pokemon/roaringmoon/front.4bpp.lz");
//const u32 gMonPalette_RoaringMoon[] = INCBIN_U32("graphics/pokemon/roaringmoon/normal.gbapal.lz");
//const u32 gMonBackPic_RoaringMoon[] = INCBIN_U32("graphics/pokemon/roaringmoon/back.4bpp.lz");
//const u32 gMonShinyPalette_RoaringMoon[] = INCBIN_U32("graphics/pokemon/roaringmoon/shiny.gbapal.lz");
//const u8 gMonIcon_RoaringMoon[] = INCBIN_U8("graphics/pokemon/roaringmoon/icon.4bpp");
//const u8 gMonFootprint_RoaringMoon[] = INCBIN_U8("graphics/pokemon/roaringmoon/footprint.1bpp");
//const u32 gMonFrontPic_IronValiant[] = INCBIN_U32("graphics/pokemon/ironvaliant/front.4bpp.lz");
//const u32 gMonPalette_IronValiant[] = INCBIN_U32("graphics/pokemon/ironvaliant/normal.gbapal.lz");
//const u32 gMonBackPic_IronValiant[] = INCBIN_U32("graphics/pokemon/ironvaliant/back.4bpp.lz");
//const u32 gMonShinyPalette_IronValiant[] = INCBIN_U32("graphics/pokemon/ironvaliant/shiny.gbapal.lz");
//const u8 gMonIcon_IronValiant[] = INCBIN_U8("graphics/pokemon/ironvaliant/icon.4bpp");
//const u8 gMonFootprint_IronValiant[] = INCBIN_U8("graphics/pokemon/ironvaliant/footprint.1bpp");
//const u32 gMonFrontPic_Koraidon[] = INCBIN_U32("graphics/pokemon/koraidon/front.4bpp.lz");
//const u32 gMonPalette_Koraidon[] = INCBIN_U32("graphics/pokemon/koraidon/normal.gbapal.lz");
//const u32 gMonBackPic_Koraidon[] = INCBIN_U32("graphics/pokemon/koraidon/back.4bpp.lz");
//const u32 gMonShinyPalette_Koraidon[] = INCBIN_U32("graphics/pokemon/koraidon/shiny.gbapal.lz");
//const u8 gMonIcon_Koraidon[] = INCBIN_U8("graphics/pokemon/koraidon/icon.4bpp");
//const u8 gMonFootprint_Koraidon[] = INCBIN_U8("graphics/pokemon/koraidon/footprint.1bpp");
//const u32 gMonFrontPic_Miraidon[] = INCBIN_U32("graphics/pokemon/miraidon/front.4bpp.lz");
//const u32 gMonPalette_Miraidon[] = INCBIN_U32("graphics/pokemon/miraidon/normal.gbapal.lz");
//const u32 gMonBackPic_Miraidon[] = INCBIN_U32("graphics/pokemon/miraidon/back.4bpp.lz");
//const u32 gMonShinyPalette_Miraidon[] = INCBIN_U32("graphics/pokemon/miraidon/shiny.gbapal.lz");
//const u8 gMonIcon_Miraidon[] = INCBIN_U8("graphics/pokemon/miraidon/icon.4bpp");
//const u8 gMonFootprint_Miraidon[] = INCBIN_U8("graphics/pokemon/miraidon/footprint.1bpp");
//const u32 gMonFrontPic_WalkingWake[] = INCBIN_U32("graphics/pokemon/walkingwake/front.4bpp.lz");
//const u32 gMonPalette_WalkingWake[] = INCBIN_U32("graphics/pokemon/walkingwake/normal.gbapal.lz");
//const u32 gMonBackPic_WalkingWake[] = INCBIN_U32("graphics/pokemon/walkingwake/back.4bpp.lz");
//const u32 gMonShinyPalette_WalkingWake[] = INCBIN_U32("graphics/pokemon/walkingwake/shiny.gbapal.lz");
//const u8 gMonIcon_WalkingWake[] = INCBIN_U8("graphics/pokemon/walkingwake/icon.4bpp");
//const u8 gMonFootprint_WalkingWake[] = INCBIN_U8("graphics/pokemon/walkingwake/footprint.1bpp");
//const u32 gMonFrontPic_IronLeaves[] = INCBIN_U32("graphics/pokemon/ironleaves/front.4bpp.lz");
//const u32 gMonPalette_IronLeaves[] = INCBIN_U32("graphics/pokemon/ironleaves/normal.gbapal.lz");
//const u32 gMonBackPic_IronLeaves[] = INCBIN_U32("graphics/pokemon/ironleaves/back.4bpp.lz");
//const u32 gMonShinyPalette_IronLeaves[] = INCBIN_U32("graphics/pokemon/ironleaves/shiny.gbapal.lz");
//const u8 gMonIcon_IronLeaves[] = INCBIN_U8("graphics/pokemon/ironleaves/icon.4bpp");
//const u8 gMonFootprint_IronLeaves[] = INCBIN_U8("graphics/pokemon/ironleaves/footprint.1bpp");
#endif

View File

@ -4422,5 +4422,244 @@ const u16 gEggMoves[] = {
MOVE_PSYCHO_SHIFT,
MOVE_HEAL_PULSE),
#if P_GEN_9_POKEMON == TRUE
egg_moves(SPRIGATITO,
MOVE_ALLY_SWITCH,
MOVE_COPYCAT,
MOVE_LEECH_SEED,
MOVE_PETAL_BLIZZARD,
MOVE_SUCKER_PUNCH),
egg_moves(FUECOCO,
MOVE_BELCH,
MOVE_CURSE,
MOVE_ENCORE,
MOVE_SLACK_OFF),
egg_moves(QUAXLY,
MOVE_DETECT,
MOVE_LAST_RESORT,
MOVE_RAPID_SPIN,
MOVE_ROOST),
egg_moves(LECHONK,
MOVE_ENDEAVOR,
MOVE_SPIT_UP,
MOVE_STOCKPILE,
MOVE_STUFF_CHEEKS,
MOVE_SWALLOW),
egg_moves(TAROUNTULA,
MOVE_FIRST_IMPRESSION,
MOVE_LUNGE,
MOVE_MEMENTO,
MOVE_SUCKER_PUNCH),
egg_moves(NYMBLE,
MOVE_COUNTER,
MOVE_SKITTER_SMACK),
egg_moves(PAWMI,
MOVE_FAKE_OUT,
MOVE_MACH_PUNCH,
MOVE_SWEET_KISS,
MOVE_WISH),
egg_moves(TANDEMAUS,
MOVE_AFTER_YOU,
MOVE_BATON_PASS,
MOVE_BITE,
MOVE_FEINT,
MOVE_SWITCHEROO,
MOVE_TICKLE),
egg_moves(FIDOUGH,
MOVE_COPYCAT,
MOVE_HOWL,
MOVE_SWEET_SCENT,
MOVE_WISH,
MOVE_YAWN),
egg_moves(SMOLIV,
MOVE_MEMENTO,
MOVE_STRENGTH_SAP,
MOVE_SYNTHESIS,
MOVE_WEATHER_BALL),
egg_moves(SQUAWKABILLY,
MOVE_DOUBLE_EDGE,
MOVE_FINAL_GAMBIT,
MOVE_FLATTER,
MOVE_PARTING_SHOT),
egg_moves(NACLI,
MOVE_ANCIENT_POWER,
MOVE_CURSE,
MOVE_FISSURE,
MOVE_POWER_GEM),
egg_moves(CHARCADET,
MOVE_DESTINY_BOND,
MOVE_DISABLE,
MOVE_SPITE),
egg_moves(TADBULB,
MOVE_MUDDY_WATER,
MOVE_PARABOLIC_CHARGE,
MOVE_SOAK),
egg_moves(WATTREL,
MOVE_ENDEAVOR,
MOVE_FEATHER_DANCE,
MOVE_SPIT_UP,
MOVE_STOCKPILE,
MOVE_SWALLOW,
MOVE_WEATHER_BALL),
egg_moves(MASCHIFF,
MOVE_DESTINY_BOND,
MOVE_ENDEAVOR,
MOVE_PLAY_ROUGH,
MOVE_RETALIATE),
egg_moves(SHROODLE,
MOVE_COPYCAT,
MOVE_CROSS_POISON,
MOVE_PARTING_SHOT,
MOVE_SUPER_FANG,
MOVE_SWAGGER,
MOVE_TOXIC),
egg_moves(BRAMBLIN,
MOVE_BEAT_UP,
MOVE_BLOCK,
MOVE_LEECH_SEED,
MOVE_SHADOW_SNEAK,
MOVE_STRENGTH_SAP),
egg_moves(TOEDSCOOL,
MOVE_ACUPRESSURE,
MOVE_KNOCK_OFF,
MOVE_LEECH_SEED,
MOVE_MIRROR_COAT,
MOVE_RAGE_POWDER,
MOVE_RAPID_SPIN,
MOVE_TICKLE,
MOVE_TOXIC),
egg_moves(KLAWF,
MOVE_ANCIENT_POWER,
MOVE_CRABHAMMER,
MOVE_ENDEAVOR,
MOVE_KNOCK_OFF),
egg_moves(CAPSAKID,
MOVE_INGRAIN,
MOVE_LEECH_SEED,
MOVE_RAGE_POWDER,
MOVE_ROLLOUT,
MOVE_WORRY_SEED),
egg_moves(RELLOR,
MOVE_COSMIC_POWER,
MOVE_MEMENTO,
MOVE_RECOVER,
MOVE_WEATHER_BALL),
egg_moves(FLITTLE,
MOVE_ALLY_SWITCH,
MOVE_HYPNOSIS,
MOVE_ROOST),
egg_moves(TINKATINK,
MOVE_FEINT,
MOVE_ICE_HAMMER,
MOVE_QUASH),
egg_moves(WIGLETT,
MOVE_FINAL_GAMBIT,
MOVE_MEMENTO),
egg_moves(BOMBIRDIER,
MOVE_FEATHER_DANCE,
MOVE_POWER_TRIP,
MOVE_ROOST,
MOVE_SKY_ATTACK,
MOVE_SUCKER_PUNCH),
egg_moves(FINIZEN,
MOVE_BOOMBURST,
MOVE_BOUNCE,
MOVE_COUNTER,
MOVE_HAZE,
MOVE_TICKLE),
egg_moves(VAROOM,
MOVE_HAZE,
MOVE_PARTING_SHOT,
MOVE_SELF_DESTRUCT,
MOVE_TORMENT,
MOVE_TOXIC),
egg_moves(CYCLIZAR,
MOVE_AQUA_TAIL,
MOVE_IRON_TAIL,
MOVE_KNOCK_OFF,
MOVE_POWER_WHIP),
egg_moves(ORTHWORM,
MOVE_COIL,
MOVE_CURSE,
MOVE_METAL_BURST),
egg_moves(GLIMMET,
MOVE_EXPLOSION,
MOVE_MEMENTO,
MOVE_TOXIC),
egg_moves(GREAVARD,
MOVE_ALLY_SWITCH,
MOVE_DESTINY_BOND,
MOVE_DISABLE,
MOVE_HOWL,
MOVE_MEMENTO,
MOVE_SHADOW_SNEAK,
MOVE_YAWN),
egg_moves(FLAMIGO,
MOVE_DOUBLE_TEAM,
MOVE_QUICK_GUARD,
MOVE_SKY_ATTACK),
egg_moves(CETODDLE,
MOVE_BELLY_DRUM,
MOVE_ENTRAINMENT,
MOVE_ICICLE_CRASH,
MOVE_SUPERPOWER,
MOVE_YAWN),
egg_moves(VELUZA,
MOVE_RECOVER,
MOVE_THRASH),
egg_moves(DONDOZO,
MOVE_CURSE,
MOVE_FISSURE,
MOVE_THRASH,
MOVE_YAWN),
egg_moves(TATSUGIRI,
MOVE_BATON_PASS,
MOVE_COUNTER,
MOVE_RAPID_SPIN),
egg_moves(FRIGIBAX,
MOVE_AQUA_TAIL,
MOVE_DRAGON_RUSH,
MOVE_FREEZE_DRY,
MOVE_ICICLE_SPEAR),
#endif
EGG_MOVES_TERMINATOR
};

View File

@ -539,6 +539,49 @@ const struct Evolution gEvolutionTable[NUM_SPECIES][EVOS_PER_MON] =
{EVO_ITEM, ITEM_SCROLL_OF_DARKNESS, SPECIES_URSHIFU},
{EVO_WATER_SCROLL, 0, SPECIES_URSHIFU_RAPID_STRIKE_STYLE},
{EVO_ITEM, ITEM_SCROLL_OF_WATERS, SPECIES_URSHIFU_RAPID_STRIKE_STYLE}},
#endif
#if P_GEN_9_POKEMON == TRUE
[SPECIES_SPRIGATITO] = {{EVO_LEVEL, 16, SPECIES_FLORAGATO}},
[SPECIES_FLORAGATO] = {{EVO_LEVEL, 36, SPECIES_MEOWSCARADA}},
[SPECIES_FUECOCO] = {{EVO_LEVEL, 16, SPECIES_CROCALOR}},
[SPECIES_CROCALOR] = {{EVO_LEVEL, 36, SPECIES_SKELEDIRGE}},
[SPECIES_QUAXLY] = {{EVO_LEVEL, 16, SPECIES_QUAXWELL}},
[SPECIES_QUAXWELL] = {{EVO_LEVEL, 36, SPECIES_QUAQUAVAL}},
[SPECIES_LECHONK] = {{EVO_LEVEL_MALE, 18, SPECIES_OINKOLOGNE},
{EVO_LEVEL_FEMALE, 18, SPECIES_OINKOLOGNE_FEMALE}},
[SPECIES_TAROUNTULA] = {{EVO_LEVEL, 15, SPECIES_SPIDOPS}},
[SPECIES_NYMBLE] = {{EVO_LEVEL, 24, SPECIES_LOKIX}},
[SPECIES_PAWMI] = {{EVO_LEVEL, 18, SPECIES_PAWMO}},
[SPECIES_PAWMO] = {{EVO_NONE, 0, SPECIES_PAWMOT}},
[SPECIES_TANDEMAUS] = {{EVO_NONE, 0, SPECIES_MAUSHOLD},
{EVO_NONE, 0, SPECIES_MAUSHOLD_FAMILY_OF_THREE}},
[SPECIES_FIDOUGH] = {{EVO_LEVEL, 26, SPECIES_DACHSBUN}},
[SPECIES_SMOLIV] = {{EVO_LEVEL, 25, SPECIES_DOLLIV}},
[SPECIES_DOLLIV] = {{EVO_LEVEL, 35, SPECIES_ARBOLIVA}},
[SPECIES_NACLI] = {{EVO_LEVEL, 24, SPECIES_NACLSTACK}},
[SPECIES_NACLSTACK] = {{EVO_LEVEL, 38, SPECIES_GARGANACL}},
[SPECIES_CHARCADET] = {{EVO_ITEM, ITEM_AUSPICIOUS_ARMOR, SPECIES_ARMAROUGE},
{EVO_ITEM, ITEM_MALICIOUS_ARMOR, SPECIES_CERULEDGE}},
[SPECIES_TADBULB] = {{EVO_ITEM, ITEM_THUNDER_STONE, SPECIES_BELLIBOLT}},
[SPECIES_WATTREL] = {{EVO_LEVEL, 25, SPECIES_KILOWATTREL}},
[SPECIES_MASCHIFF] = {{EVO_LEVEL, 30, SPECIES_MABOSSTIFF}},
[SPECIES_SHROODLE] = {{EVO_LEVEL, 28, SPECIES_GRAFAIAI}},
[SPECIES_BRAMBLIN] = {{EVO_NONE, 0, SPECIES_BRAMBLEGHAST}},
[SPECIES_TOEDSCOOL] = {{EVO_LEVEL, 30, SPECIES_TOEDSCRUEL}},
[SPECIES_CAPSAKID] = {{EVO_ITEM, ITEM_FIRE_STONE, SPECIES_SCOVILLAIN}},
[SPECIES_RELLOR] = {{EVO_NONE, 0, SPECIES_RABSCA}},
[SPECIES_FLITTLE] = {{EVO_LEVEL, 35, SPECIES_ESPATHRA}},
[SPECIES_TINKATINK] = {{EVO_LEVEL, 24, SPECIES_TINKATUFF}},
[SPECIES_TINKATUFF] = {{EVO_LEVEL, 38, SPECIES_TINKATON}},
[SPECIES_WIGLETT] = {{EVO_LEVEL, 26, SPECIES_WUGTRIO}},
[SPECIES_FINIZEN] = {{EVO_LEVEL, 38, SPECIES_PALAFIN}},
[SPECIES_VAROOM] = {{EVO_LEVEL, 40, SPECIES_REVAVROOM}},
[SPECIES_GLIMMET] = {{EVO_LEVEL, 35, SPECIES_GLIMMORA}},
[SPECIES_GREAVARD] = {{EVO_LEVEL_NIGHT, 30, SPECIES_HOUNDSTONE}},
[SPECIES_CETODDLE] = {{EVO_ITEM, ITEM_ICE_STONE, SPECIES_CETITAN}},
[SPECIES_FRIGIBAX] = {{EVO_LEVEL, 35, SPECIES_ARCTIBAX}},
[SPECIES_ARCTIBAX] = {{EVO_LEVEL, 54, SPECIES_BAXCALIBUR}},
[SPECIES_GIMMIGHOUL] = {{EVO_NONE, 0, SPECIES_GHOLDENGO}},
#endif
[SPECIES_RATTATA_ALOLAN] = {{EVO_LEVEL_NIGHT, 20, SPECIES_RATICATE_ALOLAN}},
[SPECIES_SANDSHREW_ALOLAN] = {{EVO_ITEM, ITEM_ICE_STONE, SPECIES_SANDSLASH_ALOLAN}},

View File

@ -915,6 +915,113 @@ const struct LevelUpMove *const gLevelUpLearnsets[NUM_SPECIES] =
[SPECIES_SNEASLER] = sSneaslerLevelUpLearnset,
[SPECIES_OVERQWIL] = sOverqwilLevelUpLearnset,
[SPECIES_ENAMORUS] = sEnamorusLevelUpLearnset,
#endif
#if P_GEN_9_POKEMON == TRUE
[SPECIES_SPRIGATITO] = sSprigatitoLevelUpLearnset,
[SPECIES_FLORAGATO] = sFloragatoLevelUpLearnset,
[SPECIES_MEOWSCARADA] = sMeowscaradaLevelUpLearnset,
[SPECIES_FUECOCO] = sFuecocoLevelUpLearnset,
[SPECIES_CROCALOR] = sCrocalorLevelUpLearnset,
[SPECIES_SKELEDIRGE] = sSkeledirgeLevelUpLearnset,
[SPECIES_QUAXLY] = sQuaxlyLevelUpLearnset,
[SPECIES_QUAXWELL] = sQuaxwellLevelUpLearnset,
[SPECIES_QUAQUAVAL] = sQuaquavalLevelUpLearnset,
[SPECIES_LECHONK] = sLechonkLevelUpLearnset,
[SPECIES_OINKOLOGNE] = sOinkologneLevelUpLearnset,
[SPECIES_TAROUNTULA] = sTarountulaLevelUpLearnset,
[SPECIES_SPIDOPS] = sSpidopsLevelUpLearnset,
[SPECIES_NYMBLE] = sNymbleLevelUpLearnset,
[SPECIES_LOKIX] = sLokixLevelUpLearnset,
[SPECIES_PAWMI] = sPawmiLevelUpLearnset,
[SPECIES_PAWMO] = sPawmoLevelUpLearnset,
[SPECIES_PAWMOT] = sPawmotLevelUpLearnset,
[SPECIES_TANDEMAUS] = sTandemausLevelUpLearnset,
[SPECIES_MAUSHOLD] = sMausholdLevelUpLearnset,
[SPECIES_FIDOUGH] = sFidoughLevelUpLearnset,
[SPECIES_DACHSBUN] = sDachsbunLevelUpLearnset,
[SPECIES_SMOLIV] = sSmolivLevelUpLearnset,
[SPECIES_DOLLIV] = sDollivLevelUpLearnset,
[SPECIES_ARBOLIVA] = sArbolivaLevelUpLearnset,
[SPECIES_SQUAWKABILLY] = sSquawkabillyLevelUpLearnset,
[SPECIES_NACLI] = sNacliLevelUpLearnset,
[SPECIES_NACLSTACK] = sNaclstackLevelUpLearnset,
[SPECIES_GARGANACL] = sGarganaclLevelUpLearnset,
[SPECIES_CHARCADET] = sCharcadetLevelUpLearnset,
[SPECIES_ARMAROUGE] = sArmarougeLevelUpLearnset,
[SPECIES_CERULEDGE] = sCeruledgeLevelUpLearnset,
[SPECIES_TADBULB] = sTadbulbLevelUpLearnset,
[SPECIES_BELLIBOLT] = sBelliboltLevelUpLearnset,
[SPECIES_WATTREL] = sWattrelLevelUpLearnset,
[SPECIES_KILOWATTREL] = sKilowattrelLevelUpLearnset,
[SPECIES_MASCHIFF] = sMaschiffLevelUpLearnset,
[SPECIES_MABOSSTIFF] = sMabosstiffLevelUpLearnset,
[SPECIES_SHROODLE] = sShroodleLevelUpLearnset,
[SPECIES_GRAFAIAI] = sGrafaiaiLevelUpLearnset,
[SPECIES_BRAMBLIN] = sBramblinLevelUpLearnset,
[SPECIES_BRAMBLEGHAST] = sBrambleghastLevelUpLearnset,
[SPECIES_TOEDSCOOL] = sToedscoolLevelUpLearnset,
[SPECIES_TOEDSCRUEL] = sToedscruelLevelUpLearnset,
[SPECIES_KLAWF] = sKlawfLevelUpLearnset,
[SPECIES_CAPSAKID] = sCapsakidLevelUpLearnset,
[SPECIES_SCOVILLAIN] = sScovillainLevelUpLearnset,
[SPECIES_RELLOR] = sRellorLevelUpLearnset,
[SPECIES_RABSCA] = sRabscaLevelUpLearnset,
[SPECIES_FLITTLE] = sFlittleLevelUpLearnset,
[SPECIES_ESPATHRA] = sEspathraLevelUpLearnset,
[SPECIES_TINKATINK] = sTinkatinkLevelUpLearnset,
[SPECIES_TINKATUFF] = sTinkatuffLevelUpLearnset,
[SPECIES_TINKATON] = sTinkatonLevelUpLearnset,
[SPECIES_WIGLETT] = sWiglettLevelUpLearnset,
[SPECIES_WUGTRIO] = sWugtrioLevelUpLearnset,
[SPECIES_BOMBIRDIER] = sBombirdierLevelUpLearnset,
[SPECIES_FINIZEN] = sFinizenLevelUpLearnset,
[SPECIES_PALAFIN] = sPalafinLevelUpLearnset,
[SPECIES_VAROOM] = sVaroomLevelUpLearnset,
[SPECIES_REVAVROOM] = sRevavroomLevelUpLearnset,
[SPECIES_CYCLIZAR] = sCyclizarLevelUpLearnset,
[SPECIES_ORTHWORM] = sOrthwormLevelUpLearnset,
[SPECIES_GLIMMET] = sGlimmetLevelUpLearnset,
[SPECIES_GLIMMORA] = sGlimmoraLevelUpLearnset,
[SPECIES_GREAVARD] = sGreavardLevelUpLearnset,
[SPECIES_HOUNDSTONE] = sHoundstoneLevelUpLearnset,
[SPECIES_FLAMIGO] = sFlamigoLevelUpLearnset,
[SPECIES_CETODDLE] = sCetoddleLevelUpLearnset,
[SPECIES_CETITAN] = sCetitanLevelUpLearnset,
[SPECIES_VELUZA] = sVeluzaLevelUpLearnset,
[SPECIES_DONDOZO] = sDondozoLevelUpLearnset,
[SPECIES_TATSUGIRI] = sTatsugiriLevelUpLearnset,
[SPECIES_ANNIHILAPE] = sAnnihilapeLevelUpLearnset,
[SPECIES_CLODSIRE] = sClodsireLevelUpLearnset,
[SPECIES_FARIGIRAF] = sFarigirafLevelUpLearnset,
[SPECIES_DUDUNSPARCE] = sDudunsparceLevelUpLearnset,
[SPECIES_KINGAMBIT] = sKingambitLevelUpLearnset,
[SPECIES_GREAT_TUSK] = sGreatTuskLevelUpLearnset,
[SPECIES_SCREAM_TAIL] = sScreamTailLevelUpLearnset,
[SPECIES_BRUTE_BONNET] = sBruteBonnetLevelUpLearnset,
[SPECIES_FLUTTER_MANE] = sFlutterManeLevelUpLearnset,
[SPECIES_SLITHER_WING] = sSlitherWingLevelUpLearnset,
[SPECIES_SANDY_SHOCKS] = sSandyShocksLevelUpLearnset,
[SPECIES_IRON_TREADS] = sIronTreadsLevelUpLearnset,
[SPECIES_IRON_BUNDLE] = sIronBundleLevelUpLearnset,
[SPECIES_IRON_HANDS] = sIronHandsLevelUpLearnset,
[SPECIES_IRON_JUGULIS] = sIronJugulisLevelUpLearnset,
[SPECIES_IRON_MOTH] = sIronMothLevelUpLearnset,
[SPECIES_IRON_THORNS] = sIronThornsLevelUpLearnset,
[SPECIES_FRIGIBAX] = sFrigibaxLevelUpLearnset,
[SPECIES_ARCTIBAX] = sArctibaxLevelUpLearnset,
[SPECIES_BAXCALIBUR] = sBaxcaliburLevelUpLearnset,
[SPECIES_GIMMIGHOUL] = sGimmighoulLevelUpLearnset,
[SPECIES_GHOLDENGO] = sGholdengoLevelUpLearnset,
[SPECIES_WO_CHIEN] = sWoChienLevelUpLearnset,
[SPECIES_CHIEN_PAO] = sChienPaoLevelUpLearnset,
[SPECIES_TING_LU] = sTingLuLevelUpLearnset,
[SPECIES_CHI_YU] = sChiYuLevelUpLearnset,
[SPECIES_ROARING_MOON] = sRoaringMoonLevelUpLearnset,
[SPECIES_IRON_VALIANT] = sIronValiantLevelUpLearnset,
[SPECIES_KORAIDON] = sKoraidonLevelUpLearnset,
[SPECIES_MIRAIDON] = sMiraidonLevelUpLearnset,
[SPECIES_WALKING_WAKE] = sWalkingWakeLevelUpLearnset,
[SPECIES_IRON_LEAVES] = sIronLeavesLevelUpLearnset,
#endif
// Megas
[SPECIES_VENUSAUR_MEGA] = sVenusaurLevelUpLearnset,

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -5399,3 +5399,623 @@ const u8 gEnamorusPokedexText[] = _(
"Pokémon's love gives rise to the\n"
"budding of fresh life across the land.");
#endif
#if P_GEN_9_POKEMON == TRUE
const u8 gSprigatitoPokedexText[] = _(
"The sweet scent its body gives off\n"
"mesmerizes those around it. The\n"
"scent grows stronger when this\n"
"Pokémon is in the sun.");
const u8 gFloragatoPokedexText[] = _(
"Floragato deftly wields the vine\n"
"hidden beneath its long fur, slamming\n"
"the hard flower bud against its\n"
"opponents.");
const u8 gMeowscaradaPokedexText[] = _(
"This Pokémon uses the reflective\n"
"fur lining its cape to camouflage the\n"
"stem of its flower, creating the\n"
"illusion that the flower is floating.");
const u8 gFuecocoPokedexText[] = _(
"Its flame sac is small, so energy is\n"
"always leaking out. This energy is\n"
"released from the dent atop\n"
"Fuecoco's head and flickers to and fro.");
const u8 gCrocalorPokedexText[] = _(
"The combination of Crocalor's fire\n"
"energy and overflowing vitality has\n"
"caused an egg-shaped fireball to\n"
"appear on the Pokémon's head.");
const u8 gSkeledirgePokedexText[] = _(
"Skeledirge's gentle singing\n"
"soothes the souls of all that hear it. It\n"
"burns its enemies to a crisp with\n"
"flames of over 5,400 degrees Fahrenheit.");
const u8 gQuaxlyPokedexText[] = _(
"Its strong legs let it easily swim\n"
"around in even fast-flowing rivers.\n"
"It likes to keep things tidy and is\n"
"prone to overthinking things.");
const u8 gQuaxwellPokedexText[] = _(
"The hardworking Quaxwell observes\n"
"people and Pokémon from various\n"
"regions and incorporates their\n"
"movements into its own dance routines.");
const u8 gQuaquavalPokedexText[] = _(
"A single kick from a Quaquaval can\n"
"send a truck rolling. This Pokémon\n"
"uses its powerful legs to perform\n"
"striking dances from far-off lands.");
const u8 gLechonkPokedexText[] = _(
"It searches for food all day. It\n"
"possesses a keen sense of smell but\n"
"doesn't use it for anything other\n"
"than foraging.");
const u8 gOinkolognePokedexText[] = _(
"Oinkologne is proud of its fine,\n"
"glossy skin. It emits a concentrated\n"
"scent from the tip of its tail.");
const u8 gTarountulaPokedexText[] = _(
"The thread it secretes from its\n"
"rear is as strong as wire. The secret\n"
"behind the thread's strength is the\n"
"topic of ongoing research.");
const u8 gSpidopsPokedexText[] = _(
"It clings to branches and ceilings\n"
"using its threads and moves without\n"
"a sound. It takes out its prey\n"
"before the prey even notices it.");
const u8 gNymblePokedexText[] = _(
"It has its third set of legs folded\n"
"up. When it's in a tough spot, this\n"
"Pokémon jumps over 30 feet using the\n"
"strength of its legs.");
const u8 gLokixPokedexText[] = _(
"When it decides to fight all out, it\n"
"stands on its previously folded\n"
"legs to enter Showdown Mode. It\n"
"neutralizes its enemies in short order.");
const u8 gPawmiPokedexText[] = _(
"The pads of its paws are\n"
"electricity-discharging organs. Pawmi fires\n"
"electricity from its forepaws while\n"
"standing unsteadily on its hind legs.");
const u8 gPawmoPokedexText[] = _(
"When its group is attacked, Pawmo\n"
"is the first to leap into battle,\n"
"defeating enemies with a fighting\n"
"technique that utilizes electric shocks.");
const u8 gPawmotPokedexText[] = _(
"This Pokémon normally is slow to\n"
"react, but once it enters battle, it\n"
"will strike down its enemies with\n"
"lightning-fast movements.");
const u8 gTandemausPokedexText[] = _(
"Exhibiting great teamwork, they\n"
"use their incisors to cut pieces out\n"
"of any material that might be useful\n"
"for a nest, then make off with them.");
const u8 gMausholdPokedexText[] = _(
"The larger pair protects the little\n"
"ones during battles. When facing\n"
"strong opponents, the whole group\n"
"will join the fight.");
const u8 gFidoughPokedexText[] = _(
"This Pokémon is smooth and moist\n"
"to the touch. Yeast in Fidough's\n"
"breath induces fermentation in the\n"
"Pokémon's vicinity.");
const u8 gDachsbunPokedexText[] = _(
"The pleasant aroma that emanates\n"
"from this Pokémon's body helps\n"
"wheat grow, so Dachsbun has been\n"
"treasured by farming villages.");
const u8 gSmolivPokedexText[] = _(
"This Pokémon converts nutrients\n"
"into oil, which it stores in the fruit\n"
"on its head. It can easily go a whole\n"
"week without eating or drinking.");
const u8 gDollivPokedexText[] = _(
"Dolliv shares its tasty, fresh-\n"
"scented oil with others. This species\n"
"has coexisted with humans since\n"
"times long gone.");
const u8 gArbolivaPokedexText[] = _(
"This Pokémon drives back enemies\n"
"by launching its rich, aromatic oil at\n"
"them with enough force to smash a\n"
"boulder.");
const u8 gSquawkabillyPokedexText[] = _(
"Green-feathered flocks hold the\n"
"most sway. When they're out\n"
"searching for food in the mornings and\n"
"evenings, it gets very noisy.");
const u8 gNacliPokedexText[] = _(
"The ground scrapes its body as it\n"
"travels, causing it to leave salt\n"
"behind. Salt is constantly being created\n"
"and replenished inside Nacli's body.");
const u8 gNaclstackPokedexText[] = _(
"It compresses rock salt inside its\n"
"body and shoots out hardened salt\n"
"pellets with enough force to\n"
"perforate an iron sheet.");
const u8 gGarganaclPokedexText[] = _(
"Garganacl will rub its fingertips\n"
"together and sprinkle injured\n"
"Pokémon with salt. Even severe wounds will\n"
"promptly heal afterward.");
const u8 gCharcadetPokedexText[] = _(
"Burnt charcoal came to life and\n"
"became a Pokémon. Possessing a fiery\n"
"fighting spirit, Charcadet will\n"
"battle even tough opponents.");
const u8 gArmarougePokedexText[] = _(
"Armarouge evolved through the use\n"
"of a set of armor that belonged to\n"
"a distinguished warrior. This\n"
"Pokémon is incredibly loyal.");
const u8 gCeruledgePokedexText[] = _(
"The fiery blades on its arms burn\n"
"fiercely with the lingering\n"
"resentment of a sword wielder who fell\n"
"before accomplishing their goal.");
const u8 gTadbulbPokedexText[] = _(
"Tadbulb shakes its tail to\n"
"generate electricity. If it senses danger,\n"
"it will make its head blink on and off\n"
"to alert its allies.");
const u8 gBelliboltPokedexText[] = _(
"When this Pokémon expands and\n"
"contracts its wobbly body, the belly-\n"
"button dynamo in its stomach\n"
"produces a huge amount of electricity.");
const u8 gWattrelPokedexText[] = _(
"When its wings catch the wind, the\n"
"bones within produce electricity.\n"
"This Pokémon dives into the ocean,\n"
"catching prey by electrocuting them.");
const u8 gKilowattrelPokedexText[] = _(
"It uses its throat sac to store\n"
"electricity generated by its wings.\n"
"There's hardly any oil in its feathers,\n"
"so it is a poor swimmer.");
const u8 gMaschiffPokedexText[] = _(
"Its well-developed jaw and fangs\n"
"are strong enough to crunch through\n"
"boulders, and its thick fat makes\n"
"for an excellent defense.");
const u8 gMabosstiffPokedexText[] = _(
"Mabosstiff loves playing with\n"
"children. Though usually gentle, it\n"
"takes on an intimidating look when\n"
"protecting its family.");
const u8 gShroodlePokedexText[] = _(
"To keep enemies away from its\n"
"territory, it paints markings around its\n"
"nest using a poisonous liquid that\n"
"has an acrid odor.");
const u8 gGrafaiaiPokedexText[] = _(
"Each Grafaiai paints its own\n"
"individual pattern, and it will paint that\n"
"same pattern over and over again\n"
"throughout its life.");
const u8 gBramblinPokedexText[] = _(
"A soul unable to move on to the\n"
"afterlife was blown around by the wind\n"
"until it got tangled up with dried\n"
"grass and became a Pokémon.");
const u8 gBrambleghastPokedexText[] = _(
"It will open the branches of its\n"
"head to envelop its prey. Once it\n"
"absorbs all the life energy it needs, it\n"
"expels the prey and discards it.");
const u8 gToedscoolPokedexText[] = _(
"Though it looks like Tentacool,\n"
"Toedscool is a completely different\n"
"species. Its legs may be thin, but it\n"
"can run at a speed of 30 mph.");
const u8 gToedscruelPokedexText[] = _(
"These Pokémon gather into groups\n"
"and form colonies deep within\n"
"forests. They absolutely hate it when\n"
"strangers approach.");
const u8 gKlawfPokedexText[] = _(
"Klawf hangs upside-down from\n"
"cliffs, waiting for prey. But Klawf can't\n"
"remain in this position for long\n"
"because its blood rushes to its head.");
const u8 gCapsakidPokedexText[] = _(
"The more sunlight this Pokémon\n"
"bathes in, the more spicy chemicals are\n"
"produced by its body, and thus the\n"
"spicier its moves become.");
const u8 gScovillainPokedexText[] = _(
"The green head has turned vicious\n"
"due to the spicy chemicals\n"
"stimulating its brain. Once it goes on a\n"
"rampage, there is no stopping it.");
const u8 gRellorPokedexText[] = _(
"This Pokémon creates a mud ball by\n"
"mixing sand and dirt with psychic\n"
"energy. It treasures its mud ball more\n"
"than its own life.");
const u8 gRabscaPokedexText[] = _(
"The body that supports the ball\n"
"barely moves. Therefore, it is thought\n"
"that the true body of this Pokémon\n"
"is actually inside the ball.");
const u8 gFlittlePokedexText[] = _(
"Flittle's toes levitate about half\n"
"an inch above the ground because of\n"
"the psychic power emitted from the\n"
"frills on the Pokémon's belly.");
const u8 gEspathraPokedexText[] = _(
"It immobilizes opponents by\n"
"bathing them in psychic power from its\n"
"large eyes. Despite its appearance, it\n"
"has a vicious temperament.");
const u8 gTinkatinkPokedexText[] = _(
"This Pokémon pounds iron scraps\n"
"together to make a hammer. It will\n"
"remake the hammer again and again until\n"
"it's satisfied with the result.");
const u8 gTinkatuffPokedexText[] = _(
"These Pokémon make their homes in\n"
"piles of scrap metal. They test the\n"
"strength of each other's hammers by\n"
"smashing them together.");
const u8 gTinkatonPokedexText[] = _(
"The hammer tops 220 pounds, yet it\n"
"gets swung around easily by\n"
"Tinkaton as it steals whatever it pleases\n"
"and carries its plunder back home.");
const u8 gWiglettPokedexText[] = _(
"This Pokémon can pick up the scent\n"
"of a Veluza just over 65 feet away\n"
"and will hide itself in the sand.");
const u8 gWugtrioPokedexText[] = _(
"A variety of fish Pokémon, Wugtrio\n"
"was once considered to be a\n"
"regional form of Dugtrio.");
const u8 gBombirdierPokedexText[] = _(
"Bombirdier uses the apron on its\n"
"chest to bundle up food, which it\n"
"carries back to its nest. It enjoys\n"
"dropping things that make loud noises.");
const u8 gFinizenPokedexText[] = _(
"Its water ring is made from\n"
"seawater mixed with a sticky fluid that\n"
"Finizen secretes from its blowhole.");
const u8 gPalafinPokedexText[] = _(
"This Pokémon changes its\n"
"appearance if it hears its allies calling for\n"
"help. Palafin will never show\n"
"anybody its moment of transformation.");
const u8 gVaroomPokedexText[] = _(
"The steel section is Varoom's\n"
"actual body. This Pokémon clings to\n"
"rocks and converts the minerals within\n"
"into energy to fuel its activities.");
const u8 gRevavroomPokedexText[] = _(
"It creates a gas out of poison and\n"
"minerals from rocks. It then\n"
"detonates the gas in its cylinders- now\n"
"numbering eight-to generate energy.");
const u8 gCyclizarPokedexText[] = _(
"It can sprint at over 70 mph while\n"
"carrying a human. The rider's body\n"
"heat warms Cyclizar's back and lifts\n"
"the Pokémon's spirit.");
const u8 gOrthwormPokedexText[] = _(
"When attacked, this Pokémon will\n"
"wield the tendrils on its body like\n"
"fists and pelt the opponent with a\n"
"storm of punches.");
const u8 gGlimmetPokedexText[] = _(
"Glimmet's toxic mineral crystals\n"
"look just like flower petals. This\n"
"Pokémon scatters poisonous powder like\n"
"pollen to protect itself.");
const u8 gGlimmoraPokedexText[] = _(
"Glimmora's petals are made of\n"
"crystallized poison energy. It has\n"
"recently become evident that these\n"
"petals resemble Tera Jewels.");
const u8 gGreavardPokedexText[] = _(
"This friendly Pokémon doesn't like\n"
"being alone. Pay it even the\n"
"slightest bit of attention, and it will\n"
"follow you forever.");
const u8 gHoundstonePokedexText[] = _(
"Houndstone spends most of its\n"
"time sleeping in graveyards. Among all\n"
"the dog Pokémon, this one is most\n"
"loyal to its master.");
const u8 gFlamigoPokedexText[] = _(
"Thanks to a behavior of theirs\n"
"known as “synchronizing,” an entire\n"
"flock of these Pokémon can attack\n"
"simultaneously in perfect harmony.");
const u8 gCetoddlePokedexText[] = _(
"This species left the ocean and\n"
"began living on land a very long time\n"
"ago. It seems to be closely related\n"
"to Wailmer.");
const u8 gCetitanPokedexText[] = _(
"Ice energy builds up in the horn on\n"
"its upper jaw, causing the horn to\n"
"reach cryogenic temperatures that\n"
"freeze its surroundings.");
const u8 gVeluzaPokedexText[] = _(
"Veluza has excellent regenerative\n"
"capabilities. It sheds spare flesh\n"
"from its body to boost its agility,\n"
"then charges at its prey.");
const u8 gDondozoPokedexText[] = _(
"It treats Tatsugiri like its boss\n"
"and follows it loyally. Though\n"
"powerful, Dondozo is apparently not very\n"
"smart.");
const u8 gTatsugiriPokedexText[] = _(
"This is a small dragon Pokémon. It\n"
"lives inside the mouth of Dondozo to\n"
"protect itself from enemies on the\n"
"outside.");
const u8 gAnnihilapePokedexText[] = _(
"When its anger rose beyond a\n"
"critical point, this Pokémon gained power\n"
"that is unfettered by the limits of\n"
"its physical body.");
const u8 gClodsirePokedexText[] = _(
"When attacked, this Pokémon will\n"
"retaliate by sticking thick spines out\n"
"from its body. It's a risky move\n"
"that puts everything on the line.");
const u8 gFarigirafPokedexText[] = _(
"Now that the brain waves from the\n"
"head and tail are synced up, the\n"
"psychic power of this Pokémon is 10\n"
"times stronger than Girafarig's.");
const u8 gDudunsparcePokedexText[] = _(
"This Pokémon uses its hard tail to\n"
"make its nest by boring holes into\n"
"bedrock deep underground. The nest\n"
"can reach lengths of over six miles.");
const u8 gKingambitPokedexText[] = _(
"Though it commands a massive army\n"
"in battle, it's not skilled at\n"
"devising complex strategies. It just uses\n"
"brute strength to keep pushing.");
const u8 gGreatTuskPokedexText[] = _(
"Sightings of this Pokémon have\n"
"occurred in recent years. The name\n"
"Great Tusk was taken from a creature\n"
"listed in a certain book.");
const u8 gScreamTailPokedexText[] = _(
"There has been only one reported\n"
"sighting of this Pokémon. It\n"
"resembles a mysterious creature depicted\n"
"in an old expedition journal.");
const u8 gBruteBonnetPokedexText[] = _(
"It bears a slight resemblance to a\n"
"Pokémon described in a dubious\n"
"magazine as a cross between a dinosaur\n"
"and a mushroom.");
const u8 gFlutterManePokedexText[] = _(
"It has similar features to a\n"
"ghostly pterosaur that was covered in a\n"
"paranormal magazine, but the two\n"
"have little else in common.");
const u8 gSlitherWingPokedexText[] = _(
"This mysterious Pokémon has some\n"
"similarities to a creature that an\n"
"old book introduced as Slither Wing.");
const u8 gSandyShocksPokedexText[] = _(
"It slightly resembles a Magneton\n"
"that lived for 10,000 years and was\n"
"featured in an article in a\n"
"paranormal magazine.");
const u8 gIronTreadsPokedexText[] = _(
"Sightings of this Pokémon have\n"
"occurred in recent years. It resembles\n"
"a mysterious object described in an\n"
"old expedition journal.");
const u8 gIronBundlePokedexText[] = _(
"Its shape is similar to a robot\n"
"featured in a paranormal magazine\n"
"article. The robot was said to have been\n"
"created by an ancient civilization.");
const u8 gIronHandsPokedexText[] = _(
"It is very similar to a cyborg\n"
"covered exclusively by a paranormal\n"
"magazine. The cyborg was said to be the\n"
"modified form of a certain athlete.");
const u8 gIronJugulisPokedexText[] = _(
"It resembles a certain Pokémon\n"
"introduced in a paranormal magazine,\n"
"described as the offspring of a\n"
"Hydreigon that fell in love with a robot.");
const u8 gIronMothPokedexText[] = _(
"No records exist of this species\n"
"being caught. Data is lacking, but\n"
"the Pokémon's traits match up with an\n"
"object described in an old book.");
const u8 gIronThornsPokedexText[] = _(
"It has some similarities to a\n"
"Pokémon introduced in a dubious magazine\n"
"as a Tyranitar from one billion\n"
"years into the future.");
const u8 gFrigibaxPokedexText[] = _(
"This Pokémon lives in forests and\n"
"craggy areas. Using the power of its\n"
"dorsal fin, it cools the inside of its\n"
"nest like a refrigerator.");
const u8 gArctibaxPokedexText[] = _(
"Arctibax freezes the air around it,\n"
"protecting its face with an ice\n"
"mask and turning its dorsal fin into a\n"
"blade of ice.");
const u8 gBaxcaliburPokedexText[] = _(
"It launches itself into battle by\n"
"flipping upside down and spewing\n"
"frigid air from its mouth. It finishes\n"
"opponents off with its dorsal blade.");
const u8 gGimmighoulPokedexText[] = _(
"It lives inside an old treasure\n"
"chest. Sometimes it gets left in shop\n"
"corners since no one realizes it's\n"
"actually a Pokémon.");
const u8 gGholdengoPokedexText[] = _(
"It has a sturdy body made up of\n"
"stacked coins. Gholdengo overwhelms\n"
"its enemies by firing coin after coin\n"
"at them in quick succession.");
const u8 gWoChienPokedexText[] = _(
"The grudge of a person punished\n"
"for writing the king's evil deeds upon\n"
"wooden tablets has clad itself in\n"
"dead leaves to become a Pokémon.");
const u8 gChienPaoPokedexText[] = _(
"This Pokémon can control 100 tons\n"
"of fallen snow. It plays around\n"
"innocently by leaping in and out of\n"
"avalanches it has caused.");
const u8 gTingLuPokedexText[] = _(
"It slowly brings its exceedingly\n"
"heavy head down upon the ground,\n"
"splitting the earth open with huge\n"
"fissures that run over 160 feet deep.");
const u8 gChiYuPokedexText[] = _(
"It controls flames burning at over\n"
"5,400 degrees Fahrenheit. It\n"
"casually swims through the sea of lava it\n"
"creates by melting rock and sand.");
const u8 gRoaringMoonPokedexText[] = _(
"According to an article in a\n"
"dubious magazine, this Pokémon has some\n"
"connection to Mega Evolution that\n"
"occurs in Hoenn.");
const u8 gIronValiantPokedexText[] = _(
"It has some similarities to a mad\n"
"scientist's invention covered in a\n"
"paranormal magazine.");
const u8 gKoraidonPokedexText[] = _(
"This Pokémon resembles Cyclizar,\n"
"but it is far burlier and more\n"
"ferocious. Nothing is known about its\n"
"ecology or other features.");
const u8 gMiraidonPokedexText[] = _(
"This seems to be the Iron Serpent\n"
"mentioned in an Violet Book. The\n"
"Iron Serpent is said to have turned the\n"
"land to ash with its lightning.");
const u8 gWalkingWakePokedexText[] = _(
"");
const u8 gIronLeavesPokedexText[] = _(
"");
#endif

File diff suppressed because it is too large Load Diff

View File

@ -915,6 +915,113 @@ const u16 *const gTeachableLearnsets[NUM_SPECIES] =
[SPECIES_SNEASLER] = sSneaslerTeachableLearnset,
[SPECIES_OVERQWIL] = sOverqwilTeachableLearnset,
[SPECIES_ENAMORUS] = sEnamorusTeachableLearnset,
#endif
#if P_GEN_9_POKEMON == TRUE
[SPECIES_SPRIGATITO] = sSprigatitoTeachableLearnset,
[SPECIES_FLORAGATO] = sFloragatoTeachableLearnset,
[SPECIES_MEOWSCARADA] = sMeowscaradaTeachableLearnset,
[SPECIES_FUECOCO] = sFuecocoTeachableLearnset,
[SPECIES_CROCALOR] = sCrocalorTeachableLearnset,
[SPECIES_SKELEDIRGE] = sSkeledirgeTeachableLearnset,
[SPECIES_QUAXLY] = sQuaxlyTeachableLearnset,
[SPECIES_QUAXWELL] = sQuaxwellTeachableLearnset,
[SPECIES_QUAQUAVAL] = sQuaquavalTeachableLearnset,
[SPECIES_LECHONK] = sLechonkTeachableLearnset,
[SPECIES_OINKOLOGNE] = sOinkologneTeachableLearnset,
[SPECIES_TAROUNTULA] = sTarountulaTeachableLearnset,
[SPECIES_SPIDOPS] = sSpidopsTeachableLearnset,
[SPECIES_NYMBLE] = sNymbleTeachableLearnset,
[SPECIES_LOKIX] = sLokixTeachableLearnset,
[SPECIES_PAWMI] = sPawmiTeachableLearnset,
[SPECIES_PAWMO] = sPawmoTeachableLearnset,
[SPECIES_PAWMOT] = sPawmotTeachableLearnset,
[SPECIES_TANDEMAUS] = sTandemausTeachableLearnset,
[SPECIES_MAUSHOLD] = sMausholdTeachableLearnset,
[SPECIES_FIDOUGH] = sFidoughTeachableLearnset,
[SPECIES_DACHSBUN] = sDachsbunTeachableLearnset,
[SPECIES_SMOLIV] = sSmolivTeachableLearnset,
[SPECIES_DOLLIV] = sDollivTeachableLearnset,
[SPECIES_ARBOLIVA] = sArbolivaTeachableLearnset,
[SPECIES_SQUAWKABILLY] = sSquawkabillyTeachableLearnset,
[SPECIES_NACLI] = sNacliTeachableLearnset,
[SPECIES_NACLSTACK] = sNaclstackTeachableLearnset,
[SPECIES_GARGANACL] = sGarganaclTeachableLearnset,
[SPECIES_CHARCADET] = sCharcadetTeachableLearnset,
[SPECIES_ARMAROUGE] = sArmarougeTeachableLearnset,
[SPECIES_CERULEDGE] = sCeruledgeTeachableLearnset,
[SPECIES_TADBULB] = sTadbulbTeachableLearnset,
[SPECIES_BELLIBOLT] = sBelliboltTeachableLearnset,
[SPECIES_WATTREL] = sWattrelTeachableLearnset,
[SPECIES_KILOWATTREL] = sKilowattrelTeachableLearnset,
[SPECIES_MASCHIFF] = sMaschiffTeachableLearnset,
[SPECIES_MABOSSTIFF] = sMabosstiffTeachableLearnset,
[SPECIES_SHROODLE] = sShroodleTeachableLearnset,
[SPECIES_GRAFAIAI] = sGrafaiaiTeachableLearnset,
[SPECIES_BRAMBLIN] = sBramblinTeachableLearnset,
[SPECIES_BRAMBLEGHAST] = sBrambleghastTeachableLearnset,
[SPECIES_TOEDSCOOL] = sToedscoolTeachableLearnset,
[SPECIES_TOEDSCRUEL] = sToedscruelTeachableLearnset,
[SPECIES_KLAWF] = sKlawfTeachableLearnset,
[SPECIES_CAPSAKID] = sCapsakidTeachableLearnset,
[SPECIES_SCOVILLAIN] = sScovillainTeachableLearnset,
[SPECIES_RELLOR] = sRellorTeachableLearnset,
[SPECIES_RABSCA] = sRabscaTeachableLearnset,
[SPECIES_FLITTLE] = sFlittleTeachableLearnset,
[SPECIES_ESPATHRA] = sEspathraTeachableLearnset,
[SPECIES_TINKATINK] = sTinkatinkTeachableLearnset,
[SPECIES_TINKATUFF] = sTinkatuffTeachableLearnset,
[SPECIES_TINKATON] = sTinkatonTeachableLearnset,
[SPECIES_WIGLETT] = sWiglettTeachableLearnset,
[SPECIES_WUGTRIO] = sWugtrioTeachableLearnset,
[SPECIES_BOMBIRDIER] = sBombirdierTeachableLearnset,
[SPECIES_FINIZEN] = sFinizenTeachableLearnset,
[SPECIES_PALAFIN] = sPalafinTeachableLearnset,
[SPECIES_VAROOM] = sVaroomTeachableLearnset,
[SPECIES_REVAVROOM] = sRevavroomTeachableLearnset,
[SPECIES_CYCLIZAR] = sCyclizarTeachableLearnset,
[SPECIES_ORTHWORM] = sOrthwormTeachableLearnset,
[SPECIES_GLIMMET] = sGlimmetTeachableLearnset,
[SPECIES_GLIMMORA] = sGlimmoraTeachableLearnset,
[SPECIES_GREAVARD] = sGreavardTeachableLearnset,
[SPECIES_HOUNDSTONE] = sHoundstoneTeachableLearnset,
[SPECIES_FLAMIGO] = sFlamigoTeachableLearnset,
[SPECIES_CETODDLE] = sCetoddleTeachableLearnset,
[SPECIES_CETITAN] = sCetitanTeachableLearnset,
[SPECIES_VELUZA] = sVeluzaTeachableLearnset,
[SPECIES_DONDOZO] = sDondozoTeachableLearnset,
[SPECIES_TATSUGIRI] = sTatsugiriTeachableLearnset,
[SPECIES_ANNIHILAPE] = sAnnihilapeTeachableLearnset,
[SPECIES_CLODSIRE] = sClodsireTeachableLearnset,
[SPECIES_FARIGIRAF] = sFarigirafTeachableLearnset,
[SPECIES_DUDUNSPARCE] = sDudunsparceTeachableLearnset,
[SPECIES_KINGAMBIT] = sKingambitTeachableLearnset,
[SPECIES_GREAT_TUSK] = sGreatTuskTeachableLearnset,
[SPECIES_SCREAM_TAIL] = sScreamTailTeachableLearnset,
[SPECIES_BRUTE_BONNET] = sBruteBonnetTeachableLearnset,
[SPECIES_FLUTTER_MANE] = sFlutterManeTeachableLearnset,
[SPECIES_SLITHER_WING] = sSlitherWingTeachableLearnset,
[SPECIES_SANDY_SHOCKS] = sSandyShocksTeachableLearnset,
[SPECIES_IRON_TREADS] = sIronTreadsTeachableLearnset,
[SPECIES_IRON_BUNDLE] = sIronBundleTeachableLearnset,
[SPECIES_IRON_HANDS] = sIronHandsTeachableLearnset,
[SPECIES_IRON_JUGULIS] = sIronJugulisTeachableLearnset,
[SPECIES_IRON_MOTH] = sIronMothTeachableLearnset,
[SPECIES_IRON_THORNS] = sIronThornsTeachableLearnset,
[SPECIES_FRIGIBAX] = sFrigibaxTeachableLearnset,
[SPECIES_ARCTIBAX] = sArctibaxTeachableLearnset,
[SPECIES_BAXCALIBUR] = sBaxcaliburTeachableLearnset,
[SPECIES_GIMMIGHOUL] = sGimmighoulTeachableLearnset,
[SPECIES_GHOLDENGO] = sGholdengoTeachableLearnset,
[SPECIES_WO_CHIEN] = sWoChienTeachableLearnset,
[SPECIES_CHIEN_PAO] = sChienPaoTeachableLearnset,
[SPECIES_TING_LU] = sTingLuTeachableLearnset,
[SPECIES_CHI_YU] = sChiYuTeachableLearnset,
[SPECIES_ROARING_MOON] = sRoaringMoonTeachableLearnset,
[SPECIES_IRON_VALIANT] = sIronValiantTeachableLearnset,
[SPECIES_KORAIDON] = sKoraidonTeachableLearnset,
[SPECIES_MIRAIDON] = sMiraidonTeachableLearnset,
[SPECIES_WALKING_WAKE] = sWalkingWakeTeachableLearnset,
[SPECIES_IRON_LEAVES] = sIronLeavesTeachableLearnset,
#endif
// Megas
[SPECIES_VENUSAUR_MEGA] = sVenusaurTeachableLearnset,

File diff suppressed because it is too large Load Diff

View File

@ -908,6 +908,113 @@ const u8 *const gMonFootprintTable[NUM_SPECIES + 1] =
[SPECIES_GLASTRIER] = gMonFootprint_Glastrier,
[SPECIES_SPECTRIER] = gMonFootprint_Spectrier,
[SPECIES_CALYREX] = gMonFootprint_Calyrex,
#endif
#if P_GEN_9_POKEMON == TRUE
//[SPECIES_SPRIGATITO] = gMonFootprint_Sprigatito,
//[SPECIES_FLORAGATO] = gMonFootprint_Floragato,
//[SPECIES_MEOWSCARADA] = gMonFootprint_Meowscarada,
//[SPECIES_FUECOCO] = gMonFootprint_Fuecoco,
//[SPECIES_CROCALOR] = gMonFootprint_Crocalor,
//[SPECIES_SKELEDIRGE] = gMonFootprint_Skeledirge,
//[SPECIES_QUAXLY] = gMonFootprint_Quaxly,
//[SPECIES_QUAXWELL] = gMonFootprint_Quaxwell,
//[SPECIES_QUAQUAVAL] = gMonFootprint_Quaquaval,
//[SPECIES_LECHONK] = gMonFootprint_Lechonk,
//[SPECIES_OINKOLOGNE] = gMonFootprint_Oinkologne,
//[SPECIES_TAROUNTULA] = gMonFootprint_Tarountula,
//[SPECIES_SPIDOPS] = gMonFootprint_Spidops,
//[SPECIES_NYMBLE] = gMonFootprint_Nymble,
//[SPECIES_LOKIX] = gMonFootprint_Lokix,
//[SPECIES_PAWMI] = gMonFootprint_Pawmi,
//[SPECIES_PAWMO] = gMonFootprint_Pawmo,
//[SPECIES_PAWMOT] = gMonFootprint_Pawmot,
//[SPECIES_TANDEMAUS] = gMonFootprint_Tandemaus,
//[SPECIES_MAUSHOLD] = gMonFootprint_Maushold,
//[SPECIES_FIDOUGH] = gMonFootprint_Fidough,
//[SPECIES_DACHSBUN] = gMonFootprint_Dachsbun,
//[SPECIES_SMOLIV] = gMonFootprint_Smoliv,
//[SPECIES_DOLLIV] = gMonFootprint_Dolliv,
//[SPECIES_ARBOLIVA] = gMonFootprint_Arboliva,
//[SPECIES_SQUAWKABILLY] = gMonFootprint_Squawkabilly,
//[SPECIES_NACLI] = gMonFootprint_Nacli,
//[SPECIES_NACLSTACK] = gMonFootprint_Naclstack,
//[SPECIES_GARGANACL] = gMonFootprint_Garganacl,
//[SPECIES_CHARCADET] = gMonFootprint_Charcadet,
//[SPECIES_ARMAROUGE] = gMonFootprint_Armarouge,
//[SPECIES_CERULEDGE] = gMonFootprint_Ceruledge,
//[SPECIES_TADBULB] = gMonFootprint_Tadbulb,
//[SPECIES_BELLIBOLT] = gMonFootprint_Bellibolt,
//[SPECIES_WATTREL] = gMonFootprint_Wattrel,
//[SPECIES_KILOWATTREL] = gMonFootprint_Kilowattrel,
//[SPECIES_MASCHIFF] = gMonFootprint_Maschiff,
//[SPECIES_MABOSSTIFF] = gMonFootprint_Mabosstiff,
//[SPECIES_SHROODLE] = gMonFootprint_Shroodle,
//[SPECIES_GRAFAIAI] = gMonFootprint_Grafaiai,
//[SPECIES_BRAMBLIN] = gMonFootprint_Bramblin,
//[SPECIES_BRAMBLEGHAST] = gMonFootprint_Brambleghast,
//[SPECIES_TOEDSCOOL] = gMonFootprint_Toedscool,
//[SPECIES_TOEDSCRUEL] = gMonFootprint_Toedscruel,
//[SPECIES_KLAWF] = gMonFootprint_Klawf,
//[SPECIES_CAPSAKID] = gMonFootprint_Capsakid,
//[SPECIES_SCOVILLAIN] = gMonFootprint_Scovillain,
//[SPECIES_RELLOR] = gMonFootprint_Rellor,
//[SPECIES_RABSCA] = gMonFootprint_Rabsca,
//[SPECIES_FLITTLE] = gMonFootprint_Flittle,
//[SPECIES_ESPATHRA] = gMonFootprint_Espathra,
//[SPECIES_TINKATINK] = gMonFootprint_Tinkatink,
//[SPECIES_TINKATUFF] = gMonFootprint_Tinkatuff,
//[SPECIES_TINKATON] = gMonFootprint_Tinkaton,
//[SPECIES_WIGLETT] = gMonFootprint_Wiglett,
//[SPECIES_WUGTRIO] = gMonFootprint_Wugtrio,
//[SPECIES_BOMBIRDIER] = gMonFootprint_Bombirdier,
//[SPECIES_FINIZEN] = gMonFootprint_Finizen,
//[SPECIES_PALAFIN] = gMonFootprint_Palafin,
//[SPECIES_VAROOM] = gMonFootprint_Varoom,
//[SPECIES_REVAVROOM] = gMonFootprint_Revavroom,
//[SPECIES_CYCLIZAR] = gMonFootprint_Cyclizar,
//[SPECIES_ORTHWORM] = gMonFootprint_Orthworm,
//[SPECIES_GLIMMET] = gMonFootprint_Glimmet,
//[SPECIES_GLIMMORA] = gMonFootprint_Glimmora,
//[SPECIES_GREAVARD] = gMonFootprint_Greavard,
//[SPECIES_HOUNDSTONE] = gMonFootprint_Houndstone,
//[SPECIES_FLAMIGO] = gMonFootprint_Flamigo,
//[SPECIES_CETODDLE] = gMonFootprint_Cetoddle,
//[SPECIES_CETITAN] = gMonFootprint_Cetitan,
//[SPECIES_VELUZA] = gMonFootprint_Veluza,
//[SPECIES_DONDOZO] = gMonFootprint_Dondozo,
//[SPECIES_TATSUGIRI] = gMonFootprint_Tatsugiri,
//[SPECIES_ANNIHILAPE] = gMonFootprint_Annihilape,
//[SPECIES_CLODSIRE] = gMonFootprint_Clodsire,
//[SPECIES_FARIGIRAF] = gMonFootprint_Farigiraf,
//[SPECIES_DUDUNSPARCE] = gMonFootprint_Dudunsparce,
//[SPECIES_KINGAMBIT] = gMonFootprint_Kingambit,
//[SPECIES_GREAT_TUSK] = gMonFootprint_GreatTusk,
//[SPECIES_SCREAM_TAIL] = gMonFootprint_ScreamTail,
//[SPECIES_BRUTE_BONNET] = gMonFootprint_BruteBonnet,
//[SPECIES_FLUTTER_MANE] = gMonFootprint_FlutterMane,
//[SPECIES_SLITHER_WING] = gMonFootprint_SlitherWing,
//[SPECIES_SANDY_SHOCKS] = gMonFootprint_SandyShocks,
//[SPECIES_IRON_TREADS] = gMonFootprint_IronTreads,
//[SPECIES_IRON_BUNDLE] = gMonFootprint_IronBundle,
//[SPECIES_IRON_HANDS] = gMonFootprint_IronHands,
//[SPECIES_IRON_JUGULIS] = gMonFootprint_IronJugulis,
//[SPECIES_IRON_MOTH] = gMonFootprint_IronMoth,
//[SPECIES_IRON_THORNS] = gMonFootprint_IronThorns,
//[SPECIES_FRIGIBAX] = gMonFootprint_Frigibax,
//[SPECIES_ARCTIBAX] = gMonFootprint_Arctibax,
//[SPECIES_BAXCALIBUR] = gMonFootprint_Baxcalibur,
//[SPECIES_GIMMIGHOUL] = gMonFootprint_Gimmighoul,
//[SPECIES_GHOLDENGO] = gMonFootprint_Gholdengo,
//[SPECIES_WO_CHIEN] = gMonFootprint_WoChien,
//[SPECIES_CHIEN_PAO] = gMonFootprint_ChienPao,
//[SPECIES_TING_LU] = gMonFootprint_TingLu,
//[SPECIES_CHI_YU] = gMonFootprint_ChiYu,
//[SPECIES_ROARING_MOON] = gMonFootprint_RoaringMoon,
//[SPECIES_IRON_VALIANT] = gMonFootprint_IronValiant,
//[SPECIES_KORAIDON] = gMonFootprint_Koraidon,
//[SPECIES_MIRAIDON] = gMonFootprint_Miraidon,
//[SPECIES_WALKING_WAKE] = gMonFootprint_WalkingWake,
//[SPECIES_IRON_LEAVES] = gMonFootprint_IronLeaves,
#endif
[SPECIES_EGG] = gMonFootprint_Bulbasaur,
};

View File

@ -1,4 +1,11 @@
#define PLACEHOLDER_TWO_FRAME_ANIMATION(name) \
#define PLACEHOLDER_ANIM_SINGLE_FRAME(name) \
static const union AnimCmd sAnim_##name##_1[] = \
{ \
ANIMCMD_FRAME(0, 1), \
ANIMCMD_END, \
}
#define PLACEHOLDER_TWO_FRAME_ANIMATION(name) \
static const union AnimCmd sAnim_##name##_1[] = \
{ \
ANIMCMD_FRAME(0, 30), \
@ -10508,6 +10515,113 @@ static const union AnimCmd sAnim_EnamorusTherian_1[] =
ANIMCMD_END,
};
#endif
#if P_GEN_9_POKEMON == TRUE
PLACEHOLDER_ANIM_SINGLE_FRAME(Sprigatito);
PLACEHOLDER_ANIM_SINGLE_FRAME(Floragato);
PLACEHOLDER_ANIM_SINGLE_FRAME(Meowscarada);
PLACEHOLDER_ANIM_SINGLE_FRAME(Fuecoco);
PLACEHOLDER_ANIM_SINGLE_FRAME(Crocalor);
PLACEHOLDER_ANIM_SINGLE_FRAME(Skeledirge);
PLACEHOLDER_ANIM_SINGLE_FRAME(Quaxly);
PLACEHOLDER_ANIM_SINGLE_FRAME(Quaxwell);
PLACEHOLDER_ANIM_SINGLE_FRAME(Quaquaval);
PLACEHOLDER_ANIM_SINGLE_FRAME(Lechonk);
PLACEHOLDER_ANIM_SINGLE_FRAME(Oinkologne);
PLACEHOLDER_ANIM_SINGLE_FRAME(Tarountula);
PLACEHOLDER_ANIM_SINGLE_FRAME(Spidops);
PLACEHOLDER_ANIM_SINGLE_FRAME(Nymble);
PLACEHOLDER_ANIM_SINGLE_FRAME(Lokix);
PLACEHOLDER_ANIM_SINGLE_FRAME(Pawmi);
PLACEHOLDER_ANIM_SINGLE_FRAME(Pawmo);
PLACEHOLDER_ANIM_SINGLE_FRAME(Pawmot);
PLACEHOLDER_ANIM_SINGLE_FRAME(Tandemaus);
PLACEHOLDER_ANIM_SINGLE_FRAME(Maushold);
PLACEHOLDER_ANIM_SINGLE_FRAME(Fidough);
PLACEHOLDER_ANIM_SINGLE_FRAME(Dachsbun);
PLACEHOLDER_ANIM_SINGLE_FRAME(Smoliv);
PLACEHOLDER_ANIM_SINGLE_FRAME(Dolliv);
PLACEHOLDER_ANIM_SINGLE_FRAME(Arboliva);
PLACEHOLDER_ANIM_SINGLE_FRAME(Squawkabilly);
PLACEHOLDER_ANIM_SINGLE_FRAME(Nacli);
PLACEHOLDER_ANIM_SINGLE_FRAME(Naclstack);
PLACEHOLDER_ANIM_SINGLE_FRAME(Garganacl);
PLACEHOLDER_ANIM_SINGLE_FRAME(Charcadet);
PLACEHOLDER_ANIM_SINGLE_FRAME(Armarouge);
PLACEHOLDER_ANIM_SINGLE_FRAME(Ceruledge);
PLACEHOLDER_ANIM_SINGLE_FRAME(Tadbulb);
PLACEHOLDER_ANIM_SINGLE_FRAME(Bellibolt);
PLACEHOLDER_ANIM_SINGLE_FRAME(Wattrel);
PLACEHOLDER_ANIM_SINGLE_FRAME(Kilowattrel);
PLACEHOLDER_ANIM_SINGLE_FRAME(Maschiff);
PLACEHOLDER_ANIM_SINGLE_FRAME(Mabosstiff);
PLACEHOLDER_ANIM_SINGLE_FRAME(Shroodle);
PLACEHOLDER_ANIM_SINGLE_FRAME(Grafaiai);
PLACEHOLDER_ANIM_SINGLE_FRAME(Bramblin);
PLACEHOLDER_ANIM_SINGLE_FRAME(Brambleghast);
PLACEHOLDER_ANIM_SINGLE_FRAME(Toedscool);
PLACEHOLDER_ANIM_SINGLE_FRAME(Toedscruel);
PLACEHOLDER_ANIM_SINGLE_FRAME(Klawf);
PLACEHOLDER_ANIM_SINGLE_FRAME(Capsakid);
PLACEHOLDER_ANIM_SINGLE_FRAME(Scovillain);
PLACEHOLDER_ANIM_SINGLE_FRAME(Rellor);
PLACEHOLDER_ANIM_SINGLE_FRAME(Rabsca);
PLACEHOLDER_ANIM_SINGLE_FRAME(Flittle);
PLACEHOLDER_ANIM_SINGLE_FRAME(Espathra);
PLACEHOLDER_ANIM_SINGLE_FRAME(Tinkatink);
PLACEHOLDER_ANIM_SINGLE_FRAME(Tinkatuff);
PLACEHOLDER_ANIM_SINGLE_FRAME(Tinkaton);
PLACEHOLDER_ANIM_SINGLE_FRAME(Wiglett);
PLACEHOLDER_ANIM_SINGLE_FRAME(Wugtrio);
PLACEHOLDER_ANIM_SINGLE_FRAME(Bombirdier);
PLACEHOLDER_ANIM_SINGLE_FRAME(Finizen);
PLACEHOLDER_ANIM_SINGLE_FRAME(Palafin);
PLACEHOLDER_ANIM_SINGLE_FRAME(Varoom);
PLACEHOLDER_ANIM_SINGLE_FRAME(Revavroom);
PLACEHOLDER_ANIM_SINGLE_FRAME(Cyclizar);
PLACEHOLDER_ANIM_SINGLE_FRAME(Orthworm);
PLACEHOLDER_ANIM_SINGLE_FRAME(Glimmet);
PLACEHOLDER_ANIM_SINGLE_FRAME(Glimmora);
PLACEHOLDER_ANIM_SINGLE_FRAME(Greavard);
PLACEHOLDER_ANIM_SINGLE_FRAME(Houndstone);
PLACEHOLDER_ANIM_SINGLE_FRAME(Flamigo);
PLACEHOLDER_ANIM_SINGLE_FRAME(Cetoddle);
PLACEHOLDER_ANIM_SINGLE_FRAME(Cetitan);
PLACEHOLDER_ANIM_SINGLE_FRAME(Veluza);
PLACEHOLDER_ANIM_SINGLE_FRAME(Dondozo);
PLACEHOLDER_ANIM_SINGLE_FRAME(Tatsugiri);
PLACEHOLDER_ANIM_SINGLE_FRAME(Annihilape);
PLACEHOLDER_ANIM_SINGLE_FRAME(Clodsire);
PLACEHOLDER_ANIM_SINGLE_FRAME(Farigiraf);
PLACEHOLDER_ANIM_SINGLE_FRAME(Dudunsparce);
PLACEHOLDER_ANIM_SINGLE_FRAME(Kingambit);
PLACEHOLDER_ANIM_SINGLE_FRAME(GreatTusk);
PLACEHOLDER_ANIM_SINGLE_FRAME(ScreamTail);
PLACEHOLDER_ANIM_SINGLE_FRAME(BruteBonnet);
PLACEHOLDER_ANIM_SINGLE_FRAME(FlutterMane);
PLACEHOLDER_ANIM_SINGLE_FRAME(SlitherWing);
PLACEHOLDER_ANIM_SINGLE_FRAME(SandyShocks);
PLACEHOLDER_ANIM_SINGLE_FRAME(IronTreads);
PLACEHOLDER_ANIM_SINGLE_FRAME(IronBundle);
PLACEHOLDER_ANIM_SINGLE_FRAME(IronHands);
PLACEHOLDER_ANIM_SINGLE_FRAME(IronJugulis);
PLACEHOLDER_ANIM_SINGLE_FRAME(IronMoth);
PLACEHOLDER_ANIM_SINGLE_FRAME(IronThorns);
PLACEHOLDER_ANIM_SINGLE_FRAME(Frigibax);
PLACEHOLDER_ANIM_SINGLE_FRAME(Arctibax);
PLACEHOLDER_ANIM_SINGLE_FRAME(Baxcalibur);
PLACEHOLDER_ANIM_SINGLE_FRAME(Gimmighoul);
PLACEHOLDER_ANIM_SINGLE_FRAME(Gholdengo);
PLACEHOLDER_ANIM_SINGLE_FRAME(WoChien);
PLACEHOLDER_ANIM_SINGLE_FRAME(ChienPao);
PLACEHOLDER_ANIM_SINGLE_FRAME(TingLu);
PLACEHOLDER_ANIM_SINGLE_FRAME(ChiYu);
PLACEHOLDER_ANIM_SINGLE_FRAME(RoaringMoon);
PLACEHOLDER_ANIM_SINGLE_FRAME(IronValiant);
PLACEHOLDER_ANIM_SINGLE_FRAME(Koraidon);
PLACEHOLDER_ANIM_SINGLE_FRAME(Miraidon);
PLACEHOLDER_ANIM_SINGLE_FRAME(WalkingWake);
PLACEHOLDER_ANIM_SINGLE_FRAME(IronLeaves);
#endif
#define SINGLE_ANIMATION(name) \
static const union AnimCmd *const sAnims_##name[] = \
@ -11485,6 +11599,113 @@ SINGLE_ANIMATION(Sneasler);
SINGLE_ANIMATION(Overqwil);
SINGLE_ANIMATION(Enamorus);
#endif
#if P_GEN_9_POKEMON == TRUE
SINGLE_ANIMATION(Sprigatito);
SINGLE_ANIMATION(Floragato);
SINGLE_ANIMATION(Meowscarada);
SINGLE_ANIMATION(Fuecoco);
SINGLE_ANIMATION(Crocalor);
SINGLE_ANIMATION(Skeledirge);
SINGLE_ANIMATION(Quaxly);
SINGLE_ANIMATION(Quaxwell);
SINGLE_ANIMATION(Quaquaval);
SINGLE_ANIMATION(Lechonk);
SINGLE_ANIMATION(Oinkologne);
SINGLE_ANIMATION(Tarountula);
SINGLE_ANIMATION(Spidops);
SINGLE_ANIMATION(Nymble);
SINGLE_ANIMATION(Lokix);
SINGLE_ANIMATION(Pawmi);
SINGLE_ANIMATION(Pawmo);
SINGLE_ANIMATION(Pawmot);
SINGLE_ANIMATION(Tandemaus);
SINGLE_ANIMATION(Maushold);
SINGLE_ANIMATION(Fidough);
SINGLE_ANIMATION(Dachsbun);
SINGLE_ANIMATION(Smoliv);
SINGLE_ANIMATION(Dolliv);
SINGLE_ANIMATION(Arboliva);
SINGLE_ANIMATION(Squawkabilly);
SINGLE_ANIMATION(Nacli);
SINGLE_ANIMATION(Naclstack);
SINGLE_ANIMATION(Garganacl);
SINGLE_ANIMATION(Charcadet);
SINGLE_ANIMATION(Armarouge);
SINGLE_ANIMATION(Ceruledge);
SINGLE_ANIMATION(Tadbulb);
SINGLE_ANIMATION(Bellibolt);
SINGLE_ANIMATION(Wattrel);
SINGLE_ANIMATION(Kilowattrel);
SINGLE_ANIMATION(Maschiff);
SINGLE_ANIMATION(Mabosstiff);
SINGLE_ANIMATION(Shroodle);
SINGLE_ANIMATION(Grafaiai);
SINGLE_ANIMATION(Bramblin);
SINGLE_ANIMATION(Brambleghast);
SINGLE_ANIMATION(Toedscool);
SINGLE_ANIMATION(Toedscruel);
SINGLE_ANIMATION(Klawf);
SINGLE_ANIMATION(Capsakid);
SINGLE_ANIMATION(Scovillain);
SINGLE_ANIMATION(Rellor);
SINGLE_ANIMATION(Rabsca);
SINGLE_ANIMATION(Flittle);
SINGLE_ANIMATION(Espathra);
SINGLE_ANIMATION(Tinkatink);
SINGLE_ANIMATION(Tinkatuff);
SINGLE_ANIMATION(Tinkaton);
SINGLE_ANIMATION(Wiglett);
SINGLE_ANIMATION(Wugtrio);
SINGLE_ANIMATION(Bombirdier);
SINGLE_ANIMATION(Finizen);
SINGLE_ANIMATION(Palafin);
SINGLE_ANIMATION(Varoom);
SINGLE_ANIMATION(Revavroom);
SINGLE_ANIMATION(Cyclizar);
SINGLE_ANIMATION(Orthworm);
SINGLE_ANIMATION(Glimmet);
SINGLE_ANIMATION(Glimmora);
SINGLE_ANIMATION(Greavard);
SINGLE_ANIMATION(Houndstone);
SINGLE_ANIMATION(Flamigo);
SINGLE_ANIMATION(Cetoddle);
SINGLE_ANIMATION(Cetitan);
SINGLE_ANIMATION(Veluza);
SINGLE_ANIMATION(Dondozo);
SINGLE_ANIMATION(Tatsugiri);
SINGLE_ANIMATION(Annihilape);
SINGLE_ANIMATION(Clodsire);
SINGLE_ANIMATION(Farigiraf);
SINGLE_ANIMATION(Dudunsparce);
SINGLE_ANIMATION(Kingambit);
SINGLE_ANIMATION(GreatTusk);
SINGLE_ANIMATION(ScreamTail);
SINGLE_ANIMATION(BruteBonnet);
SINGLE_ANIMATION(FlutterMane);
SINGLE_ANIMATION(SlitherWing);
SINGLE_ANIMATION(SandyShocks);
SINGLE_ANIMATION(IronTreads);
SINGLE_ANIMATION(IronBundle);
SINGLE_ANIMATION(IronHands);
SINGLE_ANIMATION(IronJugulis);
SINGLE_ANIMATION(IronMoth);
SINGLE_ANIMATION(IronThorns);
SINGLE_ANIMATION(Frigibax);
SINGLE_ANIMATION(Arctibax);
SINGLE_ANIMATION(Baxcalibur);
SINGLE_ANIMATION(Gimmighoul);
SINGLE_ANIMATION(Gholdengo);
SINGLE_ANIMATION(WoChien);
SINGLE_ANIMATION(ChienPao);
SINGLE_ANIMATION(TingLu);
SINGLE_ANIMATION(ChiYu);
SINGLE_ANIMATION(RoaringMoon);
SINGLE_ANIMATION(IronValiant);
SINGLE_ANIMATION(Koraidon);
SINGLE_ANIMATION(Miraidon);
SINGLE_ANIMATION(WalkingWake);
SINGLE_ANIMATION(IronLeaves);
#endif
SINGLE_ANIMATION(VenusaurMega);
SINGLE_ANIMATION(CHARIZARD_MEGA_X);
SINGLE_ANIMATION(CHARIZARD_MEGA_Y);
@ -12932,5 +13153,112 @@ const union AnimCmd *const *const gMonFrontAnimsPtrTable[NUM_SPECIES + 1] =
[SPECIES_ENAMORUS_THERIAN] = sAnims_EnamorusTherian,
[SPECIES_BASCULEGION_FEMALE] = sAnims_Basculegion,
#endif
[SPECIES_EGG] = sAnims_Egg,
#if P_GEN_9_POKEMON == TRUE
[SPECIES_SPRIGATITO] = sAnims_Sprigatito,
[SPECIES_FLORAGATO] = sAnims_Floragato,
[SPECIES_MEOWSCARADA] = sAnims_Meowscarada,
[SPECIES_FUECOCO] = sAnims_Fuecoco,
[SPECIES_CROCALOR] = sAnims_Crocalor,
[SPECIES_SKELEDIRGE] = sAnims_Skeledirge,
[SPECIES_QUAXLY] = sAnims_Quaxly,
[SPECIES_QUAXWELL] = sAnims_Quaxwell,
[SPECIES_QUAQUAVAL] = sAnims_Quaquaval,
[SPECIES_LECHONK] = sAnims_Lechonk,
[SPECIES_OINKOLOGNE] = sAnims_Oinkologne,
[SPECIES_TAROUNTULA] = sAnims_Tarountula,
[SPECIES_SPIDOPS] = sAnims_Spidops,
[SPECIES_NYMBLE] = sAnims_Nymble,
[SPECIES_LOKIX] = sAnims_Lokix,
[SPECIES_PAWMI] = sAnims_Pawmi,
[SPECIES_PAWMO] = sAnims_Pawmo,
[SPECIES_PAWMOT] = sAnims_Pawmot,
[SPECIES_TANDEMAUS] = sAnims_Tandemaus,
[SPECIES_MAUSHOLD] = sAnims_Maushold,
[SPECIES_FIDOUGH] = sAnims_Fidough,
[SPECIES_DACHSBUN] = sAnims_Dachsbun,
[SPECIES_SMOLIV] = sAnims_Smoliv,
[SPECIES_DOLLIV] = sAnims_Dolliv,
[SPECIES_ARBOLIVA] = sAnims_Arboliva,
[SPECIES_SQUAWKABILLY] = sAnims_Squawkabilly,
[SPECIES_NACLI] = sAnims_Nacli,
[SPECIES_NACLSTACK] = sAnims_Naclstack,
[SPECIES_GARGANACL] = sAnims_Garganacl,
[SPECIES_CHARCADET] = sAnims_Charcadet,
[SPECIES_ARMAROUGE] = sAnims_Armarouge,
[SPECIES_CERULEDGE] = sAnims_Ceruledge,
[SPECIES_TADBULB] = sAnims_Tadbulb,
[SPECIES_BELLIBOLT] = sAnims_Bellibolt,
[SPECIES_WATTREL] = sAnims_Wattrel,
[SPECIES_KILOWATTREL] = sAnims_Kilowattrel,
[SPECIES_MASCHIFF] = sAnims_Maschiff,
[SPECIES_MABOSSTIFF] = sAnims_Mabosstiff,
[SPECIES_SHROODLE] = sAnims_Shroodle,
[SPECIES_GRAFAIAI] = sAnims_Grafaiai,
[SPECIES_BRAMBLIN] = sAnims_Bramblin,
[SPECIES_BRAMBLEGHAST] = sAnims_Brambleghast,
[SPECIES_TOEDSCOOL] = sAnims_Toedscool,
[SPECIES_TOEDSCRUEL] = sAnims_Toedscruel,
[SPECIES_KLAWF] = sAnims_Klawf,
[SPECIES_CAPSAKID] = sAnims_Capsakid,
[SPECIES_SCOVILLAIN] = sAnims_Scovillain,
[SPECIES_RELLOR] = sAnims_Rellor,
[SPECIES_RABSCA] = sAnims_Rabsca,
[SPECIES_FLITTLE] = sAnims_Flittle,
[SPECIES_ESPATHRA] = sAnims_Espathra,
[SPECIES_TINKATINK] = sAnims_Tinkatink,
[SPECIES_TINKATUFF] = sAnims_Tinkatuff,
[SPECIES_TINKATON] = sAnims_Tinkaton,
[SPECIES_WIGLETT] = sAnims_Wiglett,
[SPECIES_WUGTRIO] = sAnims_Wugtrio,
[SPECIES_BOMBIRDIER] = sAnims_Bombirdier,
[SPECIES_FINIZEN] = sAnims_Finizen,
[SPECIES_PALAFIN] = sAnims_Palafin,
[SPECIES_VAROOM] = sAnims_Varoom,
[SPECIES_REVAVROOM] = sAnims_Revavroom,
[SPECIES_CYCLIZAR] = sAnims_Cyclizar,
[SPECIES_ORTHWORM] = sAnims_Orthworm,
[SPECIES_GLIMMET] = sAnims_Glimmet,
[SPECIES_GLIMMORA] = sAnims_Glimmora,
[SPECIES_GREAVARD] = sAnims_Greavard,
[SPECIES_HOUNDSTONE] = sAnims_Houndstone,
[SPECIES_FLAMIGO] = sAnims_Flamigo,
[SPECIES_CETODDLE] = sAnims_Cetoddle,
[SPECIES_CETITAN] = sAnims_Cetitan,
[SPECIES_VELUZA] = sAnims_Veluza,
[SPECIES_DONDOZO] = sAnims_Dondozo,
[SPECIES_TATSUGIRI] = sAnims_Tatsugiri,
[SPECIES_ANNIHILAPE] = sAnims_Annihilape,
[SPECIES_CLODSIRE] = sAnims_Clodsire,
[SPECIES_FARIGIRAF] = sAnims_Farigiraf,
[SPECIES_DUDUNSPARCE] = sAnims_Dudunsparce,
[SPECIES_KINGAMBIT] = sAnims_Kingambit,
[SPECIES_GREAT_TUSK] = sAnims_GreatTusk,
[SPECIES_SCREAM_TAIL] = sAnims_ScreamTail,
[SPECIES_BRUTE_BONNET] = sAnims_BruteBonnet,
[SPECIES_FLUTTER_MANE] = sAnims_FlutterMane,
[SPECIES_SLITHER_WING] = sAnims_SlitherWing,
[SPECIES_SANDY_SHOCKS] = sAnims_SandyShocks,
[SPECIES_IRON_TREADS] = sAnims_IronTreads,
[SPECIES_IRON_BUNDLE] = sAnims_IronBundle,
[SPECIES_IRON_HANDS] = sAnims_IronHands,
[SPECIES_IRON_JUGULIS] = sAnims_IronJugulis,
[SPECIES_IRON_MOTH] = sAnims_IronMoth,
[SPECIES_IRON_THORNS] = sAnims_IronThorns,
[SPECIES_FRIGIBAX] = sAnims_Frigibax,
[SPECIES_ARCTIBAX] = sAnims_Arctibax,
[SPECIES_BAXCALIBUR] = sAnims_Baxcalibur,
[SPECIES_GIMMIGHOUL] = sAnims_Gimmighoul,
[SPECIES_GHOLDENGO] = sAnims_Gholdengo,
[SPECIES_WO_CHIEN] = sAnims_WoChien,
[SPECIES_CHIEN_PAO] = sAnims_ChienPao,
[SPECIES_TING_LU] = sAnims_TingLu,
[SPECIES_CHI_YU] = sAnims_ChiYu,
[SPECIES_ROARING_MOON] = sAnims_RoaringMoon,
[SPECIES_IRON_VALIANT] = sAnims_IronValiant,
[SPECIES_KORAIDON] = sAnims_Koraidon,
[SPECIES_MIRAIDON] = sAnims_Miraidon,
[SPECIES_WALKING_WAKE] = sAnims_WalkingWake,
[SPECIES_IRON_LEAVES] = sAnims_IronLeaves,
#endif
[SPECIES_EGG] = sAnims_Egg,
};

View File

@ -915,6 +915,113 @@ const u8 gSpeciesNames[NUM_SPECIES][POKEMON_NAME_LENGTH + 1] = {
[SPECIES_OVERQWIL] = _("Overqwil"),
[SPECIES_ENAMORUS] = _("Enamorus"),
#endif
#if P_GEN_9_POKEMON == TRUE
[SPECIES_SPRIGATITO] = _("Sprigatito"),
[SPECIES_FLORAGATO] = _("Floragato"),
[SPECIES_MEOWSCARADA] = _("Meowscarad"),
[SPECIES_FUECOCO] = _("Fuecoco"),
[SPECIES_CROCALOR] = _("Crocalor"),
[SPECIES_SKELEDIRGE] = _("Skeledirge"),
[SPECIES_QUAXLY] = _("Quaxly"),
[SPECIES_QUAXWELL] = _("Quaxwell"),
[SPECIES_QUAQUAVAL] = _("Quaquaval"),
[SPECIES_LECHONK] = _("Lechonk"),
[SPECIES_OINKOLOGNE] = _("Oinkologne"),
[SPECIES_TAROUNTULA] = _("Tarountula"),
[SPECIES_SPIDOPS] = _("Spidops"),
[SPECIES_NYMBLE] = _("Nymble"),
[SPECIES_LOKIX] = _("Lokix"),
[SPECIES_PAWMI] = _("Pawmi"),
[SPECIES_PAWMO] = _("Pawmo"),
[SPECIES_PAWMOT] = _("Pawmot"),
[SPECIES_TANDEMAUS] = _("Tandemaus"),
[SPECIES_MAUSHOLD] = _("Maushold"),
[SPECIES_FIDOUGH] = _("Fidough"),
[SPECIES_DACHSBUN] = _("Dachsbun"),
[SPECIES_SMOLIV] = _("Smoliv"),
[SPECIES_DOLLIV] = _("Dolliv"),
[SPECIES_ARBOLIVA] = _("Arboliva"),
[SPECIES_SQUAWKABILLY] = _("Squawkabil"),
[SPECIES_NACLI] = _("Nacli"),
[SPECIES_NACLSTACK] = _("Naclstack"),
[SPECIES_GARGANACL] = _("Garganacl"),
[SPECIES_CHARCADET] = _("Charcadet"),
[SPECIES_ARMAROUGE] = _("Armarouge"),
[SPECIES_CERULEDGE] = _("Ceruledge"),
[SPECIES_TADBULB] = _("Tadbulb"),
[SPECIES_BELLIBOLT] = _("Bellibolt"),
[SPECIES_WATTREL] = _("Wattrel"),
[SPECIES_KILOWATTREL] = _("Kilowattre"),
[SPECIES_MASCHIFF] = _("Maschiff"),
[SPECIES_MABOSSTIFF] = _("Mabosstiff"),
[SPECIES_SHROODLE] = _("Shroodle"),
[SPECIES_GRAFAIAI] = _("Grafaiai"),
[SPECIES_BRAMBLIN] = _("Bramblin"),
[SPECIES_BRAMBLEGHAST] = _("Bramblegha"),
[SPECIES_TOEDSCOOL] = _("Toedscool"),
[SPECIES_TOEDSCRUEL] = _("Toedscruel"),
[SPECIES_KLAWF] = _("Klawf"),
[SPECIES_CAPSAKID] = _("Capsakid"),
[SPECIES_SCOVILLAIN] = _("Scovillain"),
[SPECIES_RELLOR] = _("Rellor"),
[SPECIES_RABSCA] = _("Rabsca"),
[SPECIES_FLITTLE] = _("Flittle"),
[SPECIES_ESPATHRA] = _("Espathra"),
[SPECIES_TINKATINK] = _("Tinkatink"),
[SPECIES_TINKATUFF] = _("Tinkatuff"),
[SPECIES_TINKATON] = _("Tinkaton"),
[SPECIES_WIGLETT] = _("Wiglett"),
[SPECIES_WUGTRIO] = _("Wugtrio"),
[SPECIES_BOMBIRDIER] = _("Bombirdier"),
[SPECIES_FINIZEN] = _("Finizen"),
[SPECIES_PALAFIN] = _("Palafin"),
[SPECIES_VAROOM] = _("Varoom"),
[SPECIES_REVAVROOM] = _("Revavroom"),
[SPECIES_CYCLIZAR] = _("Cyclizar"),
[SPECIES_ORTHWORM] = _("Orthworm"),
[SPECIES_GLIMMET] = _("Glimmet"),
[SPECIES_GLIMMORA] = _("Glimmora"),
[SPECIES_GREAVARD] = _("Greavard"),
[SPECIES_HOUNDSTONE] = _("Houndstone"),
[SPECIES_FLAMIGO] = _("Flamigo"),
[SPECIES_CETODDLE] = _("Cetoddle"),
[SPECIES_CETITAN] = _("Cetitan"),
[SPECIES_VELUZA] = _("Veluza"),
[SPECIES_DONDOZO] = _("Dondozo"),
[SPECIES_TATSUGIRI] = _("Tatsugiri"),
[SPECIES_ANNIHILAPE] = _("Annihilape"),
[SPECIES_CLODSIRE] = _("Clodsire"),
[SPECIES_FARIGIRAF] = _("Farigiraf"),
[SPECIES_DUDUNSPARCE] = _("Dudunsparc"),
[SPECIES_KINGAMBIT] = _("Kingambit"),
[SPECIES_GREAT_TUSK] = _("Great Tusk"),
[SPECIES_SCREAM_TAIL] = _("Scream Tai"),
[SPECIES_BRUTE_BONNET] = _("Brute Bonn"),
[SPECIES_FLUTTER_MANE] = _("Flutter Ma"),
[SPECIES_SLITHER_WING] = _("Slither Wi"),
[SPECIES_SANDY_SHOCKS] = _("Sandy Shoc"),
[SPECIES_IRON_TREADS] = _("Iron Tread"),
[SPECIES_IRON_BUNDLE] = _("Iron Bundl"),
[SPECIES_IRON_HANDS] = _("Iron Hands"),
[SPECIES_IRON_JUGULIS] = _("Iron Jugul"),
[SPECIES_IRON_MOTH] = _("Iron Moth"),
[SPECIES_IRON_THORNS] = _("Iron Thorn"),
[SPECIES_FRIGIBAX] = _("Frigibax"),
[SPECIES_ARCTIBAX] = _("Arctibax"),
[SPECIES_BAXCALIBUR] = _("Baxcalibur"),
[SPECIES_GIMMIGHOUL] = _("Gimmighoul"),
[SPECIES_GHOLDENGO] = _("Gholdengo"),
[SPECIES_WO_CHIEN] = _("Wo-Chien"),
[SPECIES_CHIEN_PAO] = _("Chien-Pao"),
[SPECIES_TING_LU] = _("Ting-Lu"),
[SPECIES_CHI_YU] = _("Chi-Yu"),
[SPECIES_ROARING_MOON] = _("Roaring Mo"),
[SPECIES_IRON_VALIANT] = _("Iron Valia"),
[SPECIES_KORAIDON] = _("Koraidon"),
[SPECIES_MIRAIDON] = _("Miraidon"),
[SPECIES_WALKING_WAKE] = _("Walking Wa"),
[SPECIES_IRON_LEAVES] = _("Iron Leave"),
#endif
// Megas
[SPECIES_VENUSAUR_MEGA] = _("Venusaur"),

View File

@ -2894,6 +2894,113 @@ const u8 sMonFrontAnimIdsTable[NUM_SPECIES - 1] =
[SPECIES_OVERQWIL - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_ENAMORUS - 1] = ANIM_V_SQUISH_AND_BOUNCE,
// Gen 9 Todo: Assign proper ones.
[SPECIES_SPRIGATITO - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_FLORAGATO - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_MEOWSCARADA - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_FUECOCO - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_CROCALOR - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_SKELEDIRGE - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_QUAXLY - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_QUAXWELL - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_QUAQUAVAL - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_LECHONK - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_OINKOLOGNE - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_TAROUNTULA - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_SPIDOPS - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_NYMBLE - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_LOKIX - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_PAWMI - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_PAWMO - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_PAWMOT - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_TANDEMAUS - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_MAUSHOLD - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_FIDOUGH - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_DACHSBUN - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_SMOLIV - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_DOLLIV - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_ARBOLIVA - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_SQUAWKABILLY - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_NACLI - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_NACLSTACK - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_GARGANACL - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_CHARCADET - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_ARMAROUGE - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_CERULEDGE - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_TADBULB - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_BELLIBOLT - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_WATTREL - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_KILOWATTREL - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_MASCHIFF - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_MABOSSTIFF - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_SHROODLE - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_GRAFAIAI - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_BRAMBLIN - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_BRAMBLEGHAST - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_TOEDSCOOL - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_TOEDSCRUEL - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_KLAWF - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_CAPSAKID - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_SCOVILLAIN - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_RELLOR - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_RABSCA - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_FLITTLE - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_ESPATHRA - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_TINKATINK - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_TINKATUFF - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_TINKATON - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_WIGLETT - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_WUGTRIO - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_BOMBIRDIER - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_FINIZEN - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_PALAFIN - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_VAROOM - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_REVAVROOM - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_CYCLIZAR - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_ORTHWORM - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_GLIMMET - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_GLIMMORA - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_GREAVARD - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_HOUNDSTONE - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_FLAMIGO - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_CETODDLE - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_CETITAN - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_VELUZA - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_DONDOZO - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_TATSUGIRI - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_ANNIHILAPE - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_CLODSIRE - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_FARIGIRAF - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_DUDUNSPARCE - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_KINGAMBIT - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_GREAT_TUSK - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_SCREAM_TAIL - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_BRUTE_BONNET - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_FLUTTER_MANE - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_SLITHER_WING - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_SANDY_SHOCKS - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_IRON_TREADS - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_IRON_BUNDLE - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_IRON_HANDS - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_IRON_JUGULIS - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_IRON_MOTH - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_IRON_THORNS - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_FRIGIBAX - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_ARCTIBAX - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_BAXCALIBUR - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_GIMMIGHOUL - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_GHOLDENGO - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_WO_CHIEN - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_CHIEN_PAO - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_TING_LU - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_CHI_YU - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_ROARING_MOON - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_IRON_VALIANT - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_KORAIDON - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_MIRAIDON - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_WALKING_WAKE - 1] = ANIM_V_SQUISH_AND_BOUNCE,
[SPECIES_IRON_LEAVES - 1] = ANIM_V_SQUISH_AND_BOUNCE,
// Gen 3 Forms
[SPECIES_CASTFORM_SUNNY - 1] = ANIM_GROW_VIBRATE,
[SPECIES_CASTFORM_RAINY - 1] = ANIM_SWING_CONVEX_FAST,

View File

@ -1294,6 +1294,113 @@ const u8 *const gMonIconTable[NUM_SPECIES + 1] =
[SPECIES_CALYREX_SHADOW_RIDER] = gMonIcon_CalyrexShadowRider,
[SPECIES_ENAMORUS_THERIAN] = gMonIcon_EnamorusTherian,
[SPECIES_BASCULEGION_FEMALE] = gMonIcon_BasculegionFemale,
#endif
#if P_GEN_9_POKEMON == TRUE
//[SPECIES_SPRIGATITO] = gMonIcon_Sprigatito,
//[SPECIES_FLORAGATO] = gMonIcon_Floragato,
//[SPECIES_MEOWSCARADA] = gMonIcon_Meowscarada,
//[SPECIES_FUECOCO] = gMonIcon_Fuecoco,
//[SPECIES_CROCALOR] = gMonIcon_Crocalor,
//[SPECIES_SKELEDIRGE] = gMonIcon_Skeledirge,
//[SPECIES_QUAXLY] = gMonIcon_Quaxly,
//[SPECIES_QUAXWELL] = gMonIcon_Quaxwell,
//[SPECIES_QUAQUAVAL] = gMonIcon_Quaquaval,
//[SPECIES_LECHONK] = gMonIcon_Lechonk,
//[SPECIES_OINKOLOGNE] = gMonIcon_Oinkologne,
//[SPECIES_TAROUNTULA] = gMonIcon_Tarountula,
//[SPECIES_SPIDOPS] = gMonIcon_Spidops,
//[SPECIES_NYMBLE] = gMonIcon_Nymble,
//[SPECIES_LOKIX] = gMonIcon_Lokix,
//[SPECIES_PAWMI] = gMonIcon_Pawmi,
//[SPECIES_PAWMO] = gMonIcon_Pawmo,
//[SPECIES_PAWMOT] = gMonIcon_Pawmot,
//[SPECIES_TANDEMAUS] = gMonIcon_Tandemaus,
//[SPECIES_MAUSHOLD] = gMonIcon_Maushold,
//[SPECIES_FIDOUGH] = gMonIcon_Fidough,
//[SPECIES_DACHSBUN] = gMonIcon_Dachsbun,
//[SPECIES_SMOLIV] = gMonIcon_Smoliv,
//[SPECIES_DOLLIV] = gMonIcon_Dolliv,
//[SPECIES_ARBOLIVA] = gMonIcon_Arboliva,
//[SPECIES_SQUAWKABILLY] = gMonIcon_Squawkabilly,
//[SPECIES_NACLI] = gMonIcon_Nacli,
//[SPECIES_NACLSTACK] = gMonIcon_Naclstack,
//[SPECIES_GARGANACL] = gMonIcon_Garganacl,
//[SPECIES_CHARCADET] = gMonIcon_Charcadet,
//[SPECIES_ARMAROUGE] = gMonIcon_Armarouge,
//[SPECIES_CERULEDGE] = gMonIcon_Ceruledge,
//[SPECIES_TADBULB] = gMonIcon_Tadbulb,
//[SPECIES_BELLIBOLT] = gMonIcon_Bellibolt,
//[SPECIES_WATTREL] = gMonIcon_Wattrel,
//[SPECIES_KILOWATTREL] = gMonIcon_Kilowattrel,
//[SPECIES_MASCHIFF] = gMonIcon_Maschiff,
//[SPECIES_MABOSSTIFF] = gMonIcon_Mabosstiff,
//[SPECIES_SHROODLE] = gMonIcon_Shroodle,
//[SPECIES_GRAFAIAI] = gMonIcon_Grafaiai,
//[SPECIES_BRAMBLIN] = gMonIcon_Bramblin,
//[SPECIES_BRAMBLEGHAST] = gMonIcon_Brambleghast,
//[SPECIES_TOEDSCOOL] = gMonIcon_Toedscool,
//[SPECIES_TOEDSCRUEL] = gMonIcon_Toedscruel,
//[SPECIES_KLAWF] = gMonIcon_Klawf,
//[SPECIES_CAPSAKID] = gMonIcon_Capsakid,
//[SPECIES_SCOVILLAIN] = gMonIcon_Scovillain,
//[SPECIES_RELLOR] = gMonIcon_Rellor,
//[SPECIES_RABSCA] = gMonIcon_Rabsca,
//[SPECIES_FLITTLE] = gMonIcon_Flittle,
//[SPECIES_ESPATHRA] = gMonIcon_Espathra,
//[SPECIES_TINKATINK] = gMonIcon_Tinkatink,
//[SPECIES_TINKATUFF] = gMonIcon_Tinkatuff,
//[SPECIES_TINKATON] = gMonIcon_Tinkaton,
//[SPECIES_WIGLETT] = gMonIcon_Wiglett,
//[SPECIES_WUGTRIO] = gMonIcon_Wugtrio,
//[SPECIES_BOMBIRDIER] = gMonIcon_Bombirdier,
//[SPECIES_FINIZEN] = gMonIcon_Finizen,
//[SPECIES_PALAFIN] = gMonIcon_Palafin,
//[SPECIES_VAROOM] = gMonIcon_Varoom,
//[SPECIES_REVAVROOM] = gMonIcon_Revavroom,
//[SPECIES_CYCLIZAR] = gMonIcon_Cyclizar,
//[SPECIES_ORTHWORM] = gMonIcon_Orthworm,
//[SPECIES_GLIMMET] = gMonIcon_Glimmet,
//[SPECIES_GLIMMORA] = gMonIcon_Glimmora,
//[SPECIES_GREAVARD] = gMonIcon_Greavard,
//[SPECIES_HOUNDSTONE] = gMonIcon_Houndstone,
//[SPECIES_FLAMIGO] = gMonIcon_Flamigo,
//[SPECIES_CETODDLE] = gMonIcon_Cetoddle,
//[SPECIES_CETITAN] = gMonIcon_Cetitan,
//[SPECIES_VELUZA] = gMonIcon_Veluza,
//[SPECIES_DONDOZO] = gMonIcon_Dondozo,
//[SPECIES_TATSUGIRI] = gMonIcon_Tatsugiri,
//[SPECIES_ANNIHILAPE] = gMonIcon_Annihilape,
//[SPECIES_CLODSIRE] = gMonIcon_Clodsire,
//[SPECIES_FARIGIRAF] = gMonIcon_Farigiraf,
//[SPECIES_DUDUNSPARCE] = gMonIcon_Dudunsparce,
//[SPECIES_KINGAMBIT] = gMonIcon_Kingambit,
//[SPECIES_GREAT_TUSK] = gMonIcon_GreatTusk,
//[SPECIES_SCREAM_TAIL] = gMonIcon_ScreamTail,
//[SPECIES_BRUTE_BONNET] = gMonIcon_BruteBonnet,
//[SPECIES_FLUTTER_MANE] = gMonIcon_FlutterMane,
//[SPECIES_SLITHER_WING] = gMonIcon_SlitherWing,
//[SPECIES_SANDY_SHOCKS] = gMonIcon_SandyShocks,
//[SPECIES_IRON_TREADS] = gMonIcon_IronTreads,
//[SPECIES_IRON_BUNDLE] = gMonIcon_IronBundle,
//[SPECIES_IRON_HANDS] = gMonIcon_IronHands,
//[SPECIES_IRON_JUGULIS] = gMonIcon_IronJugulis,
//[SPECIES_IRON_MOTH] = gMonIcon_IronMoth,
//[SPECIES_IRON_THORNS] = gMonIcon_IronThorns,
//[SPECIES_FRIGIBAX] = gMonIcon_Frigibax,
//[SPECIES_ARCTIBAX] = gMonIcon_Arctibax,
//[SPECIES_BAXCALIBUR] = gMonIcon_Baxcalibur,
//[SPECIES_GIMMIGHOUL] = gMonIcon_Gimmighoul,
//[SPECIES_GHOLDENGO] = gMonIcon_Gholdengo,
//[SPECIES_WO_CHIEN] = gMonIcon_WoChien,
//[SPECIES_CHIEN_PAO] = gMonIcon_ChienPao,
//[SPECIES_TING_LU] = gMonIcon_TingLu,
//[SPECIES_CHI_YU] = gMonIcon_ChiYu,
//[SPECIES_ROARING_MOON] = gMonIcon_RoaringMoon,
//[SPECIES_IRON_VALIANT] = gMonIcon_IronValiant,
//[SPECIES_KORAIDON] = gMonIcon_Koraidon,
//[SPECIES_MIRAIDON] = gMonIcon_Miraidon,
//[SPECIES_WALKING_WAKE] = gMonIcon_WalkingWake,
//[SPECIES_IRON_LEAVES] = gMonIcon_IronLeaves,
#endif
[SPECIES_EGG] = gMonIcon_Egg,
};
@ -2528,6 +2635,113 @@ const u8 gMonIconPaletteIndices[] =
[SPECIES_CALYREX_SHADOW_RIDER] = 0,
[SPECIES_ENAMORUS_THERIAN] = 1,
[SPECIES_BASCULEGION_FEMALE] = 0,
#endif
#if P_GEN_9_POKEMON == TRUE
[SPECIES_SPRIGATITO] = 0,
[SPECIES_FLORAGATO] = 0,
[SPECIES_MEOWSCARADA] = 0,
[SPECIES_FUECOCO] = 0,
[SPECIES_CROCALOR] = 0,
[SPECIES_SKELEDIRGE] = 0,
[SPECIES_QUAXLY] = 0,
[SPECIES_QUAXWELL] = 0,
[SPECIES_QUAQUAVAL] = 0,
[SPECIES_LECHONK] = 0,
[SPECIES_OINKOLOGNE] = 0,
[SPECIES_TAROUNTULA] = 0,
[SPECIES_SPIDOPS] = 0,
[SPECIES_NYMBLE] = 0,
[SPECIES_LOKIX] = 0,
[SPECIES_PAWMI] = 0,
[SPECIES_PAWMO] = 0,
[SPECIES_PAWMOT] = 0,
[SPECIES_TANDEMAUS] = 0,
[SPECIES_MAUSHOLD] = 0,
[SPECIES_FIDOUGH] = 0,
[SPECIES_DACHSBUN] = 0,
[SPECIES_SMOLIV] = 0,
[SPECIES_DOLLIV] = 0,
[SPECIES_ARBOLIVA] = 0,
[SPECIES_SQUAWKABILLY] = 0,
[SPECIES_NACLI] = 0,
[SPECIES_NACLSTACK] = 0,
[SPECIES_GARGANACL] = 0,
[SPECIES_CHARCADET] = 0,
[SPECIES_ARMAROUGE] = 0,
[SPECIES_CERULEDGE] = 0,
[SPECIES_TADBULB] = 0,
[SPECIES_BELLIBOLT] = 0,
[SPECIES_WATTREL] = 0,
[SPECIES_KILOWATTREL] = 0,
[SPECIES_MASCHIFF] = 0,
[SPECIES_MABOSSTIFF] = 0,
[SPECIES_SHROODLE] = 0,
[SPECIES_GRAFAIAI] = 0,
[SPECIES_BRAMBLIN] = 0,
[SPECIES_BRAMBLEGHAST] = 0,
[SPECIES_TOEDSCOOL] = 0,
[SPECIES_TOEDSCRUEL] = 0,
[SPECIES_KLAWF] = 0,
[SPECIES_CAPSAKID] = 0,
[SPECIES_SCOVILLAIN] = 0,
[SPECIES_RELLOR] = 0,
[SPECIES_RABSCA] = 0,
[SPECIES_FLITTLE] = 0,
[SPECIES_ESPATHRA] = 0,
[SPECIES_TINKATINK] = 0,
[SPECIES_TINKATUFF] = 0,
[SPECIES_TINKATON] = 0,
[SPECIES_WIGLETT] = 0,
[SPECIES_WUGTRIO] = 0,
[SPECIES_BOMBIRDIER] = 0,
[SPECIES_FINIZEN] = 0,
[SPECIES_PALAFIN] = 0,
[SPECIES_VAROOM] = 0,
[SPECIES_REVAVROOM] = 0,
[SPECIES_CYCLIZAR] = 0,
[SPECIES_ORTHWORM] = 0,
[SPECIES_GLIMMET] = 0,
[SPECIES_GLIMMORA] = 0,
[SPECIES_GREAVARD] = 0,
[SPECIES_HOUNDSTONE] = 0,
[SPECIES_FLAMIGO] = 0,
[SPECIES_CETODDLE] = 0,
[SPECIES_CETITAN] = 0,
[SPECIES_VELUZA] = 0,
[SPECIES_DONDOZO] = 0,
[SPECIES_TATSUGIRI] = 0,
[SPECIES_ANNIHILAPE] = 0,
[SPECIES_CLODSIRE] = 0,
[SPECIES_FARIGIRAF] = 0,
[SPECIES_DUDUNSPARCE] = 0,
[SPECIES_KINGAMBIT] = 0,
[SPECIES_GREAT_TUSK] = 0,
[SPECIES_SCREAM_TAIL] = 0,
[SPECIES_BRUTE_BONNET] = 0,
[SPECIES_FLUTTER_MANE] = 0,
[SPECIES_SLITHER_WING] = 0,
[SPECIES_SANDY_SHOCKS] = 0,
[SPECIES_IRON_TREADS] = 0,
[SPECIES_IRON_BUNDLE] = 0,
[SPECIES_IRON_HANDS] = 0,
[SPECIES_IRON_JUGULIS] = 0,
[SPECIES_IRON_MOTH] = 0,
[SPECIES_IRON_THORNS] = 0,
[SPECIES_FRIGIBAX] = 0,
[SPECIES_ARCTIBAX] = 0,
[SPECIES_BAXCALIBUR] = 0,
[SPECIES_GIMMIGHOUL] = 0,
[SPECIES_GHOLDENGO] = 0,
[SPECIES_WO_CHIEN] = 0,
[SPECIES_CHIEN_PAO] = 0,
[SPECIES_TING_LU] = 0,
[SPECIES_CHI_YU] = 0,
[SPECIES_ROARING_MOON] = 0,
[SPECIES_IRON_VALIANT] = 0,
[SPECIES_KORAIDON] = 0,
[SPECIES_MIRAIDON] = 0,
[SPECIES_WALKING_WAKE] = 0,
[SPECIES_IRON_LEAVES] = 0,
#endif
[SPECIES_EGG] = 1,
};