pokerogue/src/data/balance/tms.ts
Sirz Benjie 1029afcdbf
[Refactor] Remove circular dependencies (part 4) (#5964)
* Add abilityAttr.is methods

* [WIP] move modifier stuff around

* Untangle circular deps from modifiers

* Move unlockables to own file

* Untangle all circular deps outside of MEs

* Move constants in MEs to their own files

* Re-add missing import to battle.ts

* Add necessary overload for getTag

* Add missing type import in weather.ts

* Init modifier types and pools in loading-scene

* Remove stray commented code

* Apply kev's suggestions from code review

Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>

---------

Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com>
2025-06-11 19:42:04 -07:00

68915 lines
1.6 MiB

import { ModifierTier } from "#enums/modifier-tier";
import { MoveId } from "#enums/move-id";
import { SpeciesId } from "#enums/species-id";
interface TmSpecies {
[key: number]: Array<SpeciesId | Array<SpeciesId | string>>
}
export const reverseCompatibleTms: MoveId[] = [];/*[
MoveId.TAKE_DOWN,
MoveId.TOXIC,
MoveId.RAGE,
MoveId.MIMIC,
MoveId.DOUBLE_TEAM,
MoveId.BIDE,
MoveId.REST,
MoveId.SUBSTITUTE,
MoveId.SNORE,
MoveId.PROTECT,
MoveId.ENDURE,
MoveId.SWAGGER,
MoveId.ATTRACT,
MoveId.SLEEP_TALK,
MoveId.RETURN,
MoveId.FRUSTRATION,
MoveId.HIDDEN_POWER,
MoveId.FACADE,
MoveId.SECRET_POWER,
MoveId.NATURAL_GIFT,
MoveId.CAPTIVATE,
MoveId.ROUND
];*/
export const tmSpecies: TmSpecies = {
[MoveId.MEGA_PUNCH]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.SLOWBRO,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.SNORLAX,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.DELIBIRD,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.TYRANITAR,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.KECLEON,
SpeciesId.DUSCLOPS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.GROUDON,
SpeciesId.JIRACHI,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.REGIGIGAS,
SpeciesId.VICTINI,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.ZOROARK,
SpeciesId.REUNICLUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.DIGGERSBY,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.HELIOLISK,
SpeciesId.HAWLUCHA,
SpeciesId.GOODRA,
SpeciesId.INCINEROAR,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.TURTONATOR,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_BULU,
SpeciesId.BUZZWOLE,
SpeciesId.GUZZLORD,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.MELMETAL,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.COALOSSAL,
SpeciesId.TOXTRICITY,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.MR_RIME,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
[
SpeciesId.DEOXYS,
"attack",
"defense",
"speed",
],
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_MAROWAK,
[
SpeciesId.LYCANROC,
"midnight",
],
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
],
[MoveId.PAY_DAY]: [
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.RHYDON,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.SNORLAX,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.SLOWKING,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.MUNCHLAX,
SpeciesId.RHYPERIOR,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SYLVEON,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.ZERAORA,
SpeciesId.PERRSERKER,
SpeciesId.INDEEDEE,
SpeciesId.CALYREX,
SpeciesId.ANNIHILAPE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
],
[MoveId.FIRE_PUNCH]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.SNORLAX,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TYPHLOSION,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.SUDOWOODO,
SpeciesId.AIPOM,
SpeciesId.SLOWKING,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.TYRANITAR,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.NOSEPASS,
SpeciesId.SABLEYE,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.FLYGON,
SpeciesId.ZANGOOSE,
SpeciesId.KECLEON,
SpeciesId.DUSCLOPS,
SpeciesId.REGIROCK,
SpeciesId.GROUDON,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MUNCHLAX,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.REGIGIGAS,
SpeciesId.VICTINI,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.WATCHOG,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.REUNICLUS,
SpeciesId.EELEKTROSS,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.HEATMOR,
SpeciesId.MELOETTA,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.DIGGERSBY,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.HELIOLISK,
SpeciesId.HAWLUCHA,
SpeciesId.GOODRA,
SpeciesId.HOOPA,
SpeciesId.INCINEROAR,
SpeciesId.GUMSHOOS,
[
SpeciesId.LYCANROC,
"midnight",
],
SpeciesId.KOMMO_O,
SpeciesId.MARSHADOW,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.CINDERACE,
SpeciesId.COALOSSAL,
SpeciesId.TOXTRICITY,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.PAWMOT,
SpeciesId.GARGANACL,
SpeciesId.ANNIHILAPE,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_THORNS,
SpeciesId.IRON_VALIANT,
SpeciesId.OKIDOGI,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
[
SpeciesId.LYCANROC,
"midnight",
],
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_GOODRA,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.ICE_PUNCH]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.SLOWBRO,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.SNORLAX,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.DELIBIRD,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.TYRANITAR,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.NOSEPASS,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.ZANGOOSE,
SpeciesId.KECLEON,
SpeciesId.DUSCLOPS,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.ELECTIVIRE,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.REGIGIGAS,
SpeciesId.WATCHOG,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.REUNICLUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.MELOETTA,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.DIGGERSBY,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.HOOPA,
SpeciesId.GUMSHOOS,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_FINI,
SpeciesId.BUZZWOLE,
SpeciesId.MARSHADOW,
SpeciesId.MELMETAL,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.MR_RIME,
SpeciesId.EISCUE,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.URSALUNA,
SpeciesId.PAWMOT,
SpeciesId.GARGANACL,
SpeciesId.PALAFIN,
SpeciesId.CETITAN,
SpeciesId.ANNIHILAPE,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_THORNS,
SpeciesId.IRON_VALIANT,
SpeciesId.OKIDOGI,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.THUNDER_PUNCH]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.SNORLAX,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TYPHLOSION,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.PICHU,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.SUDOWOODO,
SpeciesId.AIPOM,
SpeciesId.SLOWKING,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.TYRANITAR,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.NOSEPASS,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.KECLEON,
SpeciesId.DUSCLOPS,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.GROUDON,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.PACHIRISU,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.REGIGIGAS,
SpeciesId.VICTINI,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.WATCHOG,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.REUNICLUS,
SpeciesId.EELEKTROSS,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.HEATMOR,
SpeciesId.THUNDURUS,
SpeciesId.ZEKROM,
SpeciesId.MELOETTA,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.DIGGERSBY,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.HELIOLISK,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.GOODRA,
SpeciesId.HOOPA,
SpeciesId.INCINEROAR,
SpeciesId.GUMSHOOS,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
[
SpeciesId.LYCANROC,
"midnight",
],
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.BUZZWOLE,
SpeciesId.XURKITREE,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.MELMETAL,
SpeciesId.TOXTRICITY,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.MORPEKO,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.URSALUNA,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.GARGANACL,
SpeciesId.ANNIHILAPE,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_THORNS,
SpeciesId.GHOLDENGO,
SpeciesId.IRON_VALIANT,
SpeciesId.OKIDOGI,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
[
SpeciesId.LYCANROC,
"midnight",
],
SpeciesId.GALAR_SLOWKING,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_GOODRA,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.SWORDS_DANCE]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.BEEDRILL,
SpeciesId.RATICATE,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.RAPIDASH,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.TANGELA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.SCYTHER,
SpeciesId.PINSIR,
SpeciesId.KABUTOPS,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.ARIADOS,
SpeciesId.BELLOSSOM,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.GLIGAR,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SKARMORY,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.NINJASK,
SpeciesId.MAWILE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.SOLROCK,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.BANETTE,
SpeciesId.TROPIUS,
SpeciesId.ABSOL,
SpeciesId.WALREIN,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.EMPOLEON,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLISCOR,
SpeciesId.GALLADE,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.LEAVANNY,
SpeciesId.SCOLIPEDE,
SpeciesId.LILLIGANT,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAFTY,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.SAWSBUCK,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FERROTHORN,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.BEARTIC,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.LANDORUS,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HAWLUCHA,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.ORICORIO,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.GOLISOPOD,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.KOMALA,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_BULU,
SpeciesId.KARTANA,
SpeciesId.NECROZMA,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.INTELEON,
SpeciesId.GREEDENT,
SpeciesId.DUBWOOL,
SpeciesId.DREDNAW,
SpeciesId.HATTERENE,
SpeciesId.PERRSERKER,
SpeciesId.SIRFETCHD,
SpeciesId.FALINKS,
SpeciesId.DURALUDON,
SpeciesId.ZACIAN,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.GLASTRIER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.QUAQUAVAL,
SpeciesId.LOKIX,
SpeciesId.CERULEDGE,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.KLAWF,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.FLAMIGO,
SpeciesId.KINGAMBIT,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.CHIEN_PAO,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.IRON_LEAVES,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_FARFETCHD,
[
SpeciesId.CALYREX,
"ice",
],
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.CUT]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.BEEDRILL,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.FARFETCHD,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.LICKITUNG,
SpeciesId.RHYDON,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.SCYTHER,
SpeciesId.PINSIR,
SpeciesId.KABUTOPS,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.BELLOSSOM,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SCIZOR,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SKARMORY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.TYRANITAR,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.SABLEYE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.ROSELIA,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.KECLEON,
SpeciesId.TROPIUS,
SpeciesId.ABSOL,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.GROUDON,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.RAMPARDOS,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.GLISCOR,
SpeciesId.GALLADE,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.GIRATINA,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.SCOLIPEDE,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROTHORN,
SpeciesId.EELEKTROSS,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.DRUDDIGON,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.VOLCANION,
SpeciesId.KARTANA,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.URSALUNA,
SpeciesId.BASCULEGION,
SpeciesId.KINGAMBIT,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.FLY]: [
SpeciesId.CHARIZARD,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.AERODACTYL,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CROBAT,
SpeciesId.TOGETIC,
SpeciesId.XATU,
SpeciesId.MURKROW,
SpeciesId.DELIBIRD,
SpeciesId.SKARMORY,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.TROPIUS,
SpeciesId.SALAMENCE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.RAYQUAZA,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.HONCHKROW,
SpeciesId.CHATOT,
SpeciesId.TOGEKISS,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.SIGILYPH,
SpeciesId.ARCHEOPS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.GOLURK,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HYDREIGON,
SpeciesId.VOLCARONA,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.GENESECT,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.HAWLUCHA,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.YVELTAL,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.VIKAVOLT,
SpeciesId.ORICORIO,
SpeciesId.DRAMPA,
SpeciesId.TAPU_KOKO,
SpeciesId.LUNALA,
SpeciesId.CELESTEELA,
SpeciesId.NAGANADEL,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.FLAPPLE,
SpeciesId.CRAMORANT,
SpeciesId.DRAGAPULT,
SpeciesId.ETERNATUS,
SpeciesId.ENAMORUS,
SpeciesId.SQUAWKABILLY,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.BOMBIRDIER,
SpeciesId.FLAMIGO,
SpeciesId.IRON_JUGULIS,
SpeciesId.ROARING_MOON,
SpeciesId.FEZANDIPITI,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.HISUI_BRAVIARY,
],
[MoveId.MEGA_KICK]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GOLEM,
SpeciesId.SLOWBRO,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.KABUTOPS,
SpeciesId.SNORLAX,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.DELIBIRD,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.TYRANITAR,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.FLYGON,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.KECLEON,
SpeciesId.DUSCLOPS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.GROUDON,
SpeciesId.JIRACHI,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.REGIGIGAS,
SpeciesId.VICTINI,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.ZOROARK,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.DIGGERSBY,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.HELIOLISK,
SpeciesId.HAWLUCHA,
SpeciesId.GOODRA,
SpeciesId.INCINEROAR,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.TSAREENA,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.TURTONATOR,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.GUZZLORD,
SpeciesId.MARSHADOW,
SpeciesId.STAKATAKA,
SpeciesId.ZERAORA,
SpeciesId.MELMETAL,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.DUBWOOL,
SpeciesId.COALOSSAL,
SpeciesId.TOXTRICITY,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.MR_RIME,
SpeciesId.STONJOURNER,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.QUAQUAVAL,
SpeciesId.FLAMIGO,
[
SpeciesId.DEOXYS,
"attack",
"defense",
"speed",
],
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_MAROWAK,
[
SpeciesId.LYCANROC,
"midnight",
],
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_LILLIGANT,
],
[MoveId.BODY_SLAM]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.CLOYSTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.SNORLAX,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.NOCTOWL,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.SLOWKING,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.INFERNAPE,
SpeciesId.EMPOLEON,
SpeciesId.LUXRAY,
SpeciesId.ROSERADE,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.FLOATZEL,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.PURUGLY,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.MAMOSWINE,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.ARCEUS,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.SAMUROTT,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.CONKELDURR,
SpeciesId.THROH,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARMANITAN,
SpeciesId.SCRAFTY,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.GARBODOR,
SpeciesId.ZOROARK,
SpeciesId.GOTHITELLE,
SpeciesId.REUNICLUS,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.ALOMOMOLA,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.HEATMOR,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.DIGGERSBY,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.CLAWITZER,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.VOLCANION,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.GUMSHOOS,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.ARAQUANID,
SpeciesId.SALAZZLE,
SpeciesId.BEWEAR,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.PALOSSAND,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.SOLGALEO,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.CELESTEELA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.STAKATAKA,
SpeciesId.MELMETAL,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.CORVIKNIGHT,
SpeciesId.DUBWOOL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.APPLETUN,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.STONJOURNER,
SpeciesId.EISCUE,
SpeciesId.INDEEDEE,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.WYRDEER,
SpeciesId.URSALUNA,
SpeciesId.ENAMORUS,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.KLAWF,
SpeciesId.ESPATHRA,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.WO_CHIEN,
SpeciesId.TING_LU,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.DIPPLIN,
SpeciesId.OKIDOGI,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARMANITAN,
[
SpeciesId.CALYREX,
"ice",
"shadow",
],
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.TAKE_DOWN]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.IGGLYBUFF,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.STANTLER,
SpeciesId.BLISSEY,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SABLEYE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.MILOTIC,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.BELDUM,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.HONCHKROW,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.HAPPINY,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.RHYPERIOR,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.FROSLASS,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.BLITZLE,
SpeciesId.ROGGENROLA,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.ALOMOMOLA,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.LANDORUS,
SpeciesId.KELDEO,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.FURFROU,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.TREVENANT,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.MAGEARNA,
SpeciesId.STAKATAKA,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXTRICITY,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.FROSMOTH,
SpeciesId.STONJOURNER,
SpeciesId.EISCUE,
SpeciesId.INDEEDEE,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.BASCULEGION,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SQUAWKABILLY,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.BOMBIRDIER,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.FLAMIGO,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.OKIDOGI,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
],
[MoveId.DOUBLE_EDGE]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TYROGUE,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.FLOATZEL,
SpeciesId.AMBIPOM,
SpeciesId.HONCHKROW,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BONSLY,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.PROBOPASS,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.REGIGIGAS,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.CINCCINO,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.BEARTIC,
SpeciesId.MIENSHAO,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KELDEO,
SpeciesId.CHESNAUGHT,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.SYLVEON,
SpeciesId.CARBINK,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIVERN,
SpeciesId.VOLCANION,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.PASSIMIAN,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.SOLGALEO,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.CORVIKNIGHT,
SpeciesId.DREDNAW,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.PERRSERKER,
SpeciesId.EISCUE,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DURALUDON,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
[
SpeciesId.CALYREX,
"ice",
"shadow",
],
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.BASCULEGION,
SpeciesId.OVERQWIL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.LOKIX,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SQUAWKABILLY,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.ESPATHRA,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.SLITHER_WING,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_THORNS,
SpeciesId.BAXCALIBUR,
SpeciesId.TING_LU,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.OKIDOGI,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_AVALUGG,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.PIN_MISSILE]: [
SpeciesId.BEEDRILL,
SpeciesId.SANDSLASH,
SpeciesId.CLOYSTER,
SpeciesId.JOLTEON,
SpeciesId.OMASTAR,
SpeciesId.MEW,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.QWILFISH,
SpeciesId.HERACROSS,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.ROSELIA,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.VESPIQUEN,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.MARACTUS,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.GOLISOPOD,
SpeciesId.TOGEDEMARU,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.OBSTAGOON,
SpeciesId.CURSOLA,
SpeciesId.PINCURCHIN,
SpeciesId.OVERQWIL,
SpeciesId.IRON_THORNS,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.HISUI_QWILFISH,
],
[MoveId.ROAR]: [
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.BLASTOISE,
SpeciesId.RATICATE,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.PERSIAN,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.GOLEM,
SpeciesId.ONIX,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.KANGASKHAN,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.AERODACTYL,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.STANTLER,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.SCEPTILE,
SpeciesId.BLAZIKEN,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.LINOONE,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.TROPIUS,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.INFERNAPE,
SpeciesId.EMPOLEON,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.PURUGLY,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.DRAPION,
SpeciesId.RHYPERIOR,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.MAMOSWINE,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.EELEKTROSS,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.BEARTIC,
SpeciesId.DRUDDIGON,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.KELDEO,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.AVALUGG,
SpeciesId.XERNEAS,
SpeciesId.VOLCANION,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.GUMSHOOS,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.TURTONATOR,
SpeciesId.DRAMPA,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_BULU,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.ZAMAZENTA,
SpeciesId.ZARUDE,
SpeciesId.GLASTRIER,
SpeciesId.WYRDEER,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.FARIGIRAF,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_JUGULIS,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.OKIDOGI,
SpeciesId.ARCHALUDON,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GOLEM,
[
SpeciesId.URSHIFU,
"single-strike",
],
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.FLAMETHROWER]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.MAGMAR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.FLAREON,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.SLOWKING,
SpeciesId.DUNSPARCE,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.MAGBY,
SpeciesId.BLISSEY,
SpeciesId.ENTEI,
SpeciesId.TYRANITAR,
SpeciesId.HO_OH,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.FLYGON,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.SOLROCK,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.ABSOL,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.HAPPINY,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.WATCHOG,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.AUDINO,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.ZOROARK,
SpeciesId.EELEKTROSS,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.DRUDDIGON,
SpeciesId.HEATMOR,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.RESHIRAM,
SpeciesId.GENESECT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.GOODRA,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.NOIVERN,
SpeciesId.VOLCANION,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.SILVALLY,
SpeciesId.TURTONATOR,
SpeciesId.DRAMPA,
SpeciesId.KOMMO_O,
SpeciesId.SOLGALEO,
SpeciesId.CELESTEELA,
SpeciesId.GUZZLORD,
SpeciesId.NAGANADEL,
SpeciesId.BLACEPHALON,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.CENTISKORCH,
SpeciesId.DRACOZOLT,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ETERNATUS,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.SCOVILLAIN,
SpeciesId.DUDUNSPARCE,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.GOUGING_FIRE,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_GOODRA,
[
SpeciesId.PALDEA_TAUROS,
"blaze",
],
],
[MoveId.HYDRO_PUMP]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.KINGLER,
SpeciesId.LICKITUNG,
SpeciesId.RHYDON,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MAGIKARP,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.SNORLAX,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.QWILFISH,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.MANTINE,
SpeciesId.KINGDRA,
SpeciesId.SUICUNE,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.EXPLOUD,
SpeciesId.AGGRON,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.WALREIN,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.KYOGRE,
SpeciesId.RAYQUAZA,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.MUNCHLAX,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.PALKIA,
SpeciesId.ARCEUS,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.BASCULIN,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.SWANNA,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.HYDREIGON,
SpeciesId.KELDEO,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.GOODRA,
SpeciesId.AVALUGG,
SpeciesId.VOLCANION,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.TAPU_FINI,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.GRAPPLOCT,
SpeciesId.CURSOLA,
SpeciesId.PINCURCHIN,
SpeciesId.EISCUE,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.BASCULEGION,
SpeciesId.OVERQWIL,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.CLODSIRE,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_JUGULIS,
SpeciesId.ROARING_MOON,
SpeciesId.WALKING_WAKE,
SpeciesId.HYDRAPPLE,
[
SpeciesId.ROTOM,
"wash",
],
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_GOODRA,
[
SpeciesId.PALDEA_TAUROS,
"aqua",
],
SpeciesId.PALDEA_WOOPER,
],
[MoveId.SURF]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.LICKITUNG,
SpeciesId.RHYDON,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.SNORLAX,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.QWILFISH,
SpeciesId.SNEASEL,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.MANTINE,
SpeciesId.KINGDRA,
SpeciesId.MILTANK,
SpeciesId.SUICUNE,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.AGGRON,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.ZANGOOSE,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.RAYQUAZA,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BIBAREL,
SpeciesId.RAMPARDOS,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.PALKIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.ARCEUS,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.AUDINO,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.BASCULIN,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.STUNFISK,
SpeciesId.DRUDDIGON,
SpeciesId.BOUFFALANT,
SpeciesId.HYDREIGON,
SpeciesId.KELDEO,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.GOODRA,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SILVALLY,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.TAPU_FINI,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.GRAPPLOCT,
SpeciesId.OBSTAGOON,
SpeciesId.CURSOLA,
SpeciesId.PINCURCHIN,
SpeciesId.EISCUE,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.BASCULEGION,
SpeciesId.OVERQWIL,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.CLODSIRE,
SpeciesId.WALKING_WAKE,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_RAICHU,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_GOODRA,
[
SpeciesId.PALDEA_TAUROS,
"combat",
"aqua",
],
SpeciesId.PALDEA_WOOPER,
],
[MoveId.ICE_BEAM]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.LICKITUNG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.JYNX,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.DUNSPARCE,
SpeciesId.QWILFISH,
SpeciesId.SNEASEL,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.KINGDRA,
SpeciesId.PORYGON2,
SpeciesId.SMOOCHUM,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.SUICUNE,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.AZURILL,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.LUNATONE,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.REGICE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.RAYQUAZA,
SpeciesId.DEOXYS,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MUNCHLAX,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.GLACEON,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.MESPRIT,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.AUDINO,
SpeciesId.BASCULIN,
SpeciesId.SIGILYPH,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.KYUREM,
SpeciesId.GENESECT,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.CRABOMINABLE,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.GOLISOPOD,
SpeciesId.SILVALLY,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.TAPU_FINI,
SpeciesId.LUNALA,
SpeciesId.PHEROMOSA,
SpeciesId.MAGEARNA,
SpeciesId.MELMETAL,
SpeciesId.INTELEON,
SpeciesId.DREDNAW,
SpeciesId.CRAMORANT,
SpeciesId.BARRASKEWDA,
SpeciesId.OBSTAGOON,
SpeciesId.CURSOLA,
SpeciesId.MR_RIME,
SpeciesId.FROSMOTH,
SpeciesId.EISCUE,
SpeciesId.ARCTOZOLT,
SpeciesId.ARCTOVISH,
SpeciesId.GLASTRIER,
SpeciesId.BASCULEGION,
SpeciesId.OVERQWIL,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DUDUNSPARCE,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
[
SpeciesId.CALYREX,
"ice",
],
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
],
[MoveId.BLIZZARD]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.LICKITUNG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.JYNX,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.DUNSPARCE,
SpeciesId.QWILFISH,
SpeciesId.SNEASEL,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.KINGDRA,
SpeciesId.PORYGON2,
SpeciesId.SMOOCHUM,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.SUICUNE,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.AZURILL,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.AGGRON,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.ZANGOOSE,
SpeciesId.LUNATONE,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.REGICE,
SpeciesId.KYOGRE,
SpeciesId.RAYQUAZA,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.LOPUNNY,
SpeciesId.MUNCHLAX,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.GLACEON,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.MESPRIT,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.AUDINO,
SpeciesId.BASCULIN,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.KYUREM,
SpeciesId.GENESECT,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.CRABOMINABLE,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.GOLISOPOD,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.TAPU_FINI,
SpeciesId.LUNALA,
SpeciesId.PHEROMOSA,
SpeciesId.INTELEON,
SpeciesId.DREDNAW,
SpeciesId.CRAMORANT,
SpeciesId.BARRASKEWDA,
SpeciesId.OBSTAGOON,
SpeciesId.CURSOLA,
SpeciesId.MR_RIME,
SpeciesId.FROSMOTH,
SpeciesId.EISCUE,
SpeciesId.ARCTOZOLT,
SpeciesId.ARCTOVISH,
SpeciesId.GLASTRIER,
SpeciesId.BASCULEGION,
SpeciesId.OVERQWIL,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DUDUNSPARCE,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.CHIEN_PAO,
[
SpeciesId.ROTOM,
"frost",
],
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
[
SpeciesId.CALYREX,
"ice",
],
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
],
[MoveId.PSYBEAM]: [
SpeciesId.BUTTERFREE,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.PARAS,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.EXEGGCUTE,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.PORYGON,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.SPINARAK,
SpeciesId.CHINCHOU,
SpeciesId.CLEFFA,
SpeciesId.ESPEON,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.MANTINE,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.DUSTOX,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.CHIMECHO,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.SPIRITOMB,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.CRESSELIA,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.SIGILYPH,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.MELOETTA,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.VIVILLON,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.HOOPA,
SpeciesId.ORANGURU,
SpeciesId.TAPU_LELE,
SpeciesId.MAGEARNA,
SpeciesId.ORBEETLE,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.MR_RIME,
SpeciesId.INDEEDEE,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.ARMAROUGE,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.FARIGIRAF,
SpeciesId.SCREAM_TAIL,
SpeciesId.FLUTTER_MANE,
SpeciesId.IRON_VALIANT,
SpeciesId.MUNKIDORI,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.HISUI_BRAVIARY,
],
[MoveId.HYPER_BEAM]: [
SpeciesId.VENUSAUR,
SpeciesId.CHARIZARD,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEOT,
SpeciesId.RATICATE,
SpeciesId.FEAROW,
SpeciesId.ARBOK,
SpeciesId.RAICHU,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.CLEFABLE,
SpeciesId.NINETALES,
SpeciesId.WIGGLYTUFF,
SpeciesId.GOLBAT,
SpeciesId.VILEPLUME,
SpeciesId.PARASECT,
SpeciesId.VENOMOTH,
SpeciesId.DUGTRIO,
SpeciesId.PERSIAN,
SpeciesId.GOLDUCK,
SpeciesId.PRIMEAPE,
SpeciesId.ARCANINE,
SpeciesId.POLIWRATH,
SpeciesId.ALAKAZAM,
SpeciesId.MACHAMP,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACRUEL,
SpeciesId.GOLEM,
SpeciesId.RAPIDASH,
SpeciesId.SLOWBRO,
SpeciesId.MAGNETON,
SpeciesId.DODRIO,
SpeciesId.DEWGONG,
SpeciesId.MUK,
SpeciesId.CLOYSTER,
SpeciesId.GENGAR,
SpeciesId.HYPNO,
SpeciesId.KINGLER,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGUTOR,
SpeciesId.MAROWAK,
SpeciesId.LICKITUNG,
SpeciesId.WEEZING,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.SEADRA,
SpeciesId.SEAKING,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMASTAR,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.MEGANIUM,
SpeciesId.TYPHLOSION,
SpeciesId.FERALIGATR,
SpeciesId.FURRET,
SpeciesId.NOCTOWL,
SpeciesId.LEDIAN,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.LANTURN,
SpeciesId.TOGETIC,
SpeciesId.XATU,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.JUMPLUFF,
SpeciesId.SUNFLORA,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.STEELIX,
SpeciesId.GRANBULL,
SpeciesId.SCIZOR,
SpeciesId.HERACROSS,
SpeciesId.URSARING,
SpeciesId.MAGCARGO,
SpeciesId.PILOSWINE,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.SCEPTILE,
SpeciesId.BLAZIKEN,
SpeciesId.SWAMPERT,
SpeciesId.MIGHTYENA,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LUDICOLO,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.SWELLOW,
SpeciesId.PELIPPER,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.MASQUERAIN,
SpeciesId.BRELOOM,
SpeciesId.SLAKING,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.EXPLOUD,
SpeciesId.HARIYAMA,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.MEDICHAM,
SpeciesId.MANECTRIC,
SpeciesId.SWALOT,
SpeciesId.SHARPEDO,
SpeciesId.WAILORD,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.GRUMPIG,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACTURNE,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.WHISCASH,
SpeciesId.CRAWDAUNT,
SpeciesId.CLAYDOL,
SpeciesId.CRADILY,
SpeciesId.ARMALDO,
SpeciesId.MILOTIC,
SpeciesId.BANETTE,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.ABSOL,
SpeciesId.GLALIE,
SpeciesId.WALREIN,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TORTERRA,
SpeciesId.INFERNAPE,
SpeciesId.EMPOLEON,
SpeciesId.STARAPTOR,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.LUXRAY,
SpeciesId.ROSERADE,
SpeciesId.RAMPARDOS,
SpeciesId.BASTIODON,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.FLOATZEL,
SpeciesId.CHERRIM,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFBLIM,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.PURUGLY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZONG,
SpeciesId.SPIRITOMB,
SpeciesId.GARCHOMP,
SpeciesId.LUCARIO,
SpeciesId.HIPPOWDON,
SpeciesId.DRAPION,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.LUMINEON,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SERPERIOR,
SpeciesId.EMBOAR,
SpeciesId.SAMUROTT,
SpeciesId.WATCHOG,
SpeciesId.STOUTLAND,
SpeciesId.LIEPARD,
SpeciesId.SIMISAGE,
SpeciesId.SIMISEAR,
SpeciesId.SIMIPOUR,
SpeciesId.MUSHARNA,
SpeciesId.UNFEZANT,
SpeciesId.ZEBSTRIKA,
SpeciesId.GIGALITH,
SpeciesId.SWOOBAT,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.LEAVANNY,
SpeciesId.SCOLIPEDE,
SpeciesId.WHIMSICOTT,
SpeciesId.LILLIGANT,
SpeciesId.KROOKODILE,
SpeciesId.DARMANITAN,
SpeciesId.CRUSTLE,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.COFAGRIGUS,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEOPS,
SpeciesId.GARBODOR,
SpeciesId.ZOROARK,
SpeciesId.CINCCINO,
SpeciesId.GOTHITELLE,
SpeciesId.REUNICLUS,
SpeciesId.SWANNA,
SpeciesId.VANILLUXE,
SpeciesId.SAWSBUCK,
SpeciesId.ESCAVALIER,
SpeciesId.AMOONGUSS,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.GALVANTULA,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTROSS,
SpeciesId.BEHEEYEM,
SpeciesId.CHANDELURE,
SpeciesId.HAXORUS,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.ACCELGOR,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLURK,
SpeciesId.BISHARP,
SpeciesId.BRAVIARY,
SpeciesId.MANDIBUZZ,
SpeciesId.HYDREIGON,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESNAUGHT,
SpeciesId.DELPHOX,
SpeciesId.GRENINJA,
SpeciesId.DIGGERSBY,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.PYROAR,
SpeciesId.FLORGES,
SpeciesId.GOGOAT,
SpeciesId.PANGORO,
SpeciesId.MEOWSTIC,
SpeciesId.AEGISLASH,
SpeciesId.AROMATISSE,
SpeciesId.SLURPUFF,
SpeciesId.MALAMAR,
SpeciesId.BARBARACLE,
SpeciesId.DRAGALGE,
SpeciesId.CLAWITZER,
SpeciesId.HELIOLISK,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.TREVENANT,
SpeciesId.GOURGEIST,
SpeciesId.AVALUGG,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.DECIDUEYE,
SpeciesId.INCINEROAR,
SpeciesId.PRIMARINA,
SpeciesId.GUMSHOOS,
SpeciesId.VIKAVOLT,
SpeciesId.CRABOMINABLE,
SpeciesId.RIBOMBEE,
SpeciesId.TOXAPEX,
SpeciesId.MUDSDALE,
SpeciesId.LURANTIS,
SpeciesId.SHIINOTIC,
SpeciesId.SALAZZLE,
SpeciesId.BEWEAR,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.GOLISOPOD,
SpeciesId.PALOSSAND,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.NAGANADEL,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.MELMETAL,
SpeciesId.RILLABOOM,
SpeciesId.CINDERACE,
SpeciesId.INTELEON,
SpeciesId.GREEDENT,
SpeciesId.CORVIKNIGHT,
SpeciesId.ORBEETLE,
SpeciesId.THIEVUL,
SpeciesId.ELDEGOSS,
SpeciesId.DUBWOOL,
SpeciesId.DREDNAW,
SpeciesId.BOLTUND,
SpeciesId.COALOSSAL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SANDACONDA,
SpeciesId.CRAMORANT,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXTRICITY,
SpeciesId.CENTISKORCH,
SpeciesId.GRAPPLOCT,
SpeciesId.POLTEAGEIST,
SpeciesId.HATTERENE,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.ALCREMIE,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.FROSMOTH,
SpeciesId.STONJOURNER,
SpeciesId.EISCUE,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.BASCULEGION,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.MEOWSCARADA,
SpeciesId.SKELEDIRGE,
SpeciesId.QUAQUAVAL,
SpeciesId.OINKOLOGNE,
SpeciesId.PAWMOT,
SpeciesId.MAUSHOLD,
SpeciesId.DACHSBUN,
SpeciesId.ARBOLIVA,
SpeciesId.SQUAWKABILLY,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.BELLIBOLT,
SpeciesId.KILOWATTREL,
SpeciesId.MABOSSTIFF,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.SCOVILLAIN,
SpeciesId.RABSCA,
SpeciesId.ESPATHRA,
SpeciesId.WUGTRIO,
SpeciesId.BOMBIRDIER,
SpeciesId.PALAFIN,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMORA,
SpeciesId.HOUNDSTONE,
SpeciesId.FLAMIGO,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.FLUTTER_MANE,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.BAXCALIBUR,
SpeciesId.GHOLDENGO,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.SINISTCHA,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.ARCHALUDON,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.BLOODMOON_URSALUNA,
[
SpeciesId.BASCULIN,
"blue-striped",
"red-striped",
]
],
[MoveId.LOW_KICK]: [
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.KANGASKHAN,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.KABUTOPS,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.GIRAFARIG,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.TYRANITAR,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.BRELOOM,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.SABLEYE,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.ARMALDO,
SpeciesId.KECLEON,
SpeciesId.DEOXYS,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.BONSLY,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.GALLADE,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.LEAVANNY,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.CARRACOSTA,
SpeciesId.ZOROARK,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.HEATMOR,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.DIGGERSBY,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.BARBARACLE,
SpeciesId.HELIOLISK,
SpeciesId.HAWLUCHA,
SpeciesId.DECIDUEYE,
SpeciesId.INCINEROAR,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.BEWEAR,
SpeciesId.TSAREENA,
SpeciesId.PASSIMIAN,
SpeciesId.KOMALA,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.PHEROMOSA,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.STONJOURNER,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.SPIDOPS,
SpeciesId.LOKIX,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.GRAFAIAI,
SpeciesId.ESPATHRA,
SpeciesId.FLAMIGO,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.KINGAMBIT,
SpeciesId.SLITHER_WING,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_THORNS,
SpeciesId.GHOLDENGO,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.OKIDOGI,
SpeciesId.OGERPON,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.COUNTER]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.SNORLAX,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.SUDOWOODO,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.WOBBUFFET,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.DELIBIRD,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.MILTANK,
SpeciesId.TYRANITAR,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.KECLEON,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.ABSOL,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.GROUDON,
SpeciesId.DEOXYS,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SAWK,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.ACCELGOR,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.LYCANROC,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.PASSIMIAN,
SpeciesId.PYUKUMUKU,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.BUZZWOLE,
SpeciesId.MARSHADOW,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.FALINKS,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.QUAQUAVAL,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.TATSUGIRI,
SpeciesId.KORAIDON,
SpeciesId.OKIDOGI,
SpeciesId.OGERPON,
SpeciesId.IRON_BOULDER,
],
[MoveId.STRENGTH]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.RATICATE,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.FURRET,
SpeciesId.LEDIAN,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.HOUNDOOM,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.MIGHTYENA,
SpeciesId.LINOONE,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.NOSEPASS,
SpeciesId.DELCATTY,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.CLAYDOL,
SpeciesId.CRADILY,
SpeciesId.ARMALDO,
SpeciesId.KECLEON,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.ABSOL,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.LOPUNNY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZONG,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.SAMUROTT,
SpeciesId.WATCHOG,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SCOLIPEDE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.REUNICLUS,
SpeciesId.FERROTHORN,
SpeciesId.EELEKTROSS,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.HAWLUCHA,
SpeciesId.GOODRA,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.ZYGARDE,
SpeciesId.VOLCANION,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.OBSTAGOON,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.URSALUNA,
SpeciesId.ANNIHILAPE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_AVALUGG,
SpeciesId.PALDEA_TAUROS,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.SOLAR_BEAM]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARIZARD,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.ARCANINE,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.LICKITUNG,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.TAUROS,
SpeciesId.LAPRAS,
SpeciesId.PORYGON,
SpeciesId.SNORLAX,
SpeciesId.MOLTRES,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.TYPHLOSION,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.BELLOSSOM,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.MAGCARGO,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.ENTEI,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.BLAZIKEN,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.TROPIUS,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.INFERNAPE,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.MUNCHLAX,
SpeciesId.CARNIVINE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.LICKILICKY,
SpeciesId.TANGROWTH,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.PORYGON_Z,
SpeciesId.UXIE,
SpeciesId.HEATRAN,
SpeciesId.CRESSELIA,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.GIGALITH,
SpeciesId.AUDINO,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SIGILYPH,
SpeciesId.GARBODOR,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.CRYOGONAL,
SpeciesId.GOLURK,
SpeciesId.HEATMOR,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.VIRIZION,
SpeciesId.RESHIRAM,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.HELIOLISK,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.VIKAVOLT,
SpeciesId.RIBOMBEE,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.MINIOR,
SpeciesId.TURTONATOR,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.TAPU_BULU,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.BLACEPHALON,
SpeciesId.MELMETAL,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.COALOSSAL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.CENTISKORCH,
SpeciesId.MR_RIME,
SpeciesId.ALCREMIE,
SpeciesId.DURALUDON,
SpeciesId.DRAGAPULT,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.ZARUDE,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.SKELEDIRGE,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.ARMAROUGE,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.GLIMMORA,
SpeciesId.DUDUNSPARCE,
SpeciesId.BRUTE_BONNET,
SpeciesId.IRON_MOTH,
SpeciesId.WO_CHIEN,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.RAGING_BOLT,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.FIRE_SPIN]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.MAGMAR,
SpeciesId.FLAREON,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.MAGBY,
SpeciesId.ENTEI,
SpeciesId.HO_OH,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.FLYGON,
SpeciesId.ALTARIA,
SpeciesId.SOLROCK,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.SKUNTANK,
SpeciesId.MAGMORTAR,
SpeciesId.HEATRAN,
SpeciesId.VICTINI,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.HEATMOR,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.VOLCANION,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.TURTONATOR,
SpeciesId.SOLGALEO,
SpeciesId.BLACEPHALON,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.DRACOZOLT,
SpeciesId.ETERNATUS,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.IRON_MOTH,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.GOUGING_FIRE,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
[
SpeciesId.PALDEA_TAUROS,
"blaze",
],
],
[MoveId.THUNDERBOLT]: [
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.ELECTABUZZ,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.JOLTEON,
SpeciesId.PORYGON,
SpeciesId.SNORLAX,
SpeciesId.ZAPDOS,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.AIPOM,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.DUNSPARCE,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.ELEKID,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.AGGRON,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ZANGOOSE,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.ABSOL,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.PACHIRISU,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.MIME_JR,
SpeciesId.MUNCHLAX,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.AUDINO,
SpeciesId.GARBODOR,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.EMOLGA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.STUNFISK,
SpeciesId.GOLURK,
SpeciesId.THUNDURUS,
SpeciesId.ZEKROM,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.DEDENNE,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.XERNEAS,
SpeciesId.HOOPA,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.ORANGURU,
SpeciesId.SILVALLY,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.DRAMPA,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.XURKITREE,
SpeciesId.MAGEARNA,
SpeciesId.NAGANADEL,
SpeciesId.ZERAORA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.TOXTRICITY,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.MR_RIME,
SpeciesId.PINCURCHIN,
SpeciesId.MORPEKO,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DURALUDON,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.REGIELEKI,
SpeciesId.WYRDEER,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.CYCLIZAR,
SpeciesId.ANNIHILAPE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.SCREAM_TAIL,
SpeciesId.FLUTTER_MANE,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_THORNS,
SpeciesId.GHOLDENGO,
SpeciesId.IRON_VALIANT,
SpeciesId.MIRAIDON,
SpeciesId.ARCHALUDON,
SpeciesId.RAGING_BOLT,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
],
[MoveId.THUNDER_WAVE]: [
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.CHANSEY,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.ELECTABUZZ,
SpeciesId.GYARADOS,
SpeciesId.JOLTEON,
SpeciesId.PORYGON,
SpeciesId.ZAPDOS,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.AIPOM,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.ELEKID,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.AGGRON,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.ZANGOOSE,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.PACHIRISU,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.CHINGLING,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.MAGNEZONE,
SpeciesId.ELECTIVIRE,
SpeciesId.TOGEKISS,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.SIGILYPH,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.TYNAMO,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.STUNFISK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.COBALION,
SpeciesId.THUNDURUS,
SpeciesId.ZEKROM,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.DEDENNE,
SpeciesId.KLEFKI,
SpeciesId.XERNEAS,
SpeciesId.HOOPA,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.DRAMPA,
SpeciesId.TAPU_KOKO,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.XURKITREE,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.ZERAORA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.TOXTRICITY,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.MR_RIME,
SpeciesId.PINCURCHIN,
SpeciesId.MORPEKO,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DURALUDON,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.REGIELEKI,
SpeciesId.WYRDEER,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.FARIGIRAF,
SpeciesId.KINGAMBIT,
SpeciesId.SCREAM_TAIL,
SpeciesId.FLUTTER_MANE,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_THORNS,
SpeciesId.GHOLDENGO,
SpeciesId.IRON_VALIANT,
SpeciesId.MIRAIDON,
SpeciesId.ARCHALUDON,
SpeciesId.RAGING_BOLT,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
],
[MoveId.THUNDER]: [
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.ELECTABUZZ,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.JOLTEON,
SpeciesId.PORYGON,
SpeciesId.SNORLAX,
SpeciesId.ZAPDOS,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.AIPOM,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.DUNSPARCE,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.ELEKID,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.AGGRON,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ZANGOOSE,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.ABSOL,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.PACHIRISU,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.MIME_JR,
SpeciesId.MUNCHLAX,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.ELECTIVIRE,
SpeciesId.PORYGON_Z,
SpeciesId.PROBOPASS,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.WATCHOG,
SpeciesId.STOUTLAND,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.AUDINO,
SpeciesId.CINCCINO,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.EMOLGA,
SpeciesId.GALVANTULA,
SpeciesId.FERROTHORN,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.STUNFISK,
SpeciesId.THUNDURUS,
SpeciesId.ZEKROM,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.AROMATISSE,
SpeciesId.SLURPUFF,
SpeciesId.DRAGALGE,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.AURORUS,
SpeciesId.DEDENNE,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.XERNEAS,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.ORANGURU,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.DRAMPA,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.XURKITREE,
SpeciesId.ZERAORA,
SpeciesId.MELMETAL,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.TOXTRICITY,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.MR_RIME,
SpeciesId.PINCURCHIN,
SpeciesId.MORPEKO,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DURALUDON,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.REGIELEKI,
SpeciesId.WYRDEER,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.ANNIHILAPE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.SCREAM_TAIL,
SpeciesId.FLUTTER_MANE,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_THORNS,
SpeciesId.GHOLDENGO,
SpeciesId.MIRAIDON,
SpeciesId.ARCHALUDON,
SpeciesId.RAGING_BOLT,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.MAROWAK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
],
[MoveId.EARTHQUAKE]: [
SpeciesId.VENUSAUR,
SpeciesId.CHARIZARD,
SpeciesId.BLASTOISE,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.ONIX,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.MEGANIUM,
SpeciesId.TYPHLOSION,
SpeciesId.FERALIGATR,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.MANTINE,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.SCEPTILE,
SpeciesId.BLAZIKEN,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.NOSEPASS,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.SWALOT,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.ALTARIA,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.CRADILY,
SpeciesId.ARMALDO,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.RELICANTH,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.TORTERRA,
SpeciesId.INFERNAPE,
SpeciesId.EMPOLEON,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.GASTRODON,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.MANTYKE,
SpeciesId.ABOMASNOW,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.EMBOAR,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SCOLIPEDE,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARMANITAN,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.HAXORUS,
SpeciesId.BEARTIC,
SpeciesId.STUNFISK,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.BOUFFALANT,
SpeciesId.HYDREIGON,
SpeciesId.TERRAKION,
SpeciesId.LANDORUS,
SpeciesId.CHESNAUGHT,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.GOGOAT,
SpeciesId.PANGORO,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AURORUS,
SpeciesId.GOODRA,
SpeciesId.TREVENANT,
SpeciesId.AVALUGG,
SpeciesId.ZYGARDE,
SpeciesId.VOLCANION,
SpeciesId.INCINEROAR,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.WISHIWASHI,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.SOLGALEO,
SpeciesId.BUZZWOLE,
SpeciesId.CELESTEELA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.STAKATAKA,
SpeciesId.MELMETAL,
SpeciesId.RILLABOOM,
SpeciesId.GREEDENT,
SpeciesId.DREDNAW,
SpeciesId.COALOSSAL,
SpeciesId.APPLETUN,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CURSOLA,
SpeciesId.RUNERIGUS,
SpeciesId.STONJOURNER,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.REGIDRAGO,
SpeciesId.WYRDEER,
SpeciesId.URSALUNA,
SpeciesId.SKELEDIRGE,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.ORTHWORM,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.DONDOZO,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.GREAT_TUSK,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_THORNS,
SpeciesId.BAXCALIBUR,
SpeciesId.TING_LU,
SpeciesId.ROARING_MOON,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.TERAPAGOS,
[
SpeciesId.WORMADAM,
"sandy",
],
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.DIG]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.ONIX,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.LICKITUNG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.KANGASKHAN,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.SNORLAX,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.SLOWKING,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.STANTLER,
SpeciesId.HITMONTOP,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.BRELOOM,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.KECLEON,
SpeciesId.REGIROCK,
SpeciesId.GROUDON,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.WORMADAM,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BONSLY,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.ELECTIVIRE,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.HEATRAN,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SCOLIPEDE,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.LANDORUS,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.MEOWSTIC,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.ZYGARDE,
SpeciesId.VOLCANION,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.DREDNAW,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.GRAPPLOCT,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.WYRDEER,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.KLAWF,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.ORTHWORM,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.TING_LU,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.OKIDOGI,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_AVALUGG,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.TOXIC]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.PYUKUMUKU,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MARSHADOW,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.STAKATAKA,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.TOXTRICITY,
SpeciesId.ETERNATUS,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.BELLIBOLT,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.CLODSIRE,
SpeciesId.DUDUNSPARCE,
SpeciesId.IRON_MOTH,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.TERAPAGOS,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_SLOWKING,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.PALDEA_WOOPER,
],
[MoveId.PSYCHIC]: [
SpeciesId.BUTTERFREE,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CHANSEY,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.LAPRAS,
SpeciesId.PORYGON,
SpeciesId.SNORLAX,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.POLITOED,
SpeciesId.YANMA,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.BLISSEY,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.CHIMECHO,
SpeciesId.GOREBYSS,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.SPIRITOMB,
SpeciesId.MUNCHLAX,
SpeciesId.LUCARIO,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.WHIMSICOTT,
SpeciesId.DARMANITAN,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.GARBODOR,
SpeciesId.ZOROARK,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.VIVILLON,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.CARBINK,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.PRIMARINA,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ORANGURU,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.MINIOR,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.TAPU_LELE,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.BLACEPHALON,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.THIEVUL,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.CURSOLA,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.ALCREMIE,
SpeciesId.INDEEDEE,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.ENAMORUS,
SpeciesId.ARMAROUGE,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.VELUZA,
SpeciesId.FARIGIRAF,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_MOTH,
SpeciesId.GHOLDENGO,
SpeciesId.CHI_YU,
SpeciesId.IRON_VALIANT,
SpeciesId.MUNKIDORI,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
],
[MoveId.AGILITY]: [
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.PARAS,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.HITMONCHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARMIE,
SpeciesId.SCYTHER,
SpeciesId.JOLTEON,
SpeciesId.PORYGON,
SpeciesId.AERODACTYL,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.FERALIGATR,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.AIPOM,
SpeciesId.GIRAFARIG,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SNEASEL,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.KINGDRA,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.HITMONTOP,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.GOREBYSS,
SpeciesId.LUVDISC,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.LUXRAY,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.CHATOT,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.WEAVILE,
SpeciesId.GLISCOR,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.ARCEUS,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.SEWADDLE,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.BASCULIN,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.ESCAVALIER,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.ACCELGOR,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.DURANT,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.VIKAVOLT,
SpeciesId.ORICORIO,
SpeciesId.RIBOMBEE,
SpeciesId.LYCANROC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.TOGEDEMARU,
SpeciesId.BRUXISH,
SpeciesId.TAPU_KOKO,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.PHEROMOSA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.INTELEON,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.ORBEETLE,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.BOLTUND,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.HATTERENE,
SpeciesId.FALINKS,
SpeciesId.EISCUE,
SpeciesId.MORPEKO,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.REGIELEKI,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.BASCULEGION,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.QUAQUAVAL,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.CYCLIZAR,
SpeciesId.FLAMIGO,
SpeciesId.VELUZA,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.IRON_LEAVES,
SpeciesId.FEZANDIPITI,
SpeciesId.IRON_BOULDER,
[
SpeciesId.DEOXYS,
"speed",
],
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
],
[MoveId.NIGHT_SHADE]: [
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.NINETALES,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MURKROW,
SpeciesId.MISDREAVUS,
SpeciesId.GARDEVOIR,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.DEOXYS,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.BRONZONG,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.DARKRAI,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.DELPHOX,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.MIMIKYU,
SpeciesId.LUNALA,
SpeciesId.BLACEPHALON,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.CURSOLA,
SpeciesId.RUNERIGUS,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.SPECTRIER,
SpeciesId.BASCULEGION,
SpeciesId.SKELEDIRGE,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.ESPATHRA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.ANNIHILAPE,
SpeciesId.FARIGIRAF,
SpeciesId.FLUTTER_MANE,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.MUNKIDORI,
SpeciesId.PECHARUNT,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_YAMASK,
[
SpeciesId.CALYREX,
"shadow",
],
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.SCREECH]: [
SpeciesId.RATTATA,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.GOLBAT,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.ONIX,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.SNORLAX,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.IGGLYBUFF,
SpeciesId.MAREEP,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.YANMA,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.MISDREAVUS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNEASEL,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.SHIFTRY,
SpeciesId.NINJASK,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.SEVIPER,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.HUNTAIL,
SpeciesId.KRICKETUNE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.VESPIQUEN,
SpeciesId.AMBIPOM,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.YANMEGA,
SpeciesId.GLISCOR,
SpeciesId.OSHAWOTT,
SpeciesId.PATRAT,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.BLITZLE,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.MARACTUS,
SpeciesId.GARBODOR,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.GENESECT,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.PYUKUMUKU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.KARTANA,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.CORVIKNIGHT,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.TOXTRICITY,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.MR_RIME,
SpeciesId.FALINKS,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DURALUDON,
SpeciesId.ETERNATUS,
SpeciesId.REGIELEKI,
SpeciesId.SNEASLER,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.ANNIHILAPE,
SpeciesId.DUDUNSPARCE,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.KORAIDON,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_SNEASEL,
],
[MoveId.DOUBLE_TEAM]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.PYUKUMUKU,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.NAGANADEL,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXEL,
SpeciesId.TOXTRICITY,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.STONJOURNER,
SpeciesId.EISCUE,
SpeciesId.INDEEDEE,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.BASCULEGION,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.SQUAWKABILLY,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.BOMBIRDIER,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.FLAMIGO,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.FLUTTER_MANE,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.CONFUSE_RAY]: [
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.HYPNO,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.MAGMAR,
SpeciesId.LAPRAS,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.CORSOLA,
SpeciesId.MANTINE,
SpeciesId.STANTLER,
SpeciesId.MAGBY,
SpeciesId.SHIFTRY,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SHEDINJA,
SpeciesId.SABLEYE,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.JIRACHI,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.VESPIQUEN,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.SPIRITOMB,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.MAGNEZONE,
SpeciesId.MAGMORTAR,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.WATCHOG,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.EELEKTROSS,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.CRYOGONAL,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.DELPHOX,
SpeciesId.VIVILLON,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.MINIOR,
SpeciesId.MIMIKYU,
SpeciesId.LUNALA,
SpeciesId.MAGEARNA,
SpeciesId.BLACEPHALON,
SpeciesId.ORBEETLE,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.CURSOLA,
SpeciesId.MR_RIME,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ETERNATUS,
SpeciesId.SPECTRIER,
SpeciesId.WYRDEER,
SpeciesId.BASCULEGION,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.FARIGIRAF,
SpeciesId.BRUTE_BONNET,
SpeciesId.FLUTTER_MANE,
SpeciesId.IRON_MOTH,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.CHI_YU,
SpeciesId.IRON_VALIANT,
SpeciesId.MIRAIDON,
SpeciesId.MUNKIDORI,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_CORSOLA,
[
SpeciesId.CALYREX,
"shadow",
],
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.LIGHT_SCREEN]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.CLOYSTER,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CHANSEY,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.JOLTEON,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.SLOWKING,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.SCIZOR,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.STANTLER,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.DUSTOX,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.AZURILL,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CHIMECHO,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.PACHIRISU,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.MAGNEZONE,
SpeciesId.ELECTIVIRE,
SpeciesId.TOGEKISS,
SpeciesId.MAMOSWINE,
SpeciesId.GALLADE,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.CRESSELIA,
SpeciesId.MANAPHY,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.WATCHOG,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.WHIMSICOTT,
SpeciesId.LILLIGANT,
SpeciesId.SIGILYPH,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.CRYOGONAL,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.VIRIZION,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.VIVILLON,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.KLEFKI,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.XERNEAS,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.PRIMARINA,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.TOXAPEX,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PYUKUMUKU,
SpeciesId.MINIOR,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.XURKITREE,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.STAKATAKA,
SpeciesId.BLACEPHALON,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.CORVIKNIGHT,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.APPLETUN,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.CURSOLA,
SpeciesId.MR_RIME,
SpeciesId.ALCREMIE,
SpeciesId.FROSMOTH,
SpeciesId.DURALUDON,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.ARBOLIVA,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.FARIGIRAF,
SpeciesId.SCREAM_TAIL,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_MOTH,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.WO_CHIEN,
SpeciesId.CHI_YU,
SpeciesId.IRON_VALIANT,
SpeciesId.MIRAIDON,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.ARCHALUDON,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
[
SpeciesId.INDEEDEE,
"female",
],
],
[MoveId.HAZE]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.ARTICUNO,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CROBAT,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.POLITOED,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.MURKROW,
SpeciesId.QWILFISH,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.SEVIPER,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.HONCHKROW,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.MANTYKE,
SpeciesId.GLACEON,
SpeciesId.MAMOSWINE,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.CRYOGONAL,
SpeciesId.ZEKROM,
SpeciesId.GRENINJA,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.TREVENANT,
SpeciesId.ZYGARDE,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.PRIMARINA,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.TAPU_FINI,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.RUNERIGUS,
SpeciesId.SPECTRIER,
SpeciesId.OVERQWIL,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CLODSIRE,
SpeciesId.CHIEN_PAO,
SpeciesId.ALOLA_MUK,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_YAMASK,
[
SpeciesId.CALYREX,
"shadow",
],
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_WOOPER,
],
[MoveId.REFLECT]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.SLOWKING,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SNEASEL,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.STANTLER,
SpeciesId.SMOOCHUM,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.CHIMECHO,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.BASTIODON,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.TOGEKISS,
SpeciesId.MAMOSWINE,
SpeciesId.GALLADE,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.CRESSELIA,
SpeciesId.MANAPHY,
SpeciesId.ARCEUS,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.LEAVANNY,
SpeciesId.SIGILYPH,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.CRYOGONAL,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.HYDREIGON,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.DELPHOX,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.CARBINK,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.XERNEAS,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.PRIMARINA,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ARAQUANID,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.ORANGURU,
SpeciesId.PYUKUMUKU,
SpeciesId.MINIOR,
SpeciesId.TOGEDEMARU,
SpeciesId.BRUXISH,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.XURKITREE,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.STAKATAKA,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.CORVIKNIGHT,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.APPLETUN,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.CURSOLA,
SpeciesId.MR_RIME,
SpeciesId.FROSMOTH,
SpeciesId.EISCUE,
SpeciesId.DURALUDON,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.ARBOLIVA,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.FARIGIRAF,
SpeciesId.SCREAM_TAIL,
SpeciesId.SANDY_SHOCKS,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.WO_CHIEN,
SpeciesId.CHI_YU,
SpeciesId.IRON_VALIANT,
SpeciesId.MIRAIDON,
SpeciesId.DIPPLIN,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_CORSOLA,
[
SpeciesId.INDEEDEE,
"female",
],
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
],
[MoveId.FOCUS_ENERGY]: [
SpeciesId.BEEDRILL,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.FARFETCHD,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.SCYTHER,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.MEW,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.ARIADOS,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.SCIZOR,
SpeciesId.TEDDIURSA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.MAGBY,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.ABSOL,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.KRICKETUNE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.LUCARIO,
SpeciesId.MAGMORTAR,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.VICTINI,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.BOUFFALANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.PANGORO,
SpeciesId.SYLVEON,
SpeciesId.VOLCANION,
SpeciesId.PASSIMIAN,
SpeciesId.BUZZWOLE,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.INTELEON,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.BOLTUND,
SpeciesId.FLAPPLE,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.SIRFETCHD,
SpeciesId.FALINKS,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.REGIDRAGO,
SpeciesId.KLEAVOR,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.FLAMIGO,
SpeciesId.VELUZA,
SpeciesId.ANNIHILAPE,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.ROARING_MOON,
SpeciesId.OGERPON,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.PIKACHU,
SpeciesId.ALOLA_MAROWAK,
[
SpeciesId.LYCANROC,
"dusk",
],
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_SAMUROTT,
],
[MoveId.METRONOME]: [
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.SLOWBRO,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.CHANSEY,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.SNORLAX,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CLEFFA,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.SLOWKING,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SMOOCHUM,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.CELEBI,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.SWALOT,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSCLOPS,
SpeciesId.JIRACHI,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.FLOATZEL,
SpeciesId.AMBIPOM,
SpeciesId.HAPPINY,
SpeciesId.MUNCHLAX,
SpeciesId.LUCARIO,
SpeciesId.WEAVILE,
SpeciesId.TOGEKISS,
SpeciesId.DUSKNOIR,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.TORNADUS,
SpeciesId.MELOETTA,
SpeciesId.DELPHOX,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.AROMATISSE,
SpeciesId.SLURPUFF,
SpeciesId.DIANCIE,
SpeciesId.INTELEON,
SpeciesId.TOXTRICITY,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.PERRSERKER,
SpeciesId.MR_RIME,
SpeciesId.ALCREMIE,
SpeciesId.INDEEDEE,
SpeciesId.CALYREX,
SpeciesId.URSALUNA,
SpeciesId.PAWMOT,
SpeciesId.ARBOLIVA,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.ANNIHILAPE,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_VALIANT,
SpeciesId.MUNKIDORI,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_SLOWKING,
SpeciesId.HISUI_LILLIGANT,
],
[MoveId.SELF_DESTRUCT]: [
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.SNORLAX,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.SUDOWOODO,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.STEELIX,
SpeciesId.QWILFISH,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.CORSOLA,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.NOSEPASS,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.GLALIE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BONSLY,
SpeciesId.MUNCHLAX,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.AZELF,
SpeciesId.HEATRAN,
SpeciesId.GIGALITH,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.CRYOGONAL,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.LANDORUS,
SpeciesId.GENESECT,
SpeciesId.VOLCANION,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.CELESTEELA,
SpeciesId.MAGEARNA,
SpeciesId.BLACEPHALON,
SpeciesId.MELMETAL,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.POLTEAGEIST,
SpeciesId.CURSOLA,
SpeciesId.PINCURCHIN,
SpeciesId.STONJOURNER,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.VAROOM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_QWILFISH,
],
[MoveId.FIRE_BLAST]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.MAGMAR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.FLAREON,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.SLOWKING,
SpeciesId.DUNSPARCE,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.MAGBY,
SpeciesId.BLISSEY,
SpeciesId.ENTEI,
SpeciesId.TYRANITAR,
SpeciesId.HO_OH,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.FLYGON,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SOLROCK,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.ABSOL,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.HAPPINY,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.AUDINO,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.HEATMOR,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.RESHIRAM,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.GOODRA,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.VOLCANION,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.TURTONATOR,
SpeciesId.DRAMPA,
SpeciesId.SOLGALEO,
SpeciesId.CELESTEELA,
SpeciesId.GUZZLORD,
SpeciesId.NAGANADEL,
SpeciesId.BLACEPHALON,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.CENTISKORCH,
SpeciesId.DRACOZOLT,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ETERNATUS,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.SCOVILLAIN,
SpeciesId.DUDUNSPARCE,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.GOUGING_FIRE,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_GOODRA,
[
SpeciesId.PALDEA_TAUROS,
"blaze",
],
],
[MoveId.WATERFALL]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.QWILFISH,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.MANTINE,
SpeciesId.KINGDRA,
SpeciesId.SUICUNE,
SpeciesId.LUGIA,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.AZURILL,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.RAYQUAZA,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BIBAREL,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.PALKIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.ARCEUS,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.BASCULIN,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.WISHIWASHI,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.BRUXISH,
SpeciesId.TAPU_FINI,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.EISCUE,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.BASCULEGION,
SpeciesId.OVERQWIL,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.CLODSIRE,
SpeciesId.WALKING_WAKE,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
[
SpeciesId.URSHIFU,
"rapid-strike",
],
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.PALDEA_WOOPER,
],
[MoveId.SWIFT]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.CHANSEY,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.SCYTHER,
SpeciesId.ELECTABUZZ,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.AERODACTYL,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.CROBAT,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.YANMA,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.GLIGAR,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.ELEKID,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LUDICOLO,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.NINJASK,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CRAWDAUNT,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.LUVDISC,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
[
SpeciesId.DEOXYS,
"",
"speed",
],
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.MOTHIM,
SpeciesId.COMBEE,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.CHATOT,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.ELECTIVIRE,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.BASCULIN,
SpeciesId.SIGILYPH,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.EMOLGA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.EELEKTROSS,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.ACCELGOR,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.KLEFKI,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.LYCANROC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.ORANGURU,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.TOGEDEMARU,
SpeciesId.DRAMPA,
SpeciesId.TAPU_KOKO,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.PHEROMOSA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.NAGANADEL,
SpeciesId.ZERAORA,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXTRICITY,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.OBSTAGOON,
SpeciesId.PINCURCHIN,
SpeciesId.FROSMOTH,
SpeciesId.INDEEDEE,
SpeciesId.MORPEKO,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.ANNIHILAPE,
SpeciesId.FARIGIRAF,
SpeciesId.FLUTTER_MANE,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_VALIANT,
SpeciesId.WALKING_WAKE,
SpeciesId.IRON_LEAVES,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.AMNESIA]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.LICKITUNG,
SpeciesId.TANGELA,
SpeciesId.SNORLAX,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.CLEFFA,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.WOBBUFFET,
SpeciesId.GIRAFARIG,
SpeciesId.DUNSPARCE,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.MANTINE,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.CASTFORM,
SpeciesId.WYNAUT,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.JIRACHI,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MUNCHLAX,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.MANTYKE,
SpeciesId.LICKILICKY,
SpeciesId.TANGROWTH,
SpeciesId.TOGEKISS,
SpeciesId.MAMOSWINE,
SpeciesId.UXIE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.BOUFFALANT,
SpeciesId.HEATMOR,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.DIANCIE,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.COMFEY,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.DRAMPA,
SpeciesId.GUZZLORD,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.APPLETUN,
SpeciesId.CRAMORANT,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.RUNERIGUS,
SpeciesId.EISCUE,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.SCREAM_TAIL,
[
SpeciesId.DEOXYS,
"defense",
],
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.PALDEA_WOOPER,
],
[MoveId.DREAM_EATER]: [
SpeciesId.BUTTERFREE,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.VENOMOTH,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.LICKITUNG,
SpeciesId.CHANSEY,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.LAPRAS,
SpeciesId.PORYGON,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.AIPOM,
SpeciesId.YANMA,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.SNEASEL,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.SMOOCHUM,
SpeciesId.BLISSEY,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SHEDINJA,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.SPIRITOMB,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.WATCHOG,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.MELOETTA,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.VIVILLON,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.YVELTAL,
SpeciesId.HOOPA,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.ORANGURU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.LUNALA,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.MAROWAK,
SpeciesId.GALAR_ARTICUNO,
],
[MoveId.LEECH_LIFE]: [
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.MEW,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.YANMA,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.KRICKETUNE,
SpeciesId.DRAPION,
SpeciesId.YANMEGA,
SpeciesId.DUSKNOIR,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.GENESECT,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.MIMIKYU,
SpeciesId.BUZZWOLE,
SpeciesId.NAGANADEL,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.CURSOLA,
SpeciesId.FROSMOTH,
SpeciesId.DRACOVISH,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.SLITHER_WING,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
],
[MoveId.FLASH]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.JOLTEON,
SpeciesId.PORYGON,
SpeciesId.ZAPDOS,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.SHUCKLE,
SpeciesId.SKARMORY,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.GASTRODON,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.SPIRITOMB,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.MAGNEZONE,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.CRESSELIA,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.WATCHOG,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.STUNFISK,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.VIRIZION,
SpeciesId.ZEKROM,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.VIVILLON,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.XERNEAS,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.PERRSERKER,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.WYRDEER,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_YAMASK,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_AVALUGG,
SpeciesId.PALDEA_WOOPER,
],
[MoveId.EXPLOSION]: [
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.MEW,
SpeciesId.SUDOWOODO,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.STEELIX,
SpeciesId.QWILFISH,
SpeciesId.MAGCARGO,
SpeciesId.CORSOLA,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.NOSEPASS,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.GLALIE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.PROBOPASS,
SpeciesId.AZELF,
SpeciesId.HEATRAN,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.CRYOGONAL,
SpeciesId.LANDORUS,
SpeciesId.GENESECT,
SpeciesId.CARBINK,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.DIANCIE,
SpeciesId.VOLCANION,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.TURTONATOR,
SpeciesId.CELESTEELA,
SpeciesId.MAGEARNA,
SpeciesId.BLACEPHALON,
SpeciesId.ROLYCOLY,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.GARGANACL,
SpeciesId.GLIMMET,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.GALAR_WEEZING,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
],
[MoveId.REST]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.PYUKUMUKU,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.STAKATAKA,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXEL,
SpeciesId.TOXTRICITY,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.STONJOURNER,
SpeciesId.EISCUE,
SpeciesId.INDEEDEE,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.BASCULEGION,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.SQUAWKABILLY,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.FLAMIGO,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.FLUTTER_MANE,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.ROCK_SLIDE]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.ONIX,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SUDOWOODO,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.GRANBULL,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.NOSEPASS,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.ZANGOOSE,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.KECLEON,
SpeciesId.DUSCLOPS,
SpeciesId.ABSOL,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.RELICANTH,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.DEOXYS,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.EMPOLEON,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.MANTYKE,
SpeciesId.ABOMASNOW,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.SIMISAGE,
SpeciesId.SIMISEAR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SCOLIPEDE,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.DURANT,
SpeciesId.HYDREIGON,
SpeciesId.TERRAKION,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.HAWLUCHA,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.VOLCANION,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_BULU,
SpeciesId.SOLGALEO,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.CELESTEELA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MARSHADOW,
SpeciesId.STAKATAKA,
SpeciesId.MELMETAL,
SpeciesId.DREDNAW,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CURSOLA,
SpeciesId.RUNERIGUS,
SpeciesId.FALINKS,
SpeciesId.STONJOURNER,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.KLAWF,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.BOMBIRDIER,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.DONDOZO,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.DUDUNSPARCE,
SpeciesId.GREAT_TUSK,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_THORNS,
SpeciesId.TING_LU,
SpeciesId.ROARING_MOON,
SpeciesId.ARCHALUDON,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.TRI_ATTACK]: [
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.DUGTRIO,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNETON,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.CHANSEY,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.PORYGON,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.SLOWKING,
SpeciesId.PORYGON2,
SpeciesId.BLISSEY,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.MAGNEZONE,
SpeciesId.TOGEKISS,
SpeciesId.PORYGON_Z,
SpeciesId.PROBOPASS,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.BEHEEYEM,
SpeciesId.HYDREIGON,
SpeciesId.GENESECT,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MAGEARNA,
SpeciesId.ALCREMIE,
SpeciesId.INDEEDEE,
SpeciesId.DRAGAPULT,
SpeciesId.CALYREX,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_JUGULIS,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
],
[MoveId.SUPER_FANG]: [
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.MEW,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.CROBAT,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.MAWILE,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.HUNTAIL,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.PACHIRISU,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.SKUNTANK,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.DEDENNE,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.KOMALA,
SpeciesId.TOGEDEMARU,
SpeciesId.BRUXISH,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.DREDNAW,
SpeciesId.MORPEKO,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
],
[MoveId.SUBSTITUTE]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.PYUKUMUKU,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.STAKATAKA,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXEL,
SpeciesId.TOXTRICITY,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.STONJOURNER,
SpeciesId.EISCUE,
SpeciesId.INDEEDEE,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.BASCULEGION,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.QUAQUAVAL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.SQUAWKABILLY,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.BOMBIRDIER,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.FLAMIGO,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.FLUTTER_MANE,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.THIEF]: [
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.MEW,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.YANMA,
SpeciesId.QUAGSIRE,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SCIZOR,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.BLISSEY,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.ABSOL,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.YANMEGA,
SpeciesId.GLISCOR,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.ROTOM,
SpeciesId.DARKRAI,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.WHIMSICOTT,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.PANGORO,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.YVELTAL,
SpeciesId.HOOPA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.COMFEY,
SpeciesId.PASSIMIAN,
SpeciesId.KOMALA,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.DHELMISE,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MARSHADOW,
SpeciesId.NAGANADEL,
SpeciesId.BLACEPHALON,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.CRAMORANT,
SpeciesId.TOXTRICITY,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.MORPEKO,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZARUDE,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.MEOWSCARADA,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.SQUAWKABILLY,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.BOMBIRDIER,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.FLAMIGO,
SpeciesId.ANNIHILAPE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.BRUTE_BONNET,
SpeciesId.IRON_BUNDLE,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.PALDEA_TAUROS,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.SNORE]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.CATERPIE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.WURMPLE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETOT,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.BURMY,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.COMBEE,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.STAKATAKA,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXEL,
SpeciesId.TOXTRICITY,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.STONJOURNER,
SpeciesId.EISCUE,
SpeciesId.INDEEDEE,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.URSALUNA,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
],
[MoveId.CURSE]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.HARIYAMA,
SpeciesId.NOSEPASS,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.WHISCASH,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.CHINGLING,
SpeciesId.BONSLY,
SpeciesId.SPIRITOMB,
SpeciesId.MUNCHLAX,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.GIRATINA,
SpeciesId.DARKRAI,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.SAWSBUCK,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.BEARTIC,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.HEATMOR,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.SYLVEON,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.GUMSHOOS,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.PASSIMIAN,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.PYUKUMUKU,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.MIMIKYU,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.CORVIKNIGHT,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.APPLETUN,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.RUNERIGUS,
SpeciesId.PINCURCHIN,
SpeciesId.STONJOURNER,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
[
SpeciesId.CALYREX,
"ice",
"shadow",
],
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.OVERQWIL,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.CERULEDGE,
SpeciesId.MABOSSTIFF,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.BOMBIRDIER,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.ORTHWORM,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.DONDOZO,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.SLITHER_WING,
SpeciesId.IRON_THORNS,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.OKIDOGI,
SpeciesId.HYDRAPPLE,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
],
[MoveId.REVERSAL]: [
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.KANGASKHAN,
SpeciesId.SCYTHER,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.PICHU,
SpeciesId.YANMA,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.DELIBIRD,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.HITMONTOP,
SpeciesId.MILTANK,
SpeciesId.ENTEI,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.BRELOOM,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.VESPIQUEN,
SpeciesId.LOPUNNY,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.RHYPERIOR,
SpeciesId.YANMEGA,
SpeciesId.MAMOSWINE,
SpeciesId.GALLADE,
SpeciesId.VICTINI,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.DARMANITAN,
SpeciesId.SCRAFTY,
SpeciesId.ESCAVALIER,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.BEARTIC,
SpeciesId.ACCELGOR,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.BRAVIARY,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.CHESNAUGHT,
SpeciesId.PANGORO,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.MALAMAR,
SpeciesId.HAWLUCHA,
SpeciesId.ZYGARDE,
SpeciesId.INCINEROAR,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
[
SpeciesId.LYCANROC,
"midnight",
"dusk",
],
SpeciesId.BEWEAR,
SpeciesId.PASSIMIAN,
SpeciesId.SILVALLY,
SpeciesId.KOMALA,
SpeciesId.TOGEDEMARU,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.BUZZWOLE,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.CRAMORANT,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.OBSTAGOON,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.EISCUE,
SpeciesId.MORPEKO,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.REGIDRAGO,
SpeciesId.KLEAVOR,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.QUAQUAVAL,
SpeciesId.SPIDOPS,
SpeciesId.LOKIX,
SpeciesId.SQUAWKABILLY,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.KLAWF,
SpeciesId.PALAFIN,
SpeciesId.FLAMIGO,
SpeciesId.ANNIHILAPE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SLITHER_WING,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.IRON_LEAVES,
SpeciesId.OKIDOGI,
SpeciesId.OGERPON,
SpeciesId.GOUGING_FIRE,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
[
SpeciesId.LYCANROC,
"midnight",
"dusk",
],
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
[
SpeciesId.BASCULIN,
"blue-striped",
"red-striped",
],
],
[MoveId.SPITE]: [
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.KANGASKHAN,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.AIPOM,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.MISDREAVUS,
SpeciesId.DUNSPARCE,
SpeciesId.QWILFISH,
SpeciesId.SNEASEL,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.STANTLER,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.SABLEYE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.VESPIQUEN,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.SPIRITOMB,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.RHYPERIOR,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.GIRATINA,
SpeciesId.DARKRAI,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.STUNFISK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.ZYGARDE,
SpeciesId.DECIDUEYE,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.ORANGURU,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.PYUKUMUKU,
SpeciesId.MIMIKYU,
SpeciesId.DHELMISE,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.BLACEPHALON,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.MORPEKO,
SpeciesId.WYRDEER,
SpeciesId.BASCULEGION,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.LOKIX,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.MABOSSTIFF,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.ANNIHILAPE,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.FLUTTER_MANE,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.MAROWAK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
],
[MoveId.PROTECT]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.BURMY,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.SPEWPA,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.PYUKUMUKU,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.STAKATAKA,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXEL,
SpeciesId.TOXTRICITY,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.STONJOURNER,
SpeciesId.EISCUE,
SpeciesId.INDEEDEE,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.BASCULEGION,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.SQUAWKABILLY,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.BOMBIRDIER,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.FLAMIGO,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.FLUTTER_MANE,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.SCARY_FACE]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.VICTREEBEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.HYPNO,
SpeciesId.ELECTRODE,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.SCYTHER,
SpeciesId.MAGMAR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.FLAREON,
SpeciesId.AERODACTYL,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.NOCTOWL,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.MISDREAVUS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SNEASEL,
SpeciesId.URSARING,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.DONPHAN,
SpeciesId.STANTLER,
SpeciesId.MAGBY,
SpeciesId.ENTEI,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.MASQUERAIN,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.HARIYAMA,
SpeciesId.AGGRON,
SpeciesId.MANECTRIC,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SEVIPER,
SpeciesId.WHISCASH,
SpeciesId.CRAWDAUNT,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.GLALIE,
SpeciesId.HUNTAIL,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.TORTERRA,
SpeciesId.INFERNAPE,
SpeciesId.EMPOLEON,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.VESPIQUEN,
SpeciesId.FLOATZEL,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.LUCARIO,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.RHYPERIOR,
SpeciesId.MAGMORTAR,
SpeciesId.YANMEGA,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.FROSLASS,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.ARCEUS,
SpeciesId.SAMUROTT,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.COFAGRIGUS,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.AMOONGUSS,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.DRUDDIGON,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.CHESNAUGHT,
SpeciesId.PANGORO,
SpeciesId.MALAMAR,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAWITZER,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.AVALUGG,
SpeciesId.NOIVERN,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.CRABOMINABLE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.TOXAPEX,
SpeciesId.MUDSDALE,
SpeciesId.LURANTIS,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.BRUXISH,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_BULU,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NECROZMA,
SpeciesId.ZERAORA,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.FLAPPLE,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXTRICITY,
SpeciesId.GRAPPLOCT,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.RUNERIGUS,
SpeciesId.MORPEKO,
SpeciesId.COPPERAJAH,
SpeciesId.DURALUDON,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.BASCULEGION,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.SKELEDIRGE,
SpeciesId.SPIDOPS,
SpeciesId.LOKIX,
SpeciesId.DACHSBUN,
SpeciesId.SQUAWKABILLY,
SpeciesId.KILOWATTREL,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.GRAFAIAI,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.SCOVILLAIN,
SpeciesId.BOMBIRDIER,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.DONDOZO,
SpeciesId.ANNIHILAPE,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_THORNS,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.IRON_LEAVES,
SpeciesId.OKIDOGI,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.SLUDGE_BOMB]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.BEEDRILL,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.TANGELA,
SpeciesId.MEW,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.BELLOSSOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.GLIGAR,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SHUCKLE,
SpeciesId.OCTILLERY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.DUSTOX,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.MAWILE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.TORKOAL,
SpeciesId.SEVIPER,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.VESPIQUEN,
SpeciesId.GASTRODON,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.TANGROWTH,
SpeciesId.GLISCOR,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.DRUDDIGON,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.LANDORUS,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.VOLCANION,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.NIHILEGO,
SpeciesId.GUZZLORD,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.TOXTRICITY,
SpeciesId.ETERNATUS,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.CLODSIRE,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.PALDEA_WOOPER,
],
[MoveId.MUD_SLAP]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.ONIX,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.GIRAFARIG,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SHUCKLE,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.MILOTIC,
SpeciesId.KECLEON,
SpeciesId.BANETTE,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.ABSOL,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETOT,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.MOTHIM,
SpeciesId.COMBEE,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.LILLIPUP,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.TYMPOLE,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.MINCCINO,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.SHELMET,
SpeciesId.STUNFISK,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.BOUFFALANT,
SpeciesId.LANDORUS,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ROCKRUFF,
[
SpeciesId.LYCANROC,
"midday",
"midnight",
],
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.CINDERACE,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.CLODSIRE,
SpeciesId.DUDUNSPARCE,
SpeciesId.GREAT_TUSK,
SpeciesId.IRON_TREADS,
SpeciesId.WO_CHIEN,
SpeciesId.TING_LU,
SpeciesId.KORAIDON,
SpeciesId.MUNKIDORI,
[
SpeciesId.WORMADAM,
"sandy",
],
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_STUNFISK,
SpeciesId.PALDEA_WOOPER,
],
[MoveId.SPIKES]: [
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.MEW,
SpeciesId.SUDOWOODO,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.GLIGAR,
SpeciesId.QWILFISH,
SpeciesId.HERACROSS,
SpeciesId.DELIBIRD,
SpeciesId.SKARMORY,
SpeciesId.ROSELIA,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.WHISCASH,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.GROUDON,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.VESPIQUEN,
SpeciesId.GASTRODON,
SpeciesId.BONSLY,
SpeciesId.GARCHOMP,
SpeciesId.GLISCOR,
SpeciesId.FROSLASS,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.CARBINK,
SpeciesId.KLEFKI,
SpeciesId.DIANCIE,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.MAGEARNA,
SpeciesId.NAGANADEL,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.PINCURCHIN,
SpeciesId.OVERQWIL,
SpeciesId.MEOWSCARADA,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.CLODSIRE,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_THORNS,
SpeciesId.TING_LU,
SpeciesId.OGERPON,
[
SpeciesId.DEOXYS,
"defense",
],
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.HISUI_QWILFISH,
SpeciesId.PALDEA_WOOPER,
],
[MoveId.ICY_WIND]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.LICKITUNG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.QWILFISH,
SpeciesId.SNEASEL,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.KINGDRA,
SpeciesId.PORYGON2,
SpeciesId.SMOOCHUM,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.SUICUNE,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SHIFTRY,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.AZURILL,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.ZANGOOSE,
SpeciesId.LUNATONE,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGICE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
[
SpeciesId.DEOXYS,
"",
"speed",
],
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.CHINGLING,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.SPIRITOMB,
SpeciesId.MUNCHLAX,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.GLACEON,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.PALKIA,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.AUDINO,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.BASCULIN,
SpeciesId.SIGILYPH,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.TORNADUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.GOLISOPOD,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.TAPU_FINI,
SpeciesId.LUNALA,
SpeciesId.PHEROMOSA,
SpeciesId.INTELEON,
SpeciesId.CRAMORANT,
SpeciesId.OBSTAGOON,
SpeciesId.CURSOLA,
SpeciesId.MR_RIME,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.EISCUE,
SpeciesId.ARCTOZOLT,
SpeciesId.ARCTOVISH,
SpeciesId.GLASTRIER,
SpeciesId.BASCULEGION,
SpeciesId.OVERQWIL,
SpeciesId.QUAQUAVAL,
SpeciesId.BOMBIRDIER,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.TATSUGIRI,
SpeciesId.FLUTTER_MANE,
SpeciesId.IRON_BUNDLE,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.CHIEN_PAO,
SpeciesId.IRON_VALIANT,
SpeciesId.FEZANDIPITI,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
[
SpeciesId.CALYREX,
"ice",
],
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_AVALUGG,
],
[MoveId.OUTRAGE]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BEEDRILL,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.MAROWAK,
SpeciesId.RHYDON,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.SNORLAX,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.MEGANIUM,
SpeciesId.FERALIGATR,
SpeciesId.AMPHAROS,
SpeciesId.GRANBULL,
SpeciesId.KINGDRA,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.SCEPTILE,
SpeciesId.SWAMPERT,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.EXPLOUD,
SpeciesId.AGGRON,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.TROPIUS,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.RAYQUAZA,
SpeciesId.TORTERRA,
SpeciesId.RAMPARDOS,
SpeciesId.BASTIODON,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.ABOMASNOW,
SpeciesId.RHYPERIOR,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.SERPERIOR,
SpeciesId.KROOKODILE,
SpeciesId.SCRAFTY,
SpeciesId.ARCHEOPS,
SpeciesId.EELEKTROSS,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.DRUDDIGON,
SpeciesId.BOUFFALANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.PANGORO,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.ZYGARDE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.SILVALLY,
SpeciesId.TURTONATOR,
SpeciesId.DRAMPA,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.SOLGALEO,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MARSHADOW,
SpeciesId.NAGANADEL,
SpeciesId.ZERAORA,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SANDACONDA,
SpeciesId.MORPEKO,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.DURALUDON,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ETERNATUS,
SpeciesId.REGIDRAGO,
SpeciesId.GLASTRIER,
SpeciesId.BASCULEGION,
SpeciesId.ENAMORUS,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.MABOSSTIFF,
SpeciesId.PALAFIN,
SpeciesId.CYCLIZAR,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.ANNIHILAPE,
SpeciesId.DUDUNSPARCE,
SpeciesId.BRUTE_BONNET,
SpeciesId.IRON_JUGULIS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.DIPPLIN,
SpeciesId.OKIDOGI,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
[
SpeciesId.LYCANROC,
"midnight",
"dusk",
],
[
SpeciesId.CALYREX,
"ice",
],
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.PALDEA_TAUROS,
],
[MoveId.SANDSTORM]: [
SpeciesId.CHARIZARD,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.ONIX,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.LICKITUNG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.SUDOWOODO,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.SKARMORY,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.HITMONTOP,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.NOSEPASS,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.CASTFORM,
SpeciesId.ABSOL,
SpeciesId.RELICANTH,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.TORTERRA,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PROBOPASS,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.ARCEUS,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.MANDIBUZZ,
SpeciesId.DURANT,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.TORNADUS,
SpeciesId.LANDORUS,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.CARBINK,
SpeciesId.KLEFKI,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.ORICORIO,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.NIHILEGO,
SpeciesId.STAKATAKA,
SpeciesId.DREDNAW,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CURSOLA,
SpeciesId.RUNERIGUS,
SpeciesId.STONJOURNER,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.ZAMAZENTA,
SpeciesId.KLEAVOR,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.BOMBIRDIER,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.CLODSIRE,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_THORNS,
SpeciesId.GHOLDENGO,
SpeciesId.TING_LU,
SpeciesId.OGERPON,
SpeciesId.IRON_BOULDER,
[
SpeciesId.WORMADAM,
"sandy",
],
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
],
[MoveId.GIGA_DRAIN]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.TANGELA,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.BELLOSSOM,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.SABLEYE,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.TROPIUS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.KRICKETUNE,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.CARNIVINE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.TANGROWTH,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.UXIE,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.MARACTUS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.HEATMOR,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.VIRIZION,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.VIVILLON,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.MIMIKYU,
SpeciesId.DHELMISE,
SpeciesId.TAPU_BULU,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.ORBEETLE,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.CURSOLA,
SpeciesId.ALCREMIE,
SpeciesId.FROSMOTH,
SpeciesId.ZARUDE,
SpeciesId.CALYREX,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.BRUTE_BONNET,
SpeciesId.SLITHER_WING,
SpeciesId.WO_CHIEN,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.OGERPON,
SpeciesId.HYDRAPPLE,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_CORSOLA,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.ENDURE]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.BLITZLE,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.PYUKUMUKU,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.STAKATAKA,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXEL,
SpeciesId.TOXTRICITY,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.STONJOURNER,
SpeciesId.EISCUE,
SpeciesId.INDEEDEE,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.SQUAWKABILLY,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.BOMBIRDIER,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.FLAMIGO,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.FLUTTER_MANE,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.CHARM]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.CHANSEY,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.SNORLAX,
SpeciesId.MEW,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MISDREAVUS,
SpeciesId.WOBBUFFET,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.SMOOCHUM,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.AZURILL,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.ILLUMISE,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.CHIMECHO,
SpeciesId.WYNAUT,
SpeciesId.LUVDISC,
SpeciesId.LATIAS,
SpeciesId.JIRACHI,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.PACHIRISU,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.MUNCHLAX,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.TOGEKISS,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.MAMOSWINE,
SpeciesId.GALLADE,
SpeciesId.FROSLASS,
SpeciesId.MESPRIT,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.MELOETTA,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.FURFROU,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.SYLVEON,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.DIANCIE,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.KOMALA,
SpeciesId.MIMIKYU,
SpeciesId.TAPU_LELE,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.TOXEL,
SpeciesId.TOXTRICITY,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.PERRSERKER,
SpeciesId.MR_RIME,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.URSALUNA,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.FLUTTER_MANE,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_MR_MIME,
[
SpeciesId.INDEEDEE,
"female",
],
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
],
[MoveId.FALSE_SWIPE]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BEEDRILL,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.FARFETCHD,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.SCYTHER,
SpeciesId.PINSIR,
SpeciesId.JOLTEON,
SpeciesId.MEW,
SpeciesId.GLIGAR,
SpeciesId.SCIZOR,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.MAWILE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.ABSOL,
SpeciesId.EMPOLEON,
SpeciesId.KRICKETUNE,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.WEAVILE,
SpeciesId.GLISCOR,
SpeciesId.GALLADE,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.LEAVANNY,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.KELDEO,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.HAWLUCHA,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.GOLISOPOD,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_BULU,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.KARTANA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.PERRSERKER,
SpeciesId.FALINKS,
SpeciesId.ZACIAN,
SpeciesId.URSHIFU,
SpeciesId.KLEAVOR,
SpeciesId.SNEASLER,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.CERULEDGE,
SpeciesId.KINGAMBIT,
SpeciesId.BAXCALIBUR,
SpeciesId.CHIEN_PAO,
SpeciesId.IRON_VALIANT,
SpeciesId.IRON_LEAVES,
SpeciesId.OGERPON,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.SWAGGER]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.PYUKUMUKU,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.BLACEPHALON,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.WOOLOO,
SpeciesId.TOXTRICITY,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.PERRSERKER,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.ZARUDE,
SpeciesId.SQUAWKABILLY,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.ANNIHILAPE,
SpeciesId.CHI_YU,
SpeciesId.FEZANDIPITI,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_SLOWKING,
SpeciesId.PALDEA_TAUROS,
],
[MoveId.STEEL_WING]: [
SpeciesId.CHARIZARD,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SCYTHER,
SpeciesId.AERODACTYL,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CROBAT,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.YANMA,
SpeciesId.MURKROW,
SpeciesId.GLIGAR,
SpeciesId.SCIZOR,
SpeciesId.DELIBIRD,
SpeciesId.SKARMORY,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.TROPIUS,
SpeciesId.SALAMENCE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.HONCHKROW,
SpeciesId.CHATOT,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.GLISCOR,
SpeciesId.GIRATINA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.LEAVANNY,
SpeciesId.SIGILYPH,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HYDREIGON,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.HAWLUCHA,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.YVELTAL,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.ORICORIO,
SpeciesId.SILVALLY,
SpeciesId.DRAMPA,
SpeciesId.TAPU_KOKO,
SpeciesId.CORVIKNIGHT,
SpeciesId.CRAMORANT,
SpeciesId.SIRFETCHD,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
],
[MoveId.ATTRACT]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINJASK,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.HEATRAN,
SpeciesId.CRESSELIA,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.LANDORUS,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.PYUKUMUKU,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.APPLIN,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXEL,
SpeciesId.TOXTRICITY,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.PINCURCHIN,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.STONJOURNER,
SpeciesId.EISCUE,
SpeciesId.INDEEDEE,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DURALUDON,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.BASCULEGION,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.SQUAWKABILLY,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.BOMBIRDIER,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.FLAMIGO,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.DIPPLIN,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.SLEEP_TALK]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.COMBEE,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.PYUKUMUKU,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.STAKATAKA,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXEL,
SpeciesId.TOXTRICITY,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.STONJOURNER,
SpeciesId.EISCUE,
SpeciesId.INDEEDEE,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.BASCULEGION,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.SQUAWKABILLY,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.BOMBIRDIER,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.FLAMIGO,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.FLUTTER_MANE,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.HEAL_BELL]: [
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.LICKITUNG,
SpeciesId.CHANSEY,
SpeciesId.JYNX,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.ARTICUNO,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MISDREAVUS,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SMOOCHUM,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.CELEBI,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.GARDEVOIR,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.CHIMECHO,
SpeciesId.KRICKETUNE,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.CHINGLING,
SpeciesId.HAPPINY,
SpeciesId.LICKILICKY,
SpeciesId.TOGEKISS,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.UXIE,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.AUDINO,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.MELOETTA,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.SYLVEON,
SpeciesId.DIANCIE,
SpeciesId.COMFEY,
SpeciesId.MAGEARNA,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.ETERNAL_FLOETTE,
],
[MoveId.RETURN]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.STAKATAKA,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXEL,
SpeciesId.TOXTRICITY,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.STONJOURNER,
SpeciesId.EISCUE,
SpeciesId.INDEEDEE,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.BASCULEGION,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.SQUAWKABILLY,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.BOMBIRDIER,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.FLAMIGO,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.FLUTTER_MANE,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.FRUSTRATION]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.STAKATAKA,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXEL,
SpeciesId.TOXTRICITY,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.STONJOURNER,
SpeciesId.EISCUE,
SpeciesId.INDEEDEE,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.BASCULEGION,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.SQUAWKABILLY,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.BOMBIRDIER,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.FLAMIGO,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.FLUTTER_MANE,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.SAFEGUARD]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.BUTTERFREE,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.VILEPLUME,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.LAPRAS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.WOBBUFFET,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.CORSOLA,
SpeciesId.BLISSEY,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.BEAUTIFLY,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SPINDA,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.MILOTIC,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.WYNAUT,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.TOGEKISS,
SpeciesId.GALLADE,
SpeciesId.FROSLASS,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.MARACTUS,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.VIVILLON,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.CARBINK,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PYUKUMUKU,
SpeciesId.MINIOR,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.STAKATAKA,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.APPLETUN,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.CURSOLA,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.ALCREMIE,
SpeciesId.FROSMOTH,
SpeciesId.STONJOURNER,
SpeciesId.ZAMAZENTA,
SpeciesId.CALYREX,
SpeciesId.ARBOLIVA,
SpeciesId.RABSCA,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_YAMASK,
[
SpeciesId.INDEEDEE,
"female",
],
],
[MoveId.PAIN_SPLIT]: [
SpeciesId.ARBOK,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.TANGELA,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.PORYGON,
SpeciesId.MEW,
SpeciesId.IGGLYBUFF,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MISDREAVUS,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.QWILFISH,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.PORYGON2,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.NOSEPASS,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.DEOXYS,
SpeciesId.RAMPARDOS,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.SPIRITOMB,
SpeciesId.TANGROWTH,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.GIRATINA,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.AUDINO,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.STUNFISK,
SpeciesId.KELDEO,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.ZYGARDE,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.PYUKUMUKU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DHELMISE,
SpeciesId.NIHILEGO,
SpeciesId.MAGEARNA,
SpeciesId.BLACEPHALON,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.POLTEAGEIST,
SpeciesId.HATTERENE,
SpeciesId.ALCREMIE,
SpeciesId.PINCURCHIN,
SpeciesId.SPECTRIER,
SpeciesId.BASCULEGION,
SpeciesId.OVERQWIL,
SpeciesId.SPIDOPS,
SpeciesId.MABOSSTIFF,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.WUGTRIO,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.VELUZA,
SpeciesId.DUDUNSPARCE,
SpeciesId.FLUTTER_MANE,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
],
[MoveId.MEGAHORN]: [
SpeciesId.NIDOKING,
SpeciesId.RAPIDASH,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.TAUROS,
SpeciesId.LAPRAS,
SpeciesId.MEW,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.HERACROSS,
SpeciesId.STANTLER,
SpeciesId.ABSOL,
SpeciesId.RHYPERIOR,
SpeciesId.SAMUROTT,
SpeciesId.SCOLIPEDE,
SpeciesId.SAWSBUCK,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.BOUFFALANT,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.KELDEO,
SpeciesId.XERNEAS,
SpeciesId.TAPU_BULU,
SpeciesId.CELESTEELA,
SpeciesId.DREDNAW,
SpeciesId.FALINKS,
SpeciesId.GLASTRIER,
SpeciesId.WYRDEER,
SpeciesId.CLODSIRE,
SpeciesId.GREAT_TUSK,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_LEAVES,
SpeciesId.IRON_BOULDER,
SpeciesId.GALAR_RAPIDASH,
[
SpeciesId.CALYREX,
"ice",
],
SpeciesId.HISUI_SAMUROTT,
],
[MoveId.BATON_PASS]: [
SpeciesId.BUTTERFREE,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.POLIWRATH,
SpeciesId.RAPIDASH,
SpeciesId.FARFETCHD,
SpeciesId.HYPNO,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.ZAPDOS,
SpeciesId.MEW,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.BELLOSSOM,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.GIRAFARIG,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.SCIZOR,
SpeciesId.DELIBIRD,
SpeciesId.CELEBI,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.NINJASK,
SpeciesId.SKITTY,
SpeciesId.MAWILE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.SPINDA,
SpeciesId.ZANGOOSE,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.JIRACHI,
SpeciesId.KRICKETUNE,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.CHINGLING,
SpeciesId.MIME_JR,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.TOGEKISS,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.VICTINI,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.MUNNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.SCOLIPEDE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.ALOMOMOLA,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DURANT,
SpeciesId.MELOETTA,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DIANCIE,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.PASSIMIAN,
SpeciesId.PYUKUMUKU,
SpeciesId.MAGEARNA,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.ORBEETLE,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.DUBWOOL,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.PERRSERKER,
SpeciesId.MR_RIME,
SpeciesId.MORPEKO,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.CALYREX,
SpeciesId.KLEAVOR,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TATSUGIRI,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.SCREAM_TAIL,
SpeciesId.MUNKIDORI,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_MR_MIME,
[
SpeciesId.INDEEDEE,
"female",
],
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.ENCORE]: [
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.HITMONCHAN,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.SNORLAX,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.WOBBUFFET,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SHUCKLE,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.SMOOCHUM,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.AZURILL,
SpeciesId.SABLEYE,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.CHIMECHO,
SpeciesId.WYNAUT,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.JIRACHI,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PACHIRISU,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MIME_JR,
SpeciesId.CHATOT,
SpeciesId.MUNCHLAX,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.LUMINEON,
SpeciesId.TOGEKISS,
SpeciesId.GALLADE,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.VICTINI,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.AUDINO,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.HAWLUCHA,
SpeciesId.DIANCIE,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.TOUCANNON,
SpeciesId.SALAZZLE,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.TOGEDEMARU,
SpeciesId.MAGEARNA,
SpeciesId.BLACEPHALON,
SpeciesId.TOXEL,
SpeciesId.TOXTRICITY,
SpeciesId.MR_RIME,
SpeciesId.ALCREMIE,
[
SpeciesId.INDEEDEE,
"male",
],
SpeciesId.ZARUDE,
SpeciesId.CALYREX,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.ARBOLIVA,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.ANNIHILAPE,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_VALIANT,
SpeciesId.OGERPON,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
],
[MoveId.IRON_TAIL]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.FARFETCHD,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.ONIX,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.LICKITUNG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.AERODACTYL,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.AIPOM,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.SLOWKING,
SpeciesId.GIRAFARIG,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.GRANBULL,
SpeciesId.SNEASEL,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BRELOOM,
SpeciesId.AZURILL,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.FLYGON,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.KECLEON,
SpeciesId.ABSOL,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.SALAMENCE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.PORYGON_Z,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.AUDINO,
SpeciesId.SCOLIPEDE,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.EMOLGA,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.DRUDDIGON,
SpeciesId.HYDREIGON,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.LANDORUS,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.DEDENNE,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.ZYGARDE,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.PASSIMIAN,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.BRUXISH,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.SOLGALEO,
SpeciesId.GUZZLORD,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.ZERAORA,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.DREDNAW,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ZARUDE,
SpeciesId.WYRDEER,
SpeciesId.SNEASLER,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.ANNIHILAPE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
],
[MoveId.METAL_CLAW]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.PARAS,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.GLIGAR,
SpeciesId.SCIZOR,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SKARMORY,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.SABLEYE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.ZANGOOSE,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGISTEEL,
SpeciesId.GROUDON,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.WEAVILE,
SpeciesId.GLISCOR,
SpeciesId.DIALGA,
SpeciesId.HEATRAN,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.GARBODOR,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.DRUDDIGON,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BRAVIARY,
SpeciesId.DURANT,
SpeciesId.COBALION,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.WIMPOD,
SpeciesId.KOMALA,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.SOLGALEO,
SpeciesId.NECROZMA,
SpeciesId.CORVIKNIGHT,
SpeciesId.PERRSERKER,
SpeciesId.DURALUDON,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.KLAWF,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.KINGAMBIT,
SpeciesId.IRON_THORNS,
SpeciesId.ROARING_MOON,
SpeciesId.OKIDOGI,
SpeciesId.ARCHALUDON,
SpeciesId.IRON_CROWN,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.SYNTHESIS]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.TANGELA,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.BELLOSSOM,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.ROSELIA,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.TROPIUS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
[
SpeciesId.WORMADAM,
"plant",
],
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.CARNIVINE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.TANGROWTH,
SpeciesId.LEAFEON,
SpeciesId.SHAYMIN,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.MARACTUS,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.VIRIZION,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.DHELMISE,
SpeciesId.TAPU_BULU,
SpeciesId.KARTANA,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.ZARUDE,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.BRUTE_BONNET,
SpeciesId.OGERPON,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.HIDDEN_POWER]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.UNOWN,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.BURMY,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.STAKATAKA,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXEL,
SpeciesId.TOXTRICITY,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.STONJOURNER,
SpeciesId.EISCUE,
SpeciesId.INDEEDEE,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.BASCULEGION,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.SQUAWKABILLY,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.BOMBIRDIER,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.FLAMIGO,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.FLUTTER_MANE,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.RAIN_DANCE]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.ELECTIVIRE,
SpeciesId.TOGEKISS,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.BASCULIN,
SpeciesId.MARACTUS,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.VOLCARONA,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.LURANTIS,
SpeciesId.SHIINOTIC,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.PYUKUMUKU,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.KOMALA,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_FINI,
SpeciesId.XURKITREE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.GREEDENT,
SpeciesId.CORVIKNIGHT,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.APPLETUN,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXTRICITY,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.EISCUE,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.REGIELEKI,
SpeciesId.WYRDEER,
SpeciesId.URSALUNA,
SpeciesId.BASCULEGION,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.BOMBIRDIER,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.SCREAM_TAIL,
SpeciesId.SLITHER_WING,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.WALKING_WAKE,
SpeciesId.OGERPON,
SpeciesId.HYDRAPPLE,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
[
SpeciesId.URSHIFU,
"rapid-strike",
],
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.SUNNY_DAY]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.SUDOWOODO,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.EELEKTROSS,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
[
SpeciesId.LYCANROC,
"midday",
"midnight",
],
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.MIMIKYU,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.XURKITREE,
SpeciesId.MAGEARNA,
SpeciesId.BLACEPHALON,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.GREEDENT,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.TOXTRICITY,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.FALINKS,
SpeciesId.STONJOURNER,
SpeciesId.DRACOZOLT,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.ZARUDE,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.ENAMORUS,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.SQUAWKABILLY,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.BOMBIRDIER,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.ANNIHILAPE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.FLUTTER_MANE,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.WO_CHIEN,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.DIPPLIN,
SpeciesId.OGERPON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_DECIDUEYE,
[
SpeciesId.PALDEA_TAUROS,
"combat",
"blaze",
],
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.CRUNCH]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.BLASTOISE,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.KANGASKHAN,
SpeciesId.GYARADOS,
SpeciesId.OMASTAR,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.CROBAT,
SpeciesId.UMBREON,
SpeciesId.GIRAFARIG,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.EXPLOUD,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.SEVIPER,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.WALREIN,
SpeciesId.HUNTAIL,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.CRANIDOS,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CARNIVINE,
SpeciesId.RHYPERIOR,
SpeciesId.YANMEGA,
SpeciesId.GLISCOR,
SpeciesId.FROSLASS,
SpeciesId.HEATRAN,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISAGE,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.ZOROARK,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.DRUDDIGON,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.CHESNAUGHT,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.ZYGARDE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.SILVALLY,
SpeciesId.BRUXISH,
SpeciesId.SOLGALEO,
SpeciesId.GUZZLORD,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.THIEVUL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.GRIMMSNARL,
SpeciesId.PERRSERKER,
SpeciesId.MORPEKO,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ZARUDE,
SpeciesId.REGIDRAGO,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.URSALUNA,
SpeciesId.BASCULEGION,
SpeciesId.OVERQWIL,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.CYCLIZAR,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.FARIGIRAF,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.CHIEN_PAO,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.OKIDOGI,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_STUNFISK,
[
SpeciesId.URSHIFU,
"single-strike",
],
[
SpeciesId.CALYREX,
"ice",
"shadow",
],
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_AVALUGG,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.PSYCH_UP]: [
SpeciesId.BUTTERFREE,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.LICKITUNG,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.PORYGON,
SpeciesId.SNORLAX,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.SUDOWOODO,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.DUNSPARCE,
SpeciesId.STEELIX,
SpeciesId.SNEASEL,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.SMOOCHUM,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.SPIRITOMB,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.TANGROWTH,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.WATCHOG,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.UNFEZANT,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.VIVILLON,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.CARBINK,
SpeciesId.KLEFKI,
SpeciesId.XERNEAS,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.PRIMARINA,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.GOLISOPOD,
SpeciesId.PYUKUMUKU,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.MIMIKYU,
SpeciesId.DRAMPA,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.MARSHADOW,
SpeciesId.INDEEDEE,
SpeciesId.RABSCA,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
],
[MoveId.SHADOW_BALL]: [
SpeciesId.BUTTERFREE,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.TAUROS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.SNORLAX,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TYPHLOSION,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CROBAT,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.AIPOM,
SpeciesId.YANMA,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.DUNSPARCE,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SNEASEL,
SpeciesId.CORSOLA,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.SMOOCHUM,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.GOREBYSS,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.SPIRITOMB,
SpeciesId.MUNCHLAX,
SpeciesId.LUCARIO,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.WHIMSICOTT,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.MELOETTA,
SpeciesId.DELPHOX,
SpeciesId.MEOWSTIC,
SpeciesId.AEGISLASH,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAWITZER,
SpeciesId.SYLVEON,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.YVELTAL,
SpeciesId.HOOPA,
SpeciesId.DECIDUEYE,
SpeciesId.PRIMARINA,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.SILVALLY,
SpeciesId.MIMIKYU,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_FINI,
SpeciesId.LUNALA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.BLACEPHALON,
SpeciesId.CINDERACE,
SpeciesId.INTELEON,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.THIEVUL,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATTERENE,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.INDEEDEE,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ETERNATUS,
SpeciesId.SPECTRIER,
SpeciesId.WYRDEER,
SpeciesId.BASCULEGION,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.MEOWSCARADA,
SpeciesId.SKELEDIRGE,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.RABSCA,
SpeciesId.ESPATHRA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.ANNIHILAPE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.FLUTTER_MANE,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.IRON_VALIANT,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.MAROWAK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_YAMASK,
[
SpeciesId.CALYREX,
"shadow",
],
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
],
[MoveId.FUTURE_SIGHT]: [
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.EXEGGUTOR,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.LAPRAS,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.NOCTOWL,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.ESPEON,
SpeciesId.SLOWKING,
SpeciesId.GIRAFARIG,
SpeciesId.DELIBIRD,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SPOINK,
SpeciesId.LUNATONE,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CLAYDOL,
SpeciesId.CASTFORM,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.JIRACHI,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.TOGEKISS,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.CRESSELIA,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DARMANITAN,
SpeciesId.SIGILYPH,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.BEHEEYEM,
SpeciesId.DELPHOX,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.ORANGURU,
SpeciesId.TAPU_LELE,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NECROZMA,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.HATTERENE,
SpeciesId.MR_RIME,
SpeciesId.INDEEDEE,
SpeciesId.CALYREX,
SpeciesId.IRON_VALIANT,
SpeciesId.MUNKIDORI,
SpeciesId.IRON_CROWN,
[
SpeciesId.MEOWSTIC,
"female",
],
SpeciesId.ALOLA_RAICHU,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_SLOWKING,
],
[MoveId.ROCK_SMASH]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BEEDRILL,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.SLOWBRO,
SpeciesId.MUK,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.SCYTHER,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.FURRET,
SpeciesId.LEDIAN,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.SLOWKING,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.NOSEPASS,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.CLAYDOL,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.KECLEON,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.ABSOL,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.RELICANTH,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZONG,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.ZEBSTRIKA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.ZOROARK,
SpeciesId.REUNICLUS,
SpeciesId.SAWSBUCK,
SpeciesId.ESCAVALIER,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTROSS,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.GOODRA,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.ZYGARDE,
SpeciesId.VOLCANION,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.PASSIMIAN,
SpeciesId.GOLISOPOD,
SpeciesId.TAPU_BULU,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.OBSTAGOON,
SpeciesId.SIRFETCHD,
SpeciesId.FALINKS,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DURALUDON,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.ENAMORUS,
SpeciesId.KLAWF,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.KORAIDON,
SpeciesId.ARCHALUDON,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.WHIRLPOOL]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.LICKITUNG,
SpeciesId.RHYDON,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.SNORLAX,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.QWILFISH,
SpeciesId.SNEASEL,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.MANTINE,
SpeciesId.KINGDRA,
SpeciesId.MILTANK,
SpeciesId.SUICUNE,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.AGGRON,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.RAYQUAZA,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BIBAREL,
SpeciesId.RAMPARDOS,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.PALKIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.ARCEUS,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.BASCULIN,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.WISHIWASHI,
SpeciesId.BRUXISH,
SpeciesId.DHELMISE,
SpeciesId.TAPU_FINI,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.GRAPPLOCT,
SpeciesId.OBSTAGOON,
SpeciesId.CURSOLA,
SpeciesId.EISCUE,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.BASCULEGION,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.PALAFIN,
SpeciesId.TATSUGIRI,
SpeciesId.IRON_BUNDLE,
SpeciesId.WALKING_WAKE,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
[
SpeciesId.URSHIFU,
"rapid-strike",
],
SpeciesId.HISUI_SAMUROTT,
[
SpeciesId.PALDEA_TAUROS,
"aqua",
],
],
[MoveId.BEAT_UP]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.KANGASKHAN,
SpeciesId.MEW,
SpeciesId.AIPOM,
SpeciesId.GIRAFARIG,
SpeciesId.SNEASEL,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.VESPIQUEN,
SpeciesId.AMBIPOM,
SpeciesId.WEAVILE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.VANILLUXE,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.DURANT,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.PANGORO,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.WISHIWASHI,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.PASSIMIAN,
SpeciesId.MIMIKYU,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.FALINKS,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.URSHIFU,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.ANNIHILAPE,
SpeciesId.FARIGIRAF,
SpeciesId.KINGAMBIT,
SpeciesId.FEZANDIPITI,
SpeciesId.PIKACHU,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_PERSIAN,
],
[MoveId.UPROAR]: [
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.SNORLAX,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.CROBAT,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.MURKROW,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.DUNSPARCE,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.BLISSEY,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.CELEBI,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINJASK,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.AZURILL,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.ROSELIA,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.WHISCASH,
SpeciesId.CHIMECHO,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.KRICKETOT,
SpeciesId.KRICKETUNE,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.WORMADAM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.CHINGLING,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.MUNCHLAX,
SpeciesId.RHYPERIOR,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.PORYGON_Z,
SpeciesId.ROTOM,
SpeciesId.AZELF,
SpeciesId.HEATRAN,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.VICTINI,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.STUNFISK,
SpeciesId.BOUFFALANT,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.MELOETTA,
SpeciesId.DIGGERSBY,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.HAWLUCHA,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.HOOPA,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.WISHIWASHI,
SpeciesId.PASSIMIAN,
SpeciesId.TURTONATOR,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.BLACEPHALON,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.CRAMORANT,
SpeciesId.TOXTRICITY,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.PERRSERKER,
SpeciesId.MR_RIME,
SpeciesId.FALINKS,
SpeciesId.MORPEKO,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.WYRDEER,
SpeciesId.BASCULEGION,
SpeciesId.ENAMORUS,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.SQUAWKABILLY,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.ANNIHILAPE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.SCREAM_TAIL,
SpeciesId.KORAIDON,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.HYDRAPPLE,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
[
SpeciesId.LYCANROC,
"midnight",
],
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_STUNFISK,
[
SpeciesId.CALYREX,
"ice",
"shadow",
],
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.HEAT_WAVE]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.FARFETCHD,
SpeciesId.WEEZING,
SpeciesId.MAGMAR,
SpeciesId.FLAREON,
SpeciesId.AERODACTYL,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CROBAT,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MURKROW,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.MAGBY,
SpeciesId.ENTEI,
SpeciesId.HO_OH,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.SOLROCK,
SpeciesId.SALAMENCE,
SpeciesId.GROUDON,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.HONCHKROW,
SpeciesId.CHATOT,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.HEATRAN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.SIGILYPH,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.DRUDDIGON,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.TORNADUS,
SpeciesId.RESHIRAM,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.YVELTAL,
SpeciesId.VOLCANION,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.SILVALLY,
SpeciesId.TURTONATOR,
SpeciesId.DRAMPA,
SpeciesId.LUNALA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.NAGANADEL,
SpeciesId.BLACEPHALON,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.SQUAWKABILLY,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.BOMBIRDIER,
SpeciesId.SLITHER_WING,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.FEZANDIPITI,
SpeciesId.GOUGING_FIRE,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_BRAVIARY,
],
[MoveId.HAIL]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.JYNX,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.QWILFISH,
SpeciesId.SNEASEL,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.KINGDRA,
SpeciesId.SMOOCHUM,
SpeciesId.BLISSEY,
SpeciesId.SUICUNE,
SpeciesId.LUGIA,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.AZURILL,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.LUNATONE,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.REGICE,
SpeciesId.KYOGRE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.HAPPINY,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.GLACEON,
SpeciesId.MAMOSWINE,
SpeciesId.FROSLASS,
SpeciesId.PALKIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.ARCEUS,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.BASCULIN,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.CARBINK,
SpeciesId.GOODRA,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.XERNEAS,
SpeciesId.DIANCIE,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.CRABOMINABLE,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.PYUKUMUKU,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.CURSOLA,
SpeciesId.MR_RIME,
SpeciesId.FROSMOTH,
SpeciesId.EISCUE,
SpeciesId.ARCTOZOLT,
SpeciesId.ARCTOVISH,
SpeciesId.GLASTRIER,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
[
SpeciesId.CALYREX,
"ice",
],
],
[MoveId.TORMENT]: [
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.DODRIO,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.GYARADOS,
SpeciesId.AERODACTYL,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CROBAT,
SpeciesId.SUDOWOODO,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.MISDREAVUS,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.NOSEPASS,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.GLALIE,
SpeciesId.DEOXYS,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.FLOATZEL,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.MIME_JR,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.GLISCOR,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.AZELF,
SpeciesId.HEATRAN,
SpeciesId.DARKRAI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARMANITAN,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.DRUDDIGON,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.HAWLUCHA,
SpeciesId.KLEFKI,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.YVELTAL,
SpeciesId.HOOPA,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.BRUXISH,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.PHEROMOSA,
SpeciesId.BLACEPHALON,
SpeciesId.NICKIT,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.MORPEKO,
SpeciesId.GLASTRIER,
SpeciesId.ENAMORUS,
SpeciesId.SQUAWKABILLY,
SpeciesId.BOMBIRDIER,
SpeciesId.VAROOM,
SpeciesId.KINGAMBIT,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
[
SpeciesId.CALYREX,
"ice",
],
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
],
[MoveId.WILL_O_WISP]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.MAGMAR,
SpeciesId.FLAREON,
SpeciesId.MOLTRES,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.MISDREAVUS,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.MAGBY,
SpeciesId.ENTEI,
SpeciesId.HO_OH,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.SHIFTRY,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SHEDINJA,
SpeciesId.SABLEYE,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.ALTARIA,
SpeciesId.SOLROCK,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.ABSOL,
SpeciesId.GROUDON,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.SPIRITOMB,
SpeciesId.MAGMORTAR,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.HEATRAN,
SpeciesId.GIRATINA,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.HEATMOR,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.RESHIRAM,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.VOLCANION,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.TURTONATOR,
SpeciesId.MIMIKYU,
SpeciesId.LUNALA,
SpeciesId.MARSHADOW,
SpeciesId.BLACEPHALON,
SpeciesId.CINDERACE,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.CENTISKORCH,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.CURSOLA,
SpeciesId.RUNERIGUS,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.SPECTRIER,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.SCOVILLAIN,
SpeciesId.HOUNDSTONE,
SpeciesId.SLITHER_WING,
SpeciesId.CHI_YU,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.MAROWAK,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
[
SpeciesId.CALYREX,
"shadow",
],
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
[
SpeciesId.PALDEA_TAUROS,
"blaze",
],
],
[MoveId.FACADE]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.STAKATAKA,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXEL,
SpeciesId.TOXTRICITY,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.STONJOURNER,
SpeciesId.EISCUE,
SpeciesId.INDEEDEE,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.BASCULEGION,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.SQUAWKABILLY,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.BOMBIRDIER,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.FLAMIGO,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.FOCUS_PUNCH]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.SLOWBRO,
SpeciesId.MUK,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.SNORLAX,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.TOGETIC,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.DELIBIRD,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.TYRANITAR,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.LUDICOLO,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.KECLEON,
SpeciesId.DUSCLOPS,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.GROUDON,
SpeciesId.DEOXYS,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.BIBAREL,
SpeciesId.RAMPARDOS,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MIME_JR,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.PALKIA,
SpeciesId.REGIGIGAS,
SpeciesId.DARKRAI,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.WATCHOG,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.REUNICLUS,
SpeciesId.EELEKTROSS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.HEATMOR,
SpeciesId.ZEKROM,
SpeciesId.MELOETTA,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.DIGGERSBY,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.HAWLUCHA,
SpeciesId.GOODRA,
SpeciesId.HOOPA,
SpeciesId.INCINEROAR,
SpeciesId.GUMSHOOS,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.PASSIMIAN,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_BULU,
SpeciesId.BUZZWOLE,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.RILLABOOM,
SpeciesId.GRIMMSNARL,
SpeciesId.MR_RIME,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.GARGANACL,
SpeciesId.PALAFIN,
SpeciesId.ANNIHILAPE,
SpeciesId.IRON_HANDS,
SpeciesId.GHOLDENGO,
SpeciesId.KORAIDON,
SpeciesId.OKIDOGI,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
[
SpeciesId.LYCANROC,
"midnight",
],
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.NATURE_POWER]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.ONIX,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.TANGELA,
SpeciesId.KABUTOPS,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.BELLOSSOM,
SpeciesId.SUDOWOODO,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.STEELIX,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.CORSOLA,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.ROSELIA,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.CRAWDAUNT,
SpeciesId.TROPIUS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.BONSLY,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.TANGROWTH,
SpeciesId.LEAFEON,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.SHAYMIN,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.VIRIZION,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.CARBINK,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.XERNEAS,
SpeciesId.DIANCIE,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.RIBOMBEE,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.DRAMPA,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.XURKITREE,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.CURSOLA,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_CORSOLA,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.CHARGE]: [
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.ELECTABUZZ,
SpeciesId.JOLTEON,
SpeciesId.ZAPDOS,
SpeciesId.MEW,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.ELEKID,
SpeciesId.RAIKOU,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.PACHIRISU,
SpeciesId.MAGNEZONE,
SpeciesId.ELECTIVIRE,
SpeciesId.ROTOM,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.EMOLGA,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.TYNAMO,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.STUNFISK,
SpeciesId.THUNDURUS,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.DEDENNE,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.TOGEDEMARU,
SpeciesId.TAPU_KOKO,
SpeciesId.XURKITREE,
SpeciesId.ZERAORA,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.TOXTRICITY,
SpeciesId.PINCURCHIN,
SpeciesId.MORPEKO,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.REGIELEKI,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_THORNS,
SpeciesId.MIRAIDON,
SpeciesId.RAGING_BOLT,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
],
[MoveId.TAUNT]: [
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.DODRIO,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.GYARADOS,
SpeciesId.AERODACTYL,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CROBAT,
SpeciesId.SUDOWOODO,
SpeciesId.AIPOM,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.MISDREAVUS,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.SHIFTRY,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.NOSEPASS,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.VOLBEAT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.GLALIE,
SpeciesId.DEOXYS,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.VESPIQUEN,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.AMBIPOM,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.MIME_JR,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.GLISCOR,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.AZELF,
SpeciesId.HEATRAN,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.EMOLGA,
SpeciesId.ESCAVALIER,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.LANDORUS,
SpeciesId.KELDEO,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.HAWLUCHA,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.YVELTAL,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.ORICORIO,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.PYUKUMUKU,
SpeciesId.TURTONATOR,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.INTELEON,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.TOXTRICITY,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.MORPEKO,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.QUAQUAVAL,
SpeciesId.SPIDOPS,
SpeciesId.LOKIX,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.SQUAWKABILLY,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.BOMBIRDIER,
SpeciesId.PALAFIN,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.FLAMIGO,
SpeciesId.TATSUGIRI,
SpeciesId.ANNIHILAPE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.BRUTE_BONNET,
SpeciesId.FLUTTER_MANE,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_THORNS,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.IRON_LEAVES,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
[
SpeciesId.CALYREX,
"ice",
"shadow",
],
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.HELPING_HAND]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.DIGLETT,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TYPHLOSION,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.MILOTIC,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.VICTINI,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.LEAVANNY,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.MARACTUS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.ALOMOMOLA,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.DURANT,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.DIANCIE,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.PYUKUMUKU,
SpeciesId.TOGEDEMARU,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.KOMMO_O,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.MAGEARNA,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.ZERAORA,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.APPLETUN,
SpeciesId.TOXTRICITY,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.FALINKS,
SpeciesId.FROSMOTH,
SpeciesId.INDEEDEE,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.SQUAWKABILLY,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.ORTHWORM,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.TATSUGIRI,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.SCREAM_TAIL,
SpeciesId.FLUTTER_MANE,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_MOTH,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.IRON_LEAVES,
SpeciesId.MUNKIDORI,
SpeciesId.OGERPON,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.TRICK]: [
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.PORYGON,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.CLEFFA,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.ESPEON,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.SMOOCHUM,
SpeciesId.BLISSEY,
SpeciesId.LUGIA,
SpeciesId.CELEBI,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SHEDINJA,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.CHIMECHO,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.SPIRITOMB,
SpeciesId.TOGEKISS,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.CRESSELIA,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DARMANITAN,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.GOLURK,
SpeciesId.MELOETTA,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.HOOPA,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.MIMIKYU,
SpeciesId.TAPU_FINI,
SpeciesId.LUNALA,
SpeciesId.MAGEARNA,
SpeciesId.BLACEPHALON,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.INDEEDEE,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.MEOWSCARADA,
SpeciesId.ARMAROUGE,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.FARIGIRAF,
SpeciesId.SCREAM_TAIL,
SpeciesId.GHOLDENGO,
SpeciesId.IRON_VALIANT,
SpeciesId.MUNKIDORI,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_YAMASK,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
],
[MoveId.SUPERPOWER]: [
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.ARCANINE,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.HITMONLEE,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.PINSIR,
SpeciesId.FLAREON,
SpeciesId.KABUTOPS,
SpeciesId.SNORLAX,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SCIZOR,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.BRELOOM,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.TORKOAL,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACTURNE,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.ARMALDO,
SpeciesId.ABSOL,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.LUXRAY,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.HONCHKROW,
SpeciesId.MUNCHLAX,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.RHYPERIOR,
SpeciesId.MAMOSWINE,
SpeciesId.REGIGIGAS,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.SAMUROTT,
SpeciesId.STOUTLAND,
SpeciesId.SIMISAGE,
SpeciesId.SIMISEAR,
SpeciesId.SIMIPOUR,
SpeciesId.GIGALITH,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SCOLIPEDE,
SpeciesId.BASCULIN,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.CARRACOSTA,
SpeciesId.REUNICLUS,
SpeciesId.EELEKTROSS,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.LANDORUS,
SpeciesId.KELDEO,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.DIGGERSBY,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BARBARACLE,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.HAWLUCHA,
SpeciesId.GOODRA,
SpeciesId.AVALUGG,
SpeciesId.ZYGARDE,
SpeciesId.VOLCANION,
SpeciesId.INCINEROAR,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.LURANTIS,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.PASSIMIAN,
SpeciesId.KOMALA,
SpeciesId.DRAMPA,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_BULU,
SpeciesId.SOLGALEO,
SpeciesId.BUZZWOLE,
SpeciesId.CELESTEELA,
SpeciesId.MARSHADOW,
SpeciesId.STAKATAKA,
SpeciesId.ZERAORA,
SpeciesId.MELMETAL,
SpeciesId.RILLABOOM,
SpeciesId.GREEDENT,
SpeciesId.DREDNAW,
SpeciesId.APPLETUN,
SpeciesId.CRAMORANT,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.GRIMMSNARL,
SpeciesId.SIRFETCHD,
SpeciesId.FALINKS,
SpeciesId.STONJOURNER,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.GLASTRIER,
SpeciesId.ENAMORUS,
SpeciesId.CETODDLE,
SpeciesId.SLITHER_WING,
SpeciesId.OKIDOGI,
SpeciesId.OGERPON,
[
SpeciesId.DEOXYS,
"attack",
],
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
[
SpeciesId.CALYREX,
"ice",
],
SpeciesId.HISUI_BRAVIARY,
],
[MoveId.RECYCLE]: [
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.CHANSEY,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.PORYGON,
SpeciesId.SNORLAX,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.SLOWKING,
SpeciesId.GIRAFARIG,
SpeciesId.DELIBIRD,
SpeciesId.PORYGON2,
SpeciesId.SMOOCHUM,
SpeciesId.BLISSEY,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.KECLEON,
SpeciesId.CHIMECHO,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.MUNCHLAX,
SpeciesId.MAGNEZONE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.CRESSELIA,
SpeciesId.ARCEUS,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.HEATMOR,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.DEDENNE,
SpeciesId.KLEFKI,
SpeciesId.HOOPA,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.PYUKUMUKU,
SpeciesId.NECROZMA,
SpeciesId.STAKATAKA,
SpeciesId.BLACEPHALON,
SpeciesId.APPLIN,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.MR_RIME,
SpeciesId.FARIGIRAF,
SpeciesId.DIPPLIN,
SpeciesId.HYDRAPPLE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.GALAR_MR_MIME,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
],
[MoveId.REVENGE]: [
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.FARFETCHD,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.MEW,
SpeciesId.AIPOM,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.QWILFISH,
SpeciesId.HERACROSS,
SpeciesId.HITMONTOP,
SpeciesId.TYRANITAR,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.SHIFTRY,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.CRAWDAUNT,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.AMBIPOM,
SpeciesId.VESPIQUEN,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.REGIGIGAS,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.BASCULIN,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.COFAGRIGUS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.ESCAVALIER,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.KELDEO,
SpeciesId.PANGORO,
SpeciesId.HAWLUCHA,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.MUDSDALE,
SpeciesId.BEWEAR,
SpeciesId.PASSIMIAN,
SpeciesId.TURTONATOR,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_BULU,
SpeciesId.BUZZWOLE,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.CINDERACE,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.CURSOLA,
SpeciesId.SIRFETCHD,
SpeciesId.RUNERIGUS,
SpeciesId.FALINKS,
SpeciesId.MORPEKO,
SpeciesId.COPPERAJAH,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.BASCULEGION,
SpeciesId.ANNIHILAPE,
SpeciesId.KINGAMBIT,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
[
SpeciesId.LYCANROC,
"midnight",
],
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.GALAR_STUNFISK,
],
[MoveId.BRICK_BREAK]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BEEDRILL,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.SLOWBRO,
SpeciesId.MUK,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.KABUTOPS,
SpeciesId.SNORLAX,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.TOGETIC,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.GLIGAR,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SCIZOR,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.DELIBIRD,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.SWALOT,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.KECLEON,
SpeciesId.DUSCLOPS,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.DEOXYS,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.KRICKETUNE,
SpeciesId.RAMPARDOS,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.AMBIPOM,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.GLISCOR,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.REGIGIGAS,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.SIMISAGE,
SpeciesId.SIMISEAR,
SpeciesId.SIMIPOUR,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.ZOROARK,
SpeciesId.GOTHITELLE,
SpeciesId.EELEKTROSS,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.BEARTIC,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.LANDORUS,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.HAWLUCHA,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.ZYGARDE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.INCINEROAR,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.LYCANROC,
SpeciesId.LURANTIS,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.GOLISOPOD,
SpeciesId.KOMALA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_BULU,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.KARTANA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.MELMETAL,
SpeciesId.RILLABOOM,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXTRICITY,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.FALINKS,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DURALUDON,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.MEOWSCARADA,
SpeciesId.QUAQUAVAL,
SpeciesId.SPIDOPS,
SpeciesId.LOKIX,
SpeciesId.PAWMOT,
SpeciesId.GARGANACL,
SpeciesId.CERULEDGE,
SpeciesId.KLAWF,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.ANNIHILAPE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SLITHER_WING,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_THORNS,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.CHIEN_PAO,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.IRON_LEAVES,
SpeciesId.OKIDOGI,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.KNOCK_OFF]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.BEEDRILL,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.TANGELA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.SCYTHER,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.AIPOM,
SpeciesId.GLIGAR,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.ELEKID,
SpeciesId.TYRANITAR,
SpeciesId.BLAZIKEN,
SpeciesId.SWAMPERT,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.SWALOT,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.METAGROSS,
SpeciesId.DEOXYS,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.EMPOLEON,
SpeciesId.KRICKETUNE,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.LEAFEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.GALLADE,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.REGIGIGAS,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.WATCHOG,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.LEAVANNY,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.REUNICLUS,
SpeciesId.SWANNA,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.ALOMOMOLA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.TYNAMO,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.CRYOGONAL,
SpeciesId.ACCELGOR,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.LANDORUS,
SpeciesId.MELOETTA,
SpeciesId.CHESNAUGHT,
SpeciesId.DIGGERSBY,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.GOODRA,
SpeciesId.TREVENANT,
SpeciesId.YVELTAL,
SpeciesId.HOOPA,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.INCINEROAR,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.GUMSHOOS,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.LURANTIS,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.GOLISOPOD,
SpeciesId.KOMALA,
SpeciesId.DHELMISE,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.NIHILEGO,
SpeciesId.KARTANA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MARSHADOW,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.GREEDENT,
SpeciesId.NICKIT,
SpeciesId.SIZZLIPEDE,
SpeciesId.PERRSERKER,
SpeciesId.SIRFETCHD,
SpeciesId.FALINKS,
SpeciesId.MORPEKO,
SpeciesId.COPPERAJAH,
SpeciesId.ZARUDE,
SpeciesId.MEOWSCARADA,
SpeciesId.QUAQUAVAL,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.LOKIX,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.BOMBIRDIER,
SpeciesId.CYCLIZAR,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.GREAT_TUSK,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_JUGULIS,
SpeciesId.WO_CHIEN,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.WALKING_WAKE,
SpeciesId.OKIDOGI,
SpeciesId.OGERPON,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
[
SpeciesId.LYCANROC,
"midnight",
],
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.ENDEAVOR]: [
SpeciesId.BEEDRILL,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.DEWGONG,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.FLAREON,
SpeciesId.MEW,
SpeciesId.MEGANIUM,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.GIRAFARIG,
SpeciesId.DUNSPARCE,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.HERACROSS,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.DELIBIRD,
SpeciesId.HOUNDOOM,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.HITMONTOP,
SpeciesId.BLISSEY,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.LUVDISC,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.KRICKETOT,
SpeciesId.KRICKETUNE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.WORMADAM,
SpeciesId.COMBEE,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.HONCHKROW,
SpeciesId.SKUNTANK,
SpeciesId.HAPPINY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.TOGEKISS,
SpeciesId.MAMOSWINE,
SpeciesId.AZELF,
SpeciesId.SHAYMIN,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.BASCULIN,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.STUNFISK,
SpeciesId.BOUFFALANT,
SpeciesId.DURANT,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.XERNEAS,
SpeciesId.DIANCIE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.PASSIMIAN,
SpeciesId.ORANGURU,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.DRAMPA,
SpeciesId.KOMMO_O,
SpeciesId.SOLGALEO,
SpeciesId.BUZZWOLE,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.FLAPPLE,
SpeciesId.SANDACONDA,
SpeciesId.CRAMORANT,
SpeciesId.TOXEL,
SpeciesId.TOXTRICITY,
SpeciesId.PERRSERKER,
SpeciesId.ALCREMIE,
SpeciesId.FALINKS,
SpeciesId.STONJOURNER,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.BASCULEGION,
SpeciesId.QUAQUAVAL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SQUAWKABILLY,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.BOMBIRDIER,
SpeciesId.PALAFIN,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.FLAMIGO,
SpeciesId.VELUZA,
SpeciesId.ANNIHILAPE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.GREAT_TUSK,
SpeciesId.IRON_TREADS,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.PALDEA_TAUROS,
],
[MoveId.SKILL_SWAP]: [
SpeciesId.BUTTERFREE,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CHANSEY,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.STANTLER,
SpeciesId.SMOOCHUM,
SpeciesId.BLISSEY,
SpeciesId.LUGIA,
SpeciesId.CELEBI,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.PLUSLE,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.CHIMECHO,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.SPIRITOMB,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.CRESSELIA,
SpeciesId.MANAPHY,
SpeciesId.VICTINI,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.ALOMOMOLA,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.MELOETTA,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.SYLVEON,
SpeciesId.CARBINK,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ORANGURU,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.TAPU_LELE,
SpeciesId.MAGEARNA,
SpeciesId.STAKATAKA,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.INDEEDEE,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.MEOWSCARADA,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.FARIGIRAF,
SpeciesId.IRON_VALIANT,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_YAMASK,
],
[MoveId.IMPRISON]: [
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.ESPEON,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.STANTLER,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.SHIFTRY,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.MILOTIC,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.CHIMECHO,
SpeciesId.JIRACHI,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.SPIRITOMB,
SpeciesId.TOGEKISS,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.ARCEUS,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
[
SpeciesId.MEOWSTIC,
"male",
],
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.DECIDUEYE,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ORANGURU,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.RUNERIGUS,
SpeciesId.ALCREMIE,
SpeciesId.FROSMOTH,
SpeciesId.STONJOURNER,
SpeciesId.INDEEDEE,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.ENAMORUS,
SpeciesId.SKELEDIRGE,
SpeciesId.RABSCA,
SpeciesId.FARIGIRAF,
SpeciesId.SCREAM_TAIL,
SpeciesId.FLUTTER_MANE,
SpeciesId.IRON_VALIANT,
SpeciesId.IRON_LEAVES,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.MUNKIDORI,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_YAMASK,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
],
[MoveId.SECRET_POWER]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.STAKATAKA,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXEL,
SpeciesId.TOXTRICITY,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.STONJOURNER,
SpeciesId.EISCUE,
SpeciesId.INDEEDEE,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.BASCULEGION,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.SQUAWKABILLY,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.BOMBIRDIER,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.FLAMIGO,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.FLUTTER_MANE,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.DIVE]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTOPS,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.QWILFISH,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.MANTINE,
SpeciesId.KINGDRA,
SpeciesId.SUICUNE,
SpeciesId.LUGIA,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CRAWDAUNT,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.RAYQUAZA,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BIBAREL,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.PALKIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.ARCEUS,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.SEISMITOAD,
SpeciesId.BASCULIN,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.BEARTIC,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.WISHIWASHI,
SpeciesId.ARAQUANID,
SpeciesId.GOLISOPOD,
SpeciesId.TAPU_FINI,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.EISCUE,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.DONDOZO,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
[
SpeciesId.URSHIFU,
"rapid-strike",
],
],
[MoveId.FEATHER_DANCE]: [
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.ARTICUNO,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MURKROW,
SpeciesId.DELIBIRD,
SpeciesId.LUGIA,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.HONCHKROW,
SpeciesId.CHATOT,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.HAWLUCHA,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.ORICORIO,
SpeciesId.CRAMORANT,
SpeciesId.FROSMOTH,
SpeciesId.EISCUE,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.SQUAWKABILLY,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.ESPATHRA,
SpeciesId.BOMBIRDIER,
SpeciesId.FLAMIGO,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.BLAZE_KICK]: [
SpeciesId.CHARIZARD,
SpeciesId.HITMONLEE,
SpeciesId.MEW,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.VICTINI,
SpeciesId.MIENSHAO,
SpeciesId.GENESECT,
SpeciesId.INCINEROAR,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.GALAR_ZAPDOS,
],
[MoveId.HYPER_VOICE]: [
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.ARCANINE,
SpeciesId.CHANSEY,
SpeciesId.JYNX,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.SNORLAX,
SpeciesId.MEW,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.DUNSPARCE,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.BLISSEY,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.AZURILL,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.MANECTRIC,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.CHIMECHO,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.RAYQUAZA,
SpeciesId.TORTERRA,
SpeciesId.KRICKETUNE,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.MUNCHLAX,
SpeciesId.HIPPOWDON,
SpeciesId.TOGEKISS,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GALLADE,
SpeciesId.ROTOM,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.AUDINO,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.MARACTUS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.MELOETTA,
SpeciesId.DELPHOX,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.SALAZZLE,
SpeciesId.ORANGURU,
SpeciesId.SILVALLY,
SpeciesId.TURTONATOR,
SpeciesId.DRAMPA,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.SOLGALEO,
SpeciesId.NECROZMA,
SpeciesId.RILLABOOM,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.BOLTUND,
SpeciesId.TOXTRICITY,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.INDEEDEE,
SpeciesId.ARCTOZOLT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ZARUDE,
SpeciesId.URSALUNA,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.ARBOLIVA,
SpeciesId.SQUAWKABILLY,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.MABOSSTIFF,
SpeciesId.ESPATHRA,
SpeciesId.BOMBIRDIER,
SpeciesId.PALAFIN,
SpeciesId.CYCLIZAR,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.SCREAM_TAIL,
SpeciesId.FLUTTER_MANE,
SpeciesId.IRON_JUGULIS,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.RAGING_BOLT,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.BLAST_BURN]: [
SpeciesId.CHARIZARD,
SpeciesId.MEW,
SpeciesId.TYPHLOSION,
SpeciesId.BLAZIKEN,
SpeciesId.INFERNAPE,
SpeciesId.EMBOAR,
SpeciesId.DELPHOX,
SpeciesId.INCINEROAR,
SpeciesId.CINDERACE,
SpeciesId.SKELEDIRGE,
SpeciesId.HISUI_TYPHLOSION,
],
[MoveId.HYDRO_CANNON]: [
SpeciesId.BLASTOISE,
SpeciesId.MEW,
SpeciesId.FERALIGATR,
SpeciesId.SWAMPERT,
SpeciesId.EMPOLEON,
SpeciesId.SAMUROTT,
SpeciesId.GRENINJA,
SpeciesId.PRIMARINA,
SpeciesId.INTELEON,
SpeciesId.QUAQUAVAL,
SpeciesId.HISUI_SAMUROTT,
],
[MoveId.WEATHER_BALL]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.VILEPLUME,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACRUEL,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.CLOYSTER,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.MEGANIUM,
SpeciesId.BELLOSSOM,
SpeciesId.POLITOED,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.SLOWKING,
SpeciesId.DELIBIRD,
SpeciesId.KINGDRA,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.SWAMPERT,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.PELIPPER,
SpeciesId.MASQUERAIN,
SpeciesId.ROSELIA,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.TORKOAL,
SpeciesId.ALTARIA,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.WHISCASH,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.GASTRODON,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BRONZONG,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.FROSLASS,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.GIGALITH,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.LILLIGANT,
SpeciesId.MARACTUS,
SpeciesId.SWANNA,
SpeciesId.VANILLUXE,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.GRENINJA,
SpeciesId.VIVILLON,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOLISK,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.GOODRA,
SpeciesId.VOLCANION,
SpeciesId.PRIMARINA,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.SHIINOTIC,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.ELDEGOSS,
SpeciesId.CRAMORANT,
SpeciesId.FROSMOTH,
SpeciesId.EISCUE,
SpeciesId.ENAMORUS,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.ARMAROUGE,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.WALKING_WAKE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_GOODRA,
],
[MoveId.FAKE_TEARS]: [
SpeciesId.PIKACHU,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.JYNX,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MISDREAVUS,
SpeciesId.SNUBBULL,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SMOOCHUM,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.AZURILL,
SpeciesId.SKITTY,
SpeciesId.MAWILE,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.ILLUMISE,
SpeciesId.SPINDA,
SpeciesId.CHIMECHO,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.PACHIRISU,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.GLAMEOW,
SpeciesId.BONSLY,
SpeciesId.WEAVILE,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.FROSLASS,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.MELOETTA,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.SYLVEON,
SpeciesId.DIANCIE,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.SALAZZLE,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.ALCREMIE,
SpeciesId.MORPEKO,
SpeciesId.URSALUNA,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.SQUAWKABILLY,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.SCREAM_TAIL,
SpeciesId.FLUTTER_MANE,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_YAMASK,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
],
[MoveId.AIR_CUTTER]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.VENOMOTH,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SCYTHER,
SpeciesId.AERODACTYL,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.CROBAT,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.YANMA,
SpeciesId.MURKROW,
SpeciesId.SCIZOR,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.MASQUERAIN,
SpeciesId.NINJASK,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.TROPIUS,
SpeciesId.SALAMENCE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.MOTHIM,
SpeciesId.COMBEE,
SpeciesId.VESPIQUEN,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.HONCHKROW,
SpeciesId.CHATOT,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.GIRATINA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.SIGILYPH,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.VOLCARONA,
SpeciesId.TORNADUS,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.ORICORIO,
SpeciesId.KARTANA,
SpeciesId.NAGANADEL,
SpeciesId.INTELEON,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.CRAMORANT,
SpeciesId.KLEAVOR,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.SQUAWKABILLY,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.BOMBIRDIER,
SpeciesId.FLAMIGO,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_JUGULIS,
SpeciesId.FEZANDIPITI,
SpeciesId.SHAYMIN,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.OVERHEAT]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.MAGMAR,
SpeciesId.FLAREON,
SpeciesId.MOLTRES,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.MAGBY,
SpeciesId.ENTEI,
SpeciesId.HO_OH,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MANECTRIC,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SOLROCK,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.MAGMORTAR,
SpeciesId.DIALGA,
SpeciesId.HEATRAN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.ZEBSTRIKA,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.HEATMOR,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.RESHIRAM,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.VOLCANION,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.TOUCANNON,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.TURTONATOR,
SpeciesId.BLACEPHALON,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.CENTISKORCH,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.SCOVILLAIN,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.ANNIHILAPE,
SpeciesId.IRON_MOTH,
SpeciesId.CHI_YU,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.GOUGING_FIRE,
[
SpeciesId.ROTOM,
"heat",
],
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
[
SpeciesId.PALDEA_TAUROS,
"blaze",
],
],
[MoveId.ROCK_TOMB]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.ONIX,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SUDOWOODO,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.GRANBULL,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.NOSEPASS,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.ZANGOOSE,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.KECLEON,
SpeciesId.DUSCLOPS,
SpeciesId.ABSOL,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.HUNTAIL,
SpeciesId.RELICANTH,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.DEOXYS,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.ABOMASNOW,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SCOLIPEDE,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.HYDREIGON,
SpeciesId.TERRAKION,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.HAWLUCHA,
SpeciesId.CARBINK,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.PASSIMIAN,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_BULU,
SpeciesId.SOLGALEO,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MARSHADOW,
SpeciesId.STAKATAKA,
SpeciesId.MELMETAL,
SpeciesId.DREDNAW,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CURSOLA,
SpeciesId.RUNERIGUS,
SpeciesId.FALINKS,
SpeciesId.STONJOURNER,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.SPIDOPS,
SpeciesId.PAWMOT,
SpeciesId.GARGANACL,
SpeciesId.KLAWF,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.BOMBIRDIER,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_THORNS,
SpeciesId.TING_LU,
SpeciesId.OKIDOGI,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.IRON_BOULDER,
[
SpeciesId.WORMADAM,
"sandy",
],
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.METAL_SOUND]: [
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.ELECTABUZZ,
SpeciesId.JOLTEON,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.ZAPDOS,
SpeciesId.MEW,
SpeciesId.FORRETRESS,
SpeciesId.SKARMORY,
SpeciesId.ELEKID,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.REGISTEEL,
SpeciesId.JIRACHI,
SpeciesId.EMPOLEON,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
[
SpeciesId.WORMADAM,
"trash",
],
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.LUCARIO,
SpeciesId.MAGNEZONE,
SpeciesId.ELECTIVIRE,
SpeciesId.PROBOPASS,
SpeciesId.DIALGA,
SpeciesId.HEATRAN,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.DURANT,
SpeciesId.COBALION,
SpeciesId.GENESECT,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.KLEFKI,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.DHELMISE,
SpeciesId.KOMMO_O,
SpeciesId.SOLGALEO,
SpeciesId.CELESTEELA,
SpeciesId.MAGEARNA,
SpeciesId.CORVIKNIGHT,
SpeciesId.TOXEL,
SpeciesId.TOXTRICITY,
SpeciesId.PERRSERKER,
SpeciesId.DURALUDON,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.ORTHWORM,
SpeciesId.KINGAMBIT,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.GHOLDENGO,
SpeciesId.MIRAIDON,
SpeciesId.IRON_LEAVES,
SpeciesId.ARCHALUDON,
SpeciesId.IRON_CROWN,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_STUNFISK,
],
[MoveId.COSMIC_POWER]: [
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MEW,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.CASTFORM,
SpeciesId.CHIMECHO,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
[
SpeciesId.DEOXYS,
"",
"attack",
],
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.CHINGLING,
SpeciesId.ARCEUS,
SpeciesId.SIGILYPH,
SpeciesId.GOTHITELLE,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.MINIOR,
SpeciesId.COSMOEM,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NECROZMA,
SpeciesId.ETERNATUS,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
],
[MoveId.SIGNAL_BEAM]: [
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.CLOYSTER,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.PORYGON,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.YANMA,
SpeciesId.ESPEON,
SpeciesId.SLOWKING,
SpeciesId.GIRAFARIG,
SpeciesId.FORRETRESS,
SpeciesId.QWILFISH,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.KINGDRA,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.RAIKOU,
SpeciesId.SUICUNE,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.CHIMECHO,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.GOREBYSS,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGICE,
SpeciesId.KYOGRE,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.MAGNEZONE,
SpeciesId.ELECTIVIRE,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.GLACEON,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.WATCHOG,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.SIGILYPH,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.DELPHOX,
SpeciesId.VIVILLON,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.MALAMAR,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.DEDENNE,
SpeciesId.HOOPA,
SpeciesId.VIKAVOLT,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.LUNALA,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.WYRDEER,
SpeciesId.FARIGIRAF,
SpeciesId.ALOLA_RAICHU,
],
[MoveId.SAND_TOMB]: [
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.ONIX,
SpeciesId.MEW,
SpeciesId.SUDOWOODO,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.SKARMORY,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.NOSEPASS,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.WHISCASH,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.REGIROCK,
SpeciesId.REGISTEEL,
SpeciesId.GROUDON,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.GASTRODON,
SpeciesId.BONSLY,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.DRAPION,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PROBOPASS,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.LANDORUS,
SpeciesId.DIGGERSBY,
SpeciesId.CARBINK,
SpeciesId.DIANCIE,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.DREDNAW,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.RUNERIGUS,
SpeciesId.STONJOURNER,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_THORNS,
SpeciesId.TING_LU,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
],
[MoveId.MUDDY_WATER]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.SLOWBRO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.LICKITUNG,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.KINGDRA,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.AZURILL,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CLAMPERL,
SpeciesId.RELICANTH,
SpeciesId.KYOGRE,
SpeciesId.FLOATZEL,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.LICKILICKY,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.BASCULIN,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.JELLICENT,
SpeciesId.STUNFISK,
SpeciesId.KELDEO,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.GOLISOPOD,
SpeciesId.DHELMISE,
SpeciesId.TAPU_FINI,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.DREDNAW,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.PINCURCHIN,
SpeciesId.BASCULEGION,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.TATSUGIRI,
SpeciesId.CLODSIRE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
],
[MoveId.BULLET_SEED]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.TANGELA,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.BELLOSSOM,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.HERACROSS,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.MANTINE,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.TROPIUS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.CARNIVINE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.TANGROWTH,
SpeciesId.LEAFEON,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.LEAVANNY,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.MARACTUS,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.TAPU_BULU,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.MORPEKO,
SpeciesId.ZARUDE,
SpeciesId.CALYREX,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.BRUTE_BONNET,
SpeciesId.WO_CHIEN,
SpeciesId.DIPPLIN,
SpeciesId.OGERPON,
SpeciesId.HYDRAPPLE,
[
SpeciesId.WORMADAM,
"plant",
],
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.AERIAL_ACE]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.SLOWBRO,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.PORYGON,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.CROBAT,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.YANMA,
SpeciesId.MURKROW,
SpeciesId.MISDREAVUS,
SpeciesId.GLIGAR,
SpeciesId.SCIZOR,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.PORYGON2,
SpeciesId.HITMONTOP,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.MASQUERAIN,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.SABLEYE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.FLYGON,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.KECLEON,
SpeciesId.TROPIUS,
SpeciesId.ABSOL,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.KRICKETUNE,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHATOT,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.MANTYKE,
SpeciesId.WEAVILE,
SpeciesId.TANGROWTH,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLISCOR,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.LEAVANNY,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SIGILYPH,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FERROTHORN,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.KELDEO,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.YVELTAL,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.LURANTIS,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.PASSIMIAN,
SpeciesId.GOLISOPOD,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.BRUXISH,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.LUNALA,
SpeciesId.KARTANA,
SpeciesId.NECROZMA,
SpeciesId.NAGANADEL,
SpeciesId.ZERAORA,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.FLAPPLE,
SpeciesId.CRAMORANT,
SpeciesId.DRACOZOLT,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.SPIDOPS,
SpeciesId.LOKIX,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.SQUAWKABILLY,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.ESPATHRA,
SpeciesId.BOMBIRDIER,
SpeciesId.CYCLIZAR,
SpeciesId.FLAMIGO,
SpeciesId.KINGAMBIT,
SpeciesId.SLITHER_WING,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.CHIEN_PAO,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.IRON_LEAVES,
SpeciesId.FEZANDIPITI,
SpeciesId.IRON_BOULDER,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.ICICLE_SPEAR]: [
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.JYNX,
SpeciesId.LAPRAS,
SpeciesId.ARTICUNO,
SpeciesId.MEW,
SpeciesId.SNEASEL,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.DELIBIRD,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.REGICE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.GLACEON,
SpeciesId.MAMOSWINE,
SpeciesId.FROSLASS,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.KYUREM,
SpeciesId.AURORUS,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.INTELEON,
SpeciesId.CURSOLA,
SpeciesId.MR_RIME,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.EISCUE,
SpeciesId.ARCTOZOLT,
SpeciesId.ARCTOVISH,
SpeciesId.GLASTRIER,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_CORSOLA,
[
SpeciesId.CALYREX,
"ice",
],
SpeciesId.HISUI_AVALUGG,
],
[MoveId.IRON_DEFENSE]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.METAPOD,
SpeciesId.BUTTERFREE,
SpeciesId.KAKUNA,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.RHYDON,
SpeciesId.MR_MIME,
SpeciesId.PINSIR,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.MEW,
SpeciesId.SUDOWOODO,
SpeciesId.SLOWKING,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.STEELIX,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.CORSOLA,
SpeciesId.SKARMORY,
SpeciesId.DONPHAN,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.SILCOON,
SpeciesId.CASCOON,
SpeciesId.NOSEPASS,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.TORKOAL,
SpeciesId.SOLROCK,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.CLAYDOL,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.BELDUM,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGISTEEL,
SpeciesId.JIRACHI,
SpeciesId.TORTERRA,
SpeciesId.EMPOLEON,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.DRAPION,
SpeciesId.MAGNEZONE,
SpeciesId.RHYPERIOR,
SpeciesId.PROBOPASS,
SpeciesId.DIALGA,
SpeciesId.HEATRAN,
SpeciesId.ARCEUS,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.DARMANITAN,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.CRYOGONAL,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.DURANT,
SpeciesId.COBALION,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.SPEWPA,
SpeciesId.VIVILLON,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.CARBINK,
SpeciesId.KLEFKI,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.DIANCIE,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.TURTONATOR,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.STAKATAKA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.CORVIKNIGHT,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.DREDNAW,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SANDACONDA,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.FALINKS,
SpeciesId.STONJOURNER,
SpeciesId.EISCUE,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.URSHIFU,
SpeciesId.GLASTRIER,
SpeciesId.ENAMORUS,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.KLAWF,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.KINGAMBIT,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_THORNS,
SpeciesId.IRON_LEAVES,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.ARCHALUDON,
SpeciesId.IRON_CROWN,
[
SpeciesId.DEOXYS,
"defense",
],
[
SpeciesId.WORMADAM,
"trash",
],
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
[
SpeciesId.CALYREX,
"ice",
],
SpeciesId.HISUI_AVALUGG,
],
[MoveId.DRAGON_CLAW]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.AERODACTYL,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.TYRANITAR,
SpeciesId.SCEPTILE,
SpeciesId.AGGRON,
SpeciesId.FLYGON,
SpeciesId.ALTARIA,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.EELEKTROSS,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.DRUDDIGON,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.CHESNAUGHT,
SpeciesId.PANGORO,
SpeciesId.BARBARACLE,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.GOODRA,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.YVELTAL,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.BEWEAR,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.TURTONATOR,
SpeciesId.DRAMPA,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.GUZZLORD,
SpeciesId.NAGANADEL,
SpeciesId.DRACOZOLT,
SpeciesId.DURALUDON,
SpeciesId.DRAGAPULT,
SpeciesId.REGIDRAGO,
SpeciesId.CERULEDGE,
SpeciesId.CYCLIZAR,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.ARCHALUDON,
SpeciesId.GOUGING_FIRE,
SpeciesId.HISUI_GOODRA,
],
[MoveId.FRENZY_PLANT]: [
SpeciesId.VENUSAUR,
SpeciesId.MEW,
SpeciesId.MEGANIUM,
SpeciesId.SCEPTILE,
SpeciesId.TORTERRA,
SpeciesId.SERPERIOR,
SpeciesId.CHESNAUGHT,
SpeciesId.DECIDUEYE,
SpeciesId.RILLABOOM,
SpeciesId.MEOWSCARADA,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.BULK_UP]: [
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.ELECTABUZZ,
SpeciesId.PINSIR,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.HERACROSS,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.SWAMPERT,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.ELECTIVIRE,
SpeciesId.GALLADE,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.ARCEUS,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.KROOKODILE,
SpeciesId.DARMANITAN,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.EELEKTROSS,
SpeciesId.BEARTIC,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.LANDORUS,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.TALONFLAME,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.BARBARACLE,
SpeciesId.HAWLUCHA,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.LYCANROC,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.PASSIMIAN,
SpeciesId.GOLISOPOD,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_BULU,
SpeciesId.BUZZWOLE,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.RILLABOOM,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.CORVIKNIGHT,
SpeciesId.BOLTUND,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.FALINKS,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.QUAQUAVAL,
SpeciesId.PAWMOT,
SpeciesId.CERULEDGE,
SpeciesId.PALAFIN,
SpeciesId.FLAMIGO,
SpeciesId.ANNIHILAPE,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.SLITHER_WING,
SpeciesId.KORAIDON,
SpeciesId.OKIDOGI,
SpeciesId.ALOLA_RATICATE,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
],
[MoveId.BOUNCE]: [
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.HITMONLEE,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.MAGIKARP,
SpeciesId.GYARADOS,
SpeciesId.MEW,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.IGGLYBUFF,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.QWILFISH,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.KINGDRA,
SpeciesId.DONPHAN,
SpeciesId.STANTLER,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.SHIFTRY,
SpeciesId.AZURILL,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.ABSOL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.VICTINI,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.BASCULIN,
SpeciesId.MARACTUS,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.COBALION,
SpeciesId.VIRIZION,
SpeciesId.KELDEO,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.PYROAR,
SpeciesId.GOGOAT,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HAWLUCHA,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.TOGEDEMARU,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.DUBWOOL,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.REGIELEKI,
SpeciesId.LOKIX,
SpeciesId.FINIZEN,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.CHI_YU,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_STUNFISK,
],
[MoveId.MUD_SHOT]: [
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.MEW,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.QWILFISH,
SpeciesId.SHUCKLE,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.SABLEYE,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.GRUMPIG,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.RELICANTH,
SpeciesId.GROUDON,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.PACHIRISU,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.BONSLY,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.RHYPERIOR,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.BOUFFALANT,
SpeciesId.LANDORUS,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.VOLCANION,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDSDALE,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.OBSTAGOON,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.ZARUDE,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.BASCULEGION,
SpeciesId.OVERQWIL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.CLODSIRE,
SpeciesId.DUDUNSPARCE,
SpeciesId.GREAT_TUSK,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.WO_CHIEN,
SpeciesId.TING_LU,
SpeciesId.KORAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.PIKACHU,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.POISON_TAIL]: [
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORAN_M,
SpeciesId.MEW,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.QWILFISH,
SpeciesId.SEVIPER,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.SKORUPI,
SpeciesId.GLISCOR,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.DRUDDIGON,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.GOOMY,
SpeciesId.GOODRA,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.TOXTRICITY,
SpeciesId.ETERNATUS,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.GRAFAIAI,
SpeciesId.CLODSIRE,
SpeciesId.DUDUNSPARCE,
SpeciesId.OKIDOGI,
SpeciesId.FEZANDIPITI,
SpeciesId.PIKACHU,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.PALDEA_WOOPER,
],
[MoveId.COVET]: [
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.FARFETCHD,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.SNORLAX,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.AIPOM,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SHUCKLE,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.BLISSEY,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.AZURILL,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.LATIAS,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.PACHIRISU,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.MUNCHLAX,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.LICKILICKY,
SpeciesId.TOGEKISS,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.SHAYMIN,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.AUDINO,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.EMOLGA,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.SYLVEON,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.KLEFKI,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.POIPOLE,
SpeciesId.GREEDENT,
SpeciesId.PERRSERKER,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.URSALUNA,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.ANNIHILAPE,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_MR_MIME,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.ETERNAL_FLOETTE,
],
[MoveId.MAGICAL_LEAF]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.EXEGGUTOR,
SpeciesId.MR_MIME,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CLEFFA,
SpeciesId.TOGETIC,
SpeciesId.BELLOSSOM,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.ESPEON,
SpeciesId.MISDREAVUS,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.ROSELIA,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.TROPIUS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.ROSERADE,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.MISMAGIUS,
SpeciesId.CARNIVINE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.TOGEKISS,
SpeciesId.LEAFEON,
SpeciesId.GALLADE,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.SNIVY,
SpeciesId.PANSAGE,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.VIRIZION,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.SYLVEON,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.ALCREMIE,
SpeciesId.INDEEDEE,
SpeciesId.ZARUDE,
SpeciesId.CALYREX,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.BRUTE_BONNET,
SpeciesId.FLUTTER_MANE,
SpeciesId.WO_CHIEN,
SpeciesId.IRON_VALIANT,
SpeciesId.IRON_LEAVES,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.OGERPON,
SpeciesId.HYDRAPPLE,
[
SpeciesId.MEOWSTIC,
"female",
],
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.CALM_MIND]: [
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.EXEGGUTOR,
SpeciesId.CHANSEY,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CLEFFA,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.SUDOWOODO,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.DUNSPARCE,
SpeciesId.SNEASEL,
SpeciesId.CORSOLA,
SpeciesId.STANTLER,
SpeciesId.SMOOCHUM,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.RELICANTH,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.INFERNAPE,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.SPIRITOMB,
SpeciesId.LUCARIO,
SpeciesId.WEAVILE,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.ALOMOMOLA,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.LANDORUS,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.VIVILLON,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.CARBINK,
SpeciesId.KLEFKI,
SpeciesId.TREVENANT,
SpeciesId.XERNEAS,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.PRIMARINA,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.XURKITREE,
SpeciesId.KARTANA,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.CURSOLA,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.ALCREMIE,
SpeciesId.FROSMOTH,
SpeciesId.INDEEDEE,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.SNEASLER,
SpeciesId.ENAMORUS,
SpeciesId.ARMAROUGE,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.SCREAM_TAIL,
SpeciesId.FLUTTER_MANE,
SpeciesId.IRON_VALIANT,
SpeciesId.MIRAIDON,
SpeciesId.IRON_LEAVES,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_YAMASK,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.LEAF_BLADE]: [
SpeciesId.VICTREEBEL,
SpeciesId.FARFETCHD,
SpeciesId.MEW,
SpeciesId.BELLOSSOM,
SpeciesId.CELEBI,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TROPIUS,
SpeciesId.LEAFEON,
SpeciesId.GALLADE,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.LEAVANNY,
SpeciesId.LILLIGANT,
SpeciesId.VIRIZION,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.KARTANA,
SpeciesId.SIRFETCHD,
SpeciesId.IRON_VALIANT,
SpeciesId.IRON_LEAVES,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.DRAGON_DANCE]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.ONIX,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.AERODACTYL,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.STEELIX,
SpeciesId.KINGDRA,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.SCEPTILE,
SpeciesId.FLYGON,
SpeciesId.ALTARIA,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.MILOTIC,
SpeciesId.TROPIUS,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.RAYQUAZA,
SpeciesId.ARCEUS,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.HYDREIGON,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.NOIVERN,
SpeciesId.ZYGARDE,
SpeciesId.SALAZZLE,
SpeciesId.DRAMPA,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.NECROZMA,
SpeciesId.NAGANADEL,
SpeciesId.FLAPPLE,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ETERNATUS,
SpeciesId.REGIDRAGO,
SpeciesId.TATSUGIRI,
SpeciesId.IRON_THORNS,
SpeciesId.BAXCALIBUR,
SpeciesId.ROARING_MOON,
SpeciesId.WALKING_WAKE,
SpeciesId.GOUGING_FIRE,
],
[MoveId.ROCK_BLAST]: [
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.ONIX,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.MEW,
SpeciesId.SUDOWOODO,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.STEELIX,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.MANTINE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.NOSEPASS,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.RELICANTH,
SpeciesId.REGIROCK,
SpeciesId.GROUDON,
SpeciesId.TORTERRA,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.GASTRODON,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.RHYPERIOR,
SpeciesId.MAMOSWINE,
SpeciesId.PROBOPASS,
SpeciesId.HEATRAN,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.EXCADRILL,
SpeciesId.CONKELDURR,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.CINCCINO,
SpeciesId.TERRAKION,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.CARBINK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.LYCANROC,
SpeciesId.MINIOR,
SpeciesId.NECROZMA,
SpeciesId.STAKATAKA,
SpeciesId.BLACEPHALON,
SpeciesId.DREDNAW,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CURSOLA,
SpeciesId.RUNERIGUS,
SpeciesId.STONJOURNER,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.KLEAVOR,
SpeciesId.GARGANACL,
SpeciesId.KLAWF,
SpeciesId.BOMBIRDIER,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.IRON_THORNS,
SpeciesId.IRON_BOULDER,
[
SpeciesId.WORMADAM,
"sandy",
],
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_CORSOLA,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_AVALUGG,
],
[MoveId.WATER_PULSE]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.LICKITUNG,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.JYNX,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.DUNSPARCE,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SNEASEL,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.KINGDRA,
SpeciesId.SMOOCHUM,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.SUICUNE,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.CELEBI,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.AZURILL,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.SPINDA,
SpeciesId.ZANGOOSE,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BIBAREL,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.HAPPINY,
SpeciesId.SPIRITOMB,
SpeciesId.MUNCHLAX,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.TOGEKISS,
SpeciesId.GLACEON,
SpeciesId.FROSLASS,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.PALKIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.ARCEUS,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.BASCULIN,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.STUNFISK,
SpeciesId.KELDEO,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.VOLCANION,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.GOLISOPOD,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_FINI,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.EISCUE,
SpeciesId.BASCULEGION,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.FLAMIGO,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.CLODSIRE,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_BUNDLE,
SpeciesId.WALKING_WAKE,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
[
SpeciesId.PALDEA_TAUROS,
"aqua",
],
SpeciesId.PALDEA_WOOPER,
],
[MoveId.ROOST]: [
SpeciesId.CHARIZARD,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.VENOMOTH,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SCYTHER,
SpeciesId.AERODACTYL,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.CROBAT,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.YANMA,
SpeciesId.MURKROW,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.SCIZOR,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.MASQUERAIN,
SpeciesId.NINJASK,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.TROPIUS,
SpeciesId.SALAMENCE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.HONCHKROW,
SpeciesId.CHATOT,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.GLISCOR,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.SIGILYPH,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.EMOLGA,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HYDREIGON,
SpeciesId.VOLCARONA,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.HAWLUCHA,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.YVELTAL,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.VIKAVOLT,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.DRAMPA,
SpeciesId.TAPU_KOKO,
SpeciesId.LUNALA,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.CRAMORANT,
SpeciesId.KLEAVOR,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.SQUAWKABILLY,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.BOMBIRDIER,
SpeciesId.FLAMIGO,
SpeciesId.DUDUNSPARCE,
SpeciesId.ROARING_MOON,
SpeciesId.FEZANDIPITI,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.GRAVITY]: [
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CHANSEY,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.PORYGON,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.ESPEON,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.BLISSEY,
SpeciesId.GARDEVOIR,
SpeciesId.NOSEPASS,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.CHIMECHO,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.HAPPINY,
SpeciesId.MAGNEZONE,
SpeciesId.GLACEON,
SpeciesId.PORYGON_Z,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.ARCEUS,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.AUDINO,
SpeciesId.SIGILYPH,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.LANDORUS,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.CARBINK,
SpeciesId.XERNEAS,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.ORANGURU,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.MINIOR,
SpeciesId.TOGEDEMARU,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_FINI,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.STAKATAKA,
SpeciesId.HATTERENE,
SpeciesId.STONJOURNER,
SpeciesId.INDEEDEE,
SpeciesId.ETERNATUS,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.GARGANACL,
SpeciesId.RABSCA,
SpeciesId.FARIGIRAF,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_LEAVES,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_EXEGGUTOR,
[
SpeciesId.INDEEDEE,
"male",
],
],
[MoveId.GYRO_BALL]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.ONIX,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.MEW,
SpeciesId.TYPHLOSION,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.STEELIX,
SpeciesId.QWILFISH,
SpeciesId.SHUCKLE,
SpeciesId.MAGCARGO,
SpeciesId.DONPHAN,
SpeciesId.HITMONTOP,
SpeciesId.MILTANK,
SpeciesId.SABLEYE,
SpeciesId.TORKOAL,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.GLALIE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.RAYQUAZA,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.CARBINK,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.DIANCIE,
SpeciesId.VOLCANION,
SpeciesId.PASSIMIAN,
SpeciesId.MINIOR,
SpeciesId.TOGEDEMARU,
SpeciesId.DHELMISE,
SpeciesId.SOLGALEO,
SpeciesId.BUZZWOLE,
SpeciesId.CELESTEELA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.STAKATAKA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.APPLETUN,
SpeciesId.PERRSERKER,
SpeciesId.DURALUDON,
SpeciesId.OVERQWIL,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.DUDUNSPARCE,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_TREADS,
SpeciesId.DIPPLIN,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.TERAPAGOS,
[
SpeciesId.WORMADAM,
"trash",
],
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
],
[MoveId.BRINE]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.MEW,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.SLOWKING,
SpeciesId.QWILFISH,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.MANTINE,
SpeciesId.KINGDRA,
SpeciesId.SUICUNE,
SpeciesId.LUGIA,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.HARIYAMA,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.KYOGRE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.PALKIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.ARCEUS,
SpeciesId.OSHAWOTT,
SpeciesId.PANPOUR,
SpeciesId.BASCULIN,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.DHELMISE,
SpeciesId.TAPU_FINI,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.CURSOLA,
SpeciesId.PINCURCHIN,
SpeciesId.EISCUE,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.OVERQWIL,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
[
SpeciesId.URSHIFU,
"rapid-strike",
],
SpeciesId.HISUI_QWILFISH,
],
[MoveId.PLUCK]: [
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CROBAT,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MURKROW,
SpeciesId.DELIBIRD,
SpeciesId.SKARMORY,
SpeciesId.HO_OH,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.HONCHKROW,
SpeciesId.CHATOT,
SpeciesId.TOGEKISS,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.SIGILYPH,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.ORICORIO,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.CRAMORANT,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.BOMBIRDIER,
SpeciesId.VELUZA,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.TAILWIND]: [
SpeciesId.CHARIZARD,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.VENOMOTH,
SpeciesId.FARFETCHD,
SpeciesId.SCYTHER,
SpeciesId.AERODACTYL,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.CROBAT,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.YANMA,
SpeciesId.MURKROW,
SpeciesId.GLIGAR,
SpeciesId.SCIZOR,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.SUICUNE,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.MASQUERAIN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.CASTFORM,
SpeciesId.TROPIUS,
SpeciesId.SALAMENCE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.RAYQUAZA,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.MOTHIM,
SpeciesId.COMBEE,
SpeciesId.VESPIQUEN,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.HONCHKROW,
SpeciesId.CHATOT,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.GLISCOR,
SpeciesId.ARCEUS,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.SIGILYPH,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.EMOLGA,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HYDREIGON,
SpeciesId.VOLCARONA,
SpeciesId.TORNADUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.HAWLUCHA,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.YVELTAL,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.COMFEY,
SpeciesId.SILVALLY,
SpeciesId.DRAMPA,
SpeciesId.LUNALA,
SpeciesId.KARTANA,
SpeciesId.NAGANADEL,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.CRAMORANT,
SpeciesId.FROSMOTH,
SpeciesId.KLEAVOR,
SpeciesId.ENAMORUS,
SpeciesId.SQUAWKABILLY,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.BOMBIRDIER,
SpeciesId.FLAMIGO,
SpeciesId.DUDUNSPARCE,
SpeciesId.IRON_JUGULIS,
SpeciesId.ROARING_MOON,
SpeciesId.FEZANDIPITI,
SpeciesId.SHAYMIN,
SpeciesId.GIRATINA,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.U_TURN]: [
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.VENOMOTH,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.FARFETCHD,
SpeciesId.SCYTHER,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.MEW,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.CROBAT,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.YANMA,
SpeciesId.MURKROW,
SpeciesId.GLIGAR,
SpeciesId.SCIZOR,
SpeciesId.CELEBI,
SpeciesId.BLAZIKEN,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.MASQUERAIN,
SpeciesId.NINJASK,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.TROPIUS,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.AMBIPOM,
SpeciesId.LOPUNNY,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHATOT,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.YANMEGA,
SpeciesId.GLISCOR,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.VICTINI,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.WHIMSICOTT,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.EMOLGA,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ACCELGOR,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.LANDORUS,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.FURFROU,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.YVELTAL,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.WISHIWASHI,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.PASSIMIAN,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TOGEDEMARU,
SpeciesId.TAPU_KOKO,
SpeciesId.PHEROMOSA,
SpeciesId.NAGANADEL,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.ORBEETLE,
SpeciesId.THIEVUL,
SpeciesId.FLAPPLE,
SpeciesId.PERRSERKER,
SpeciesId.FROSMOTH,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.KLEAVOR,
SpeciesId.SNEASLER,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.QUAQUAVAL,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.SQUAWKABILLY,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.BOMBIRDIER,
SpeciesId.CYCLIZAR,
SpeciesId.FLAMIGO,
SpeciesId.ANNIHILAPE,
SpeciesId.SLITHER_WING,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.CLOSE_COMBAT]: [
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.FARFETCHD,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.SCYTHER,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.MEW,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SCIZOR,
SpeciesId.HERACROSS,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.HITMONTOP,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.BRELOOM,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.SHARPEDO,
SpeciesId.ZANGOOSE,
SpeciesId.CRAWDAUNT,
SpeciesId.ABSOL,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.STARAPTOR,
SpeciesId.LOPUNNY,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.TOXICROAK,
SpeciesId.GALLADE,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SAWK,
SpeciesId.KROOKODILE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.ESCAVALIER,
SpeciesId.EELEKTROSS,
SpeciesId.HAXORUS,
SpeciesId.BEARTIC,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.GOLURK,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.CHESNAUGHT,
SpeciesId.PANGORO,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.HAWLUCHA,
SpeciesId.XERNEAS,
SpeciesId.INCINEROAR,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.LYCANROC,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.BEWEAR,
SpeciesId.PASSIMIAN,
SpeciesId.GOLISOPOD,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_BULU,
SpeciesId.SOLGALEO,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.SIRFETCHD,
SpeciesId.FALINKS,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.GLASTRIER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.QUAQUAVAL,
SpeciesId.PAWMOT,
SpeciesId.CERULEDGE,
SpeciesId.PALAFIN,
SpeciesId.FLAMIGO,
SpeciesId.ANNIHILAPE,
SpeciesId.GREAT_TUSK,
SpeciesId.BRUTE_BONNET,
SpeciesId.SLITHER_WING,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.IRON_LEAVES,
SpeciesId.OKIDOGI,
SpeciesId.IRON_BOULDER,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_ZAPDOS,
[
SpeciesId.CALYREX,
"ice",
],
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
],
[MoveId.PAYBACK]: [
SpeciesId.BEEDRILL,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.DODRIO,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.AERODACTYL,
SpeciesId.MEW,
SpeciesId.CROBAT,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.MISDREAVUS,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.OCTILLERY,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.SMOOCHUM,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.PELIPPER,
SpeciesId.HARIYAMA,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.ABSOL,
SpeciesId.GLALIE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.FLOATZEL,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.SPIRITOMB,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.WEAVILE,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.GLISCOR,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.AZELF,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARMANITAN,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HYDREIGON,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.MELOETTA,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.HAWLUCHA,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.GOLISOPOD,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_BULU,
SpeciesId.BUZZWOLE,
SpeciesId.GUZZLORD,
SpeciesId.MARSHADOW,
SpeciesId.BLACEPHALON,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.APPLETUN,
SpeciesId.TOXTRICITY,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.MORPEKO,
SpeciesId.COPPERAJAH,
SpeciesId.ARCTOZOLT,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.URSALUNA,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.BOMBIRDIER,
SpeciesId.FLAMIGO,
SpeciesId.BRUTE_BONNET,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
[
SpeciesId.LYCANROC,
"midnight",
],
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
[
SpeciesId.CALYREX,
"ice",
"shadow",
],
],
[MoveId.ASSURANCE]: [
SpeciesId.BEEDRILL,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.MACHAMP,
SpeciesId.DODUO,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.KANGASKHAN,
SpeciesId.SCYTHER,
SpeciesId.TAUROS,
SpeciesId.AERODACTYL,
SpeciesId.MEW,
SpeciesId.CROBAT,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.GIRAFARIG,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.HERACROSS,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.DONPHAN,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.MAWILE,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SEVIPER,
SpeciesId.ABSOL,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.VESPIQUEN,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.AZELF,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.PATRAT,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.SCOLIPEDE,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.MARACTUS,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.MIENSHAO,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.GENESECT,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.HAWLUCHA,
SpeciesId.GOODRA,
SpeciesId.INCINEROAR,
SpeciesId.LYCANROC,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.TOGEDEMARU,
SpeciesId.DHELMISE,
SpeciesId.TAPU_KOKO,
SpeciesId.PHEROMOSA,
SpeciesId.MARSHADOW,
SpeciesId.NAGANADEL,
SpeciesId.ZERAORA,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.SIRFETCHD,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.STONJOURNER,
SpeciesId.MORPEKO,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ETERNATUS,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.ANNIHILAPE,
SpeciesId.FARIGIRAF,
SpeciesId.KINGAMBIT,
SpeciesId.IRON_JUGULIS,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GRIMER,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
[
SpeciesId.CALYREX,
"ice",
"shadow",
],
[
SpeciesId.PALDEA_TAUROS,
"combat",
],
],
[MoveId.EMBARGO]: [
SpeciesId.PERSIAN,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.MURKROW,
SpeciesId.MISDREAVUS,
SpeciesId.SNEASEL,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.SPIRITOMB,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.PORYGON_Z,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.DARKRAI,
SpeciesId.VICTINI,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.MELOETTA,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.PANGORO,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.YVELTAL,
SpeciesId.HOOPA,
SpeciesId.INCINEROAR,
SpeciesId.ORICORIO,
SpeciesId.ORANGURU,
SpeciesId.PALOSSAND,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DHELMISE,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
],
[MoveId.FLING]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.SLOWBRO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.SNORLAX,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.GLIGAR,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SCIZOR,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.DELIBIRD,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.TYRANITAR,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.KECLEON,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BIBAREL,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.AMBIPOM,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.GLISCOR,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.PALKIA,
SpeciesId.REGIGIGAS,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.VICTINI,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.WHIMSICOTT,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.REUNICLUS,
SpeciesId.EMOLGA,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.HEATMOR,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.MELOETTA,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.INCINEROAR,
SpeciesId.GUMSHOOS,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MARSHADOW,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.CINDERACE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.TOXTRICITY,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.MR_RIME,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.QUAQUAVAL,
SpeciesId.SPIDOPS,
SpeciesId.LOKIX,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.ARBOLIVA,
SpeciesId.GARGANACL,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.KLAWF,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.FLAMIGO,
SpeciesId.ANNIHILAPE,
SpeciesId.KINGAMBIT,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_THORNS,
SpeciesId.GHOLDENGO,
SpeciesId.IRON_VALIANT,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.OGERPON,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
[
SpeciesId.LYCANROC,
"midnight",
],
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.GASTRO_ACID]: [
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.SNORLAX,
SpeciesId.MEW,
SpeciesId.BELLOSSOM,
SpeciesId.SHUCKLE,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.SEVIPER,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.MUNCHLAX,
SpeciesId.CARNIVINE,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.HEATMOR,
SpeciesId.DIGGERSBY,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.PYUKUMUKU,
SpeciesId.GUZZLORD,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
],
[MoveId.POWER_SWAP]: [
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.TANGELA,
SpeciesId.MR_MIME,
SpeciesId.MAGMAR,
SpeciesId.PORYGON,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.ESPEON,
SpeciesId.GIRAFARIG,
SpeciesId.PORYGON2,
SpeciesId.MAGBY,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.GARDEVOIR,
SpeciesId.MEDITITE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.TANGROWTH,
SpeciesId.MAGMORTAR,
SpeciesId.PORYGON_Z,
SpeciesId.CRESSELIA,
SpeciesId.VICTINI,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.DARMANITAN,
SpeciesId.SIGILYPH,
SpeciesId.COFAGRIGUS,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.ACCELGOR,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.MAGEARNA,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.HATTERENE,
SpeciesId.GRIMMSNARL,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.INDEEDEE,
SpeciesId.ZAMAZENTA,
SpeciesId.CALYREX,
SpeciesId.RABSCA,
SpeciesId.FARIGIRAF,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
],
[MoveId.GUARD_SWAP]: [
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.DROWZEE,
SpeciesId.MR_MIME,
SpeciesId.PORYGON,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.UMBREON,
SpeciesId.GIRAFARIG,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SKARMORY,
SpeciesId.PORYGON2,
SpeciesId.GARDEVOIR,
SpeciesId.MAWILE,
SpeciesId.MEDITITE,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.CASTFORM,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.PORYGON_Z,
SpeciesId.CRESSELIA,
SpeciesId.VICTINI,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.DARMANITAN,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.CARBINK,
SpeciesId.DIANCIE,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.MAGEARNA,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.HATTERENE,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.ZAMAZENTA,
SpeciesId.CALYREX,
SpeciesId.RABSCA,
SpeciesId.FARIGIRAF,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
[
SpeciesId.INDEEDEE,
"female",
],
],
[MoveId.WORRY_SEED]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.TANGELA,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.BELLOSSOM,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.ROSELIA,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.TROPIUS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.WORMADAM,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.CARNIVINE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.TANGROWTH,
SpeciesId.LEAFEON,
SpeciesId.SHAYMIN,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.MARACTUS,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.VIRIZION,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.TAPU_BULU,
SpeciesId.NIHILEGO,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.ETERNAL_FLOETTE,
],
[MoveId.TOXIC_SPIKES]: [
SpeciesId.BEEDRILL,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.MEW,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.QUAGSIRE,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.GLIGAR,
SpeciesId.QWILFISH,
SpeciesId.SHIFTRY,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.ROSERADE,
SpeciesId.VESPIQUEN,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.GLISCOR,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.NIHILEGO,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.TOXTRICITY,
SpeciesId.RUNERIGUS,
SpeciesId.PINCURCHIN,
SpeciesId.ETERNATUS,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.MEOWSCARADA,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.CLODSIRE,
SpeciesId.IRON_MOTH,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_YAMASK,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.PALDEA_WOOPER,
],
[MoveId.FLARE_BLITZ]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.MAGMAR,
SpeciesId.FLAREON,
SpeciesId.MOLTRES,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.MAGCARGO,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.MAGBY,
SpeciesId.ENTEI,
SpeciesId.HO_OH,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SOLROCK,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.MAGMORTAR,
SpeciesId.HEATRAN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.HEATMOR,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.RESHIRAM,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.VOLCANION,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.SOLGALEO,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.CENTISKORCH,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.SLITHER_WING,
SpeciesId.IRON_MOTH,
SpeciesId.CHI_YU,
SpeciesId.KORAIDON,
SpeciesId.GOUGING_FIRE,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
[
SpeciesId.PALDEA_TAUROS,
"blaze",
],
],
[MoveId.AURA_SPHERE]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.RAIKOU,
SpeciesId.CELEBI,
SpeciesId.BLAZIKEN,
SpeciesId.GARDEVOIR,
SpeciesId.MEDICHAM,
SpeciesId.ZANGOOSE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.JIRACHI,
SpeciesId.INFERNAPE,
SpeciesId.LOPUNNY,
SpeciesId.LUCARIO,
SpeciesId.TOGEKISS,
SpeciesId.GALLADE,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.KELDEO,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.KOMMO_O,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.URSHIFU,
SpeciesId.MEOWSCARADA,
SpeciesId.ARMAROUGE,
SpeciesId.PALAFIN,
SpeciesId.IRON_VALIANT,
SpeciesId.ARCHALUDON,
SpeciesId.TERAPAGOS,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.ROCK_POLISH]: [
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.ONIX,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.MEW,
SpeciesId.SUDOWOODO,
SpeciesId.FORRETRESS,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SHUCKLE,
SpeciesId.MAGCARGO,
SpeciesId.CORSOLA,
SpeciesId.DONPHAN,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.NOSEPASS,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.CAMERUPT,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.RELICANTH,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.GROUDON,
SpeciesId.TORTERRA,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.RHYPERIOR,
SpeciesId.GLISCOR,
SpeciesId.PROBOPASS,
SpeciesId.REGIGIGAS,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.GARBODOR,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.DURANT,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.LANDORUS,
SpeciesId.GENESECT,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.CARBINK,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.DIANCIE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.MINIOR,
SpeciesId.KOMMO_O,
SpeciesId.NECROZMA,
SpeciesId.STAKATAKA,
SpeciesId.DREDNAW,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.STONJOURNER,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
],
[MoveId.POISON_JAB]: [
SpeciesId.BEEDRILL,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.RAPIDASH,
SpeciesId.FARFETCHD,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.HITMONLEE,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.QWILFISH,
SpeciesId.SNEASEL,
SpeciesId.DONPHAN,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.SHARPEDO,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.DEOXYS,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.ROSERADE,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.GARCHOMP,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.GLISCOR,
SpeciesId.GALLADE,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CRYOGONAL,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.KELDEO,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.PANGORO,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.HAWLUCHA,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.GOLISOPOD,
SpeciesId.TOGEDEMARU,
SpeciesId.KOMMO_O,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.GUZZLORD,
SpeciesId.MARSHADOW,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXTRICITY,
SpeciesId.SIRFETCHD,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.ZACIAN,
SpeciesId.ETERNATUS,
SpeciesId.URSHIFU,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.CERULEDGE,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.IRON_VALIANT,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.IRON_BOULDER,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_SLOWKING,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.PALDEA_WOOPER,
],
[MoveId.DARK_PULSE]: [
SpeciesId.BLASTOISE,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.GYARADOS,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CROBAT,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.MISDREAVUS,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNEASEL,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SEVIPER,
SpeciesId.CRAWDAUNT,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.ABSOL,
SpeciesId.GLALIE,
SpeciesId.DEOXYS,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.SPIRITOMB,
SpeciesId.LUCARIO,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.GLISCOR,
SpeciesId.PORYGON_Z,
SpeciesId.DUSKNOIR,
SpeciesId.ROTOM,
SpeciesId.HEATRAN,
SpeciesId.GIRATINA,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.DRUDDIGON,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.GENESECT,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.YVELTAL,
SpeciesId.HOOPA,
SpeciesId.INCINEROAR,
SpeciesId.GOLISOPOD,
SpeciesId.MIMIKYU,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.NAGANADEL,
SpeciesId.BLACEPHALON,
SpeciesId.INTELEON,
SpeciesId.THIEVUL,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.PERRSERKER,
SpeciesId.RUNERIGUS,
SpeciesId.MORPEKO,
SpeciesId.DURALUDON,
SpeciesId.ZARUDE,
SpeciesId.SPECTRIER,
SpeciesId.OVERQWIL,
SpeciesId.MEOWSCARADA,
SpeciesId.LOKIX,
SpeciesId.ARMAROUGE,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.BOMBIRDIER,
SpeciesId.KINGAMBIT,
SpeciesId.BRUTE_BONNET,
SpeciesId.FLUTTER_MANE,
SpeciesId.IRON_JUGULIS,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.FEZANDIPITI,
SpeciesId.ARCHALUDON,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.MAROWAK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_YAMASK,
[
SpeciesId.URSHIFU,
"single-strike",
],
[
SpeciesId.CALYREX,
"shadow",
],
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
],
[MoveId.AQUA_TAIL]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.LICKITUNG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.KANGASKHAN,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.LANTURN,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.QWILFISH,
SpeciesId.MANTINE,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.AGGRON,
SpeciesId.SEVIPER,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.ARMALDO,
SpeciesId.MILOTIC,
SpeciesId.KECLEON,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.SALAMENCE,
SpeciesId.KYOGRE,
SpeciesId.RAYQUAZA,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.GARCHOMP,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.PALKIA,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.SCOLIPEDE,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.STUNFISK,
SpeciesId.DRUDDIGON,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.KELDEO,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.GOODRA,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.WISHIWASHI,
SpeciesId.BRUXISH,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.BASCULEGION,
SpeciesId.OVERQWIL,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.CYCLIZAR,
SpeciesId.DONDOZO,
SpeciesId.DUDUNSPARCE,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SAMUROTT,
],
[MoveId.SEED_BOMB]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.TANGELA,
SpeciesId.SNORLAX,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.BELLOSSOM,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.PELIPPER,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.GRUMPIG,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.TROPIUS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.WORMADAM,
SpeciesId.PACHIRISU,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.AMBIPOM,
SpeciesId.MUNCHLAX,
SpeciesId.CARNIVINE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.TANGROWTH,
SpeciesId.LEAFEON,
SpeciesId.SHAYMIN,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.MARACTUS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.VIRIZION,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.DEDENNE,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.PASSIMIAN,
SpeciesId.KOMALA,
SpeciesId.TAPU_BULU,
SpeciesId.CELESTEELA,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ELDEGOSS,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.MORPEKO,
SpeciesId.ZARUDE,
SpeciesId.CALYREX,
SpeciesId.URSALUNA,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.ANNIHILAPE,
SpeciesId.BRUTE_BONNET,
SpeciesId.WO_CHIEN,
SpeciesId.DIPPLIN,
SpeciesId.OGERPON,
SpeciesId.HYDRAPPLE,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.AIR_SLASH]: [
SpeciesId.CHARIZARD,
SpeciesId.BUTTERFREE,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.VENOMOTH,
SpeciesId.FARFETCHD,
SpeciesId.SCYTHER,
SpeciesId.ARTICUNO,
SpeciesId.MOLTRES,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.CROBAT,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.YANMA,
SpeciesId.MURKROW,
SpeciesId.DUNSPARCE,
SpeciesId.SCIZOR,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.SUICUNE,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.MASQUERAIN,
SpeciesId.NINJASK,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.TROPIUS,
SpeciesId.ABSOL,
SpeciesId.SALAMENCE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.RAYQUAZA,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.DRIFBLIM,
SpeciesId.HONCHKROW,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.GALLADE,
SpeciesId.ARCEUS,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.SIGILYPH,
SpeciesId.ARCHEOPS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.EMOLGA,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.KELDEO,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.AEGISLASH,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.YVELTAL,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.VIKAVOLT,
SpeciesId.ORICORIO,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.LUNALA,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.NAGANADEL,
SpeciesId.INTELEON,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.FLAPPLE,
SpeciesId.CRAMORANT,
SpeciesId.FROSMOTH,
SpeciesId.ZACIAN,
SpeciesId.KLEAVOR,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.SQUAWKABILLY,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.BOMBIRDIER,
SpeciesId.FLAMIGO,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_LEAVES,
SpeciesId.FEZANDIPITI,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.SHAYMIN,
[
SpeciesId.ROTOM,
"fan",
],
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_MOLTRES,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.X_SCISSOR]: [
SpeciesId.BEEDRILL,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.SCYTHER,
SpeciesId.PINSIR,
SpeciesId.KABUTOPS,
SpeciesId.MEW,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.GLIGAR,
SpeciesId.SCIZOR,
SpeciesId.SNEASEL,
SpeciesId.SKARMORY,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.SHIFTRY,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.SABLEYE,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.ABSOL,
SpeciesId.KRICKETUNE,
SpeciesId.VESPIQUEN,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.LEAFEON,
SpeciesId.GLISCOR,
SpeciesId.GALLADE,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.LEAVANNY,
SpeciesId.SCOLIPEDE,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.DURANT,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.KELDEO,
SpeciesId.GENESECT,
SpeciesId.PANGORO,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.HAWLUCHA,
SpeciesId.TREVENANT,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.GOLISOPOD,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MIMIKYU,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.KARTANA,
SpeciesId.NECROZMA,
SpeciesId.NAGANADEL,
SpeciesId.CENTISKORCH,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.KLEAVOR,
SpeciesId.SNEASLER,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.CERULEDGE,
SpeciesId.GRAFAIAI,
SpeciesId.KLAWF,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.KINGAMBIT,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.IRON_LEAVES,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.GALAR_MEOWTH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
],
[MoveId.BUG_BUZZ]: [
SpeciesId.BUTTERFREE,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.SCYTHER,
SpeciesId.MEW,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.YANMA,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.SCIZOR,
SpeciesId.HERACROSS,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.KRICKETUNE,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.COMBEE,
SpeciesId.VESPIQUEN,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.YANMEGA,
SpeciesId.ARCEUS,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.GENESECT,
SpeciesId.VIVILLON,
SpeciesId.VIKAVOLT,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.PHEROMOSA,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.KLEAVOR,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.SLITHER_WING,
SpeciesId.IRON_MOTH,
SpeciesId.TERAPAGOS,
],
[MoveId.DRAGON_PULSE]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.ARCANINE,
SpeciesId.ONIX,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.AERODACTYL,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.FERALIGATR,
SpeciesId.AMPHAROS,
SpeciesId.STEELIX,
SpeciesId.KINGDRA,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.SCEPTILE,
SpeciesId.AGGRON,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.TROPIUS,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.LUCARIO,
SpeciesId.RHYPERIOR,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.SERPERIOR,
SpeciesId.KROOKODILE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.EELEKTROSS,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.DRUDDIGON,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.ZYGARDE,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.TURTONATOR,
SpeciesId.DRAMPA,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.RUNERIGUS,
SpeciesId.DRACOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.DURALUDON,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ETERNATUS,
SpeciesId.REGIDRAGO,
SpeciesId.ARMAROUGE,
SpeciesId.CYCLIZAR,
SpeciesId.TATSUGIRI,
SpeciesId.IRON_JUGULIS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.DIPPLIN,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
],
[MoveId.POWER_GEM]: [
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.GOLDUCK,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.SUDOWOODO,
SpeciesId.ESPEON,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.CORSOLA,
SpeciesId.TYRANITAR,
SpeciesId.NOSEPASS,
SpeciesId.SABLEYE,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.LUNATONE,
SpeciesId.VESPIQUEN,
SpeciesId.MISMAGIUS,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.PROBOPASS,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.CRESSELIA,
SpeciesId.ARCEUS,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.CARBINK,
SpeciesId.DIANCIE,
SpeciesId.MINIOR,
SpeciesId.NIHILEGO,
SpeciesId.NECROZMA,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.CURSOLA,
SpeciesId.STONJOURNER,
SpeciesId.MEOWSCARADA,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.KLAWF,
SpeciesId.RABSCA,
SpeciesId.BOMBIRDIER,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.FLUTTER_MANE,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_THORNS,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.MIRAIDON,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
],
[MoveId.DRAIN_PUNCH]: [
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWBRO,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.HITMONCHAN,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.TOGETIC,
SpeciesId.BELLOSSOM,
SpeciesId.SUDOWOODO,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.BLISSEY,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.KECLEON,
SpeciesId.REGIROCK,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.TOGEKISS,
SpeciesId.GALLADE,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.REGIGIGAS,
SpeciesId.DARKRAI,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.MARACTUS,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.REUNICLUS,
SpeciesId.EELEKTROSS,
SpeciesId.ACCELGOR,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.HEATMOR,
SpeciesId.MELOETTA,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.AROMATISSE,
SpeciesId.SLURPUFF,
SpeciesId.HAWLUCHA,
SpeciesId.TREVENANT,
SpeciesId.HOOPA,
SpeciesId.INCINEROAR,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.SHIINOTIC,
SpeciesId.BEWEAR,
SpeciesId.PASSIMIAN,
SpeciesId.MIMIKYU,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.BUZZWOLE,
SpeciesId.GUZZLORD,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.TOXTRICITY,
SpeciesId.GRAPPLOCT,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.MR_RIME,
SpeciesId.ALCREMIE,
SpeciesId.INDEEDEE,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.URSALUNA,
SpeciesId.PALAFIN,
SpeciesId.ANNIHILAPE,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.OKIDOGI,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_SLOWKING,
],
[MoveId.VACUUM_WAVE]: [
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.SCYTHER,
SpeciesId.MEW,
SpeciesId.SCIZOR,
SpeciesId.HERACROSS,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.SHIFTRY,
SpeciesId.GARDEVOIR,
SpeciesId.BRELOOM,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.FLYGON,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.EMPOLEON,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.GALLADE,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.MIENSHAO,
SpeciesId.COBALION,
SpeciesId.VIRIZION,
SpeciesId.KELDEO,
SpeciesId.PASSIMIAN,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.KARTANA,
SpeciesId.INTELEON,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.CERULEDGE,
SpeciesId.ANNIHILAPE,
SpeciesId.IRON_VALIANT,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.FOCUS_BLAST]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARIZARD,
SpeciesId.BLASTOISE,
SpeciesId.RAICHU,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.CLEFABLE,
SpeciesId.WIGGLYTUFF,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWRATH,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.SLOWBRO,
SpeciesId.MUK,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.SNORLAX,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TYPHLOSION,
SpeciesId.FERALIGATR,
SpeciesId.FURRET,
SpeciesId.LEDIAN,
SpeciesId.AMPHAROS,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.GRANBULL,
SpeciesId.HERACROSS,
SpeciesId.URSARING,
SpeciesId.HITMONTOP,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.TYRANITAR,
SpeciesId.SCEPTILE,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.SWAMPERT,
SpeciesId.LUDICOLO,
SpeciesId.SHIFTRY,
SpeciesId.GARDEVOIR,
SpeciesId.BRELOOM,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.GRUMPIG,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.DEOXYS,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.RAMPARDOS,
SpeciesId.FLOATZEL,
SpeciesId.LOPUNNY,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.REGIGIGAS,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.WATCHOG,
SpeciesId.SIMISAGE,
SpeciesId.SIMISEAR,
SpeciesId.SIMIPOUR,
SpeciesId.EXCADRILL,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.KROOKODILE,
SpeciesId.DARMANITAN,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEOPS,
SpeciesId.GARBODOR,
SpeciesId.ZOROARK,
SpeciesId.CINCCINO,
SpeciesId.GOTHITELLE,
SpeciesId.REUNICLUS,
SpeciesId.ESCAVALIER,
SpeciesId.HAXORUS,
SpeciesId.BEARTIC,
SpeciesId.ACCELGOR,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.BISHARP,
SpeciesId.HEATMOR,
SpeciesId.HYDREIGON,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.CHESNAUGHT,
SpeciesId.DELPHOX,
SpeciesId.PANGORO,
SpeciesId.BARBARACLE,
SpeciesId.DRAGALGE,
SpeciesId.CLAWITZER,
SpeciesId.HELIOLISK,
SpeciesId.HAWLUCHA,
SpeciesId.GOODRA,
SpeciesId.TREVENANT,
SpeciesId.GOURGEIST,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.INCINEROAR,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.MUDSDALE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.GOLISOPOD,
SpeciesId.TURTONATOR,
SpeciesId.DRAMPA,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.PHEROMOSA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.RILLABOOM,
SpeciesId.CINDERACE,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.GRIMMSNARL,
SpeciesId.MR_RIME,
SpeciesId.FALINKS,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.URSHIFU,
SpeciesId.SNEASLER,
SpeciesId.ENAMORUS,
SpeciesId.PAWMOT,
SpeciesId.ARMAROUGE,
SpeciesId.PALAFIN,
SpeciesId.ANNIHILAPE,
SpeciesId.KINGAMBIT,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_THORNS,
SpeciesId.GHOLDENGO,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.IRON_LEAVES,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.IRON_CROWN,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.ENERGY_BALL]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.BUTTERFREE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.TANGELA,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.BELLOSSOM,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.OCTILLERY,
SpeciesId.STANTLER,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.GARDEVOIR,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SABLEYE,
SpeciesId.MEDICHAM,
SpeciesId.ROSELIA,
SpeciesId.GRUMPIG,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.CASTFORM,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
[
SpeciesId.WORMADAM,
"plant",
],
SpeciesId.MOTHIM,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.MISMAGIUS,
SpeciesId.CHINGLING,
SpeciesId.CARNIVINE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.TANGROWTH,
SpeciesId.LEAFEON,
SpeciesId.GALLADE,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.MANAPHY,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.MARACTUS,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.DURANT,
SpeciesId.VIRIZION,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.VIVILLON,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.HOOPA,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.PRIMARINA,
SpeciesId.VIKAVOLT,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.MAGEARNA,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.ALCREMIE,
SpeciesId.INDEEDEE,
SpeciesId.ZARUDE,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.OINKOLOGNE,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.ARMAROUGE,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.RABSCA,
SpeciesId.ESPATHRA,
SpeciesId.GLIMMORA,
SpeciesId.FARIGIRAF,
SpeciesId.BRUTE_BONNET,
SpeciesId.FLUTTER_MANE,
SpeciesId.IRON_MOTH,
SpeciesId.WO_CHIEN,
SpeciesId.IRON_VALIANT,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.OGERPON,
SpeciesId.HYDRAPPLE,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_YAMASK,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.BRAVE_BIRD]: [
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CROBAT,
SpeciesId.MURKROW,
SpeciesId.DELIBIRD,
SpeciesId.SKARMORY,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.BLAZIKEN,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.HONCHKROW,
SpeciesId.UNFEZANT,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.HAWLUCHA,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.TAPU_KOKO,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.CRAMORANT,
SpeciesId.SIRFETCHD,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.SQUAWKABILLY,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.ESPATHRA,
SpeciesId.BOMBIRDIER,
SpeciesId.FLAMIGO,
SpeciesId.FEZANDIPITI,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.EARTH_POWER]: [
SpeciesId.VENUSAUR,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.ONIX,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SHUCKLE,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.STANTLER,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.NOSEPASS,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.GRUMPIG,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.RELICANTH,
SpeciesId.REGIROCK,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.BONSLY,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.ABOMASNOW,
SpeciesId.RHYPERIOR,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PROBOPASS,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.STUNFISK,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.TERRAKION,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.DIGGERSBY,
SpeciesId.BARBARACLE,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.CARBINK,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.VOLCANION,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.MINIOR,
SpeciesId.NECROZMA,
SpeciesId.RILLABOOM,
SpeciesId.DREDNAW,
SpeciesId.COALOSSAL,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CURSOLA,
SpeciesId.RUNERIGUS,
SpeciesId.STONJOURNER,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.REGIDRAGO,
SpeciesId.WYRDEER,
SpeciesId.URSALUNA,
SpeciesId.ENAMORUS,
SpeciesId.SKELEDIRGE,
SpeciesId.OINKOLOGNE,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.RABSCA,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMORA,
SpeciesId.CLODSIRE,
SpeciesId.DUDUNSPARCE,
SpeciesId.GREAT_TUSK,
SpeciesId.BRUTE_BONNET,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_THORNS,
SpeciesId.TING_LU,
SpeciesId.HYDRAPPLE,
SpeciesId.TERAPAGOS,
[
SpeciesId.WORMADAM,
"sandy",
],
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.GIGA_IMPACT]: [
SpeciesId.VENUSAUR,
SpeciesId.CHARIZARD,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEOT,
SpeciesId.RATICATE,
SpeciesId.FEAROW,
SpeciesId.ARBOK,
SpeciesId.RAICHU,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.CLEFABLE,
SpeciesId.NINETALES,
SpeciesId.WIGGLYTUFF,
SpeciesId.GOLBAT,
SpeciesId.VILEPLUME,
SpeciesId.PARASECT,
SpeciesId.VENOMOTH,
SpeciesId.DUGTRIO,
SpeciesId.PERSIAN,
SpeciesId.GOLDUCK,
SpeciesId.PRIMEAPE,
SpeciesId.ARCANINE,
SpeciesId.POLIWRATH,
SpeciesId.ALAKAZAM,
SpeciesId.MACHAMP,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACRUEL,
SpeciesId.GOLEM,
SpeciesId.RAPIDASH,
SpeciesId.SLOWBRO,
SpeciesId.MAGNETON,
SpeciesId.DODRIO,
SpeciesId.DEWGONG,
SpeciesId.MUK,
SpeciesId.CLOYSTER,
SpeciesId.GENGAR,
SpeciesId.HYPNO,
SpeciesId.KINGLER,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGUTOR,
SpeciesId.MAROWAK,
SpeciesId.LICKITUNG,
SpeciesId.WEEZING,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.SEADRA,
SpeciesId.SEAKING,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMASTAR,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.MEGANIUM,
SpeciesId.TYPHLOSION,
SpeciesId.FERALIGATR,
SpeciesId.FURRET,
SpeciesId.NOCTOWL,
SpeciesId.LEDIAN,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.LANTURN,
SpeciesId.TOGETIC,
SpeciesId.XATU,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.JUMPLUFF,
SpeciesId.SUNFLORA,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.STEELIX,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.URSARING,
SpeciesId.MAGCARGO,
SpeciesId.PILOSWINE,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.SCEPTILE,
SpeciesId.BLAZIKEN,
SpeciesId.SWAMPERT,
SpeciesId.MIGHTYENA,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LUDICOLO,
SpeciesId.SHIFTRY,
SpeciesId.SWELLOW,
SpeciesId.PELIPPER,
SpeciesId.GARDEVOIR,
SpeciesId.MASQUERAIN,
SpeciesId.BRELOOM,
SpeciesId.SLAKING,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.EXPLOUD,
SpeciesId.HARIYAMA,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.MEDICHAM,
SpeciesId.MANECTRIC,
SpeciesId.SWALOT,
SpeciesId.SHARPEDO,
SpeciesId.WAILORD,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.GRUMPIG,
SpeciesId.FLYGON,
SpeciesId.CACTURNE,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.WHISCASH,
SpeciesId.CRAWDAUNT,
SpeciesId.CLAYDOL,
SpeciesId.CRADILY,
SpeciesId.ARMALDO,
SpeciesId.MILOTIC,
SpeciesId.BANETTE,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.ABSOL,
SpeciesId.GLALIE,
SpeciesId.WALREIN,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TORTERRA,
SpeciesId.INFERNAPE,
SpeciesId.EMPOLEON,
SpeciesId.STARAPTOR,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.LUXRAY,
SpeciesId.ROSERADE,
SpeciesId.RAMPARDOS,
SpeciesId.BASTIODON,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.FLOATZEL,
SpeciesId.CHERRIM,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFBLIM,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.PURUGLY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZONG,
SpeciesId.SPIRITOMB,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.LUCARIO,
SpeciesId.HIPPOWDON,
SpeciesId.DRAPION,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.LUMINEON,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SERPERIOR,
SpeciesId.EMBOAR,
SpeciesId.SAMUROTT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.LIEPARD,
SpeciesId.SIMISAGE,
SpeciesId.SIMISEAR,
SpeciesId.SIMIPOUR,
SpeciesId.MUSHARNA,
SpeciesId.UNFEZANT,
SpeciesId.ZEBSTRIKA,
SpeciesId.GIGALITH,
SpeciesId.SWOOBAT,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.LEAVANNY,
SpeciesId.SCOLIPEDE,
SpeciesId.WHIMSICOTT,
SpeciesId.LILLIGANT,
SpeciesId.KROOKODILE,
SpeciesId.DARMANITAN,
SpeciesId.CRUSTLE,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.COFAGRIGUS,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEOPS,
SpeciesId.GARBODOR,
SpeciesId.ZOROARK,
SpeciesId.CINCCINO,
SpeciesId.GOTHITELLE,
SpeciesId.REUNICLUS,
SpeciesId.SWANNA,
SpeciesId.VANILLUXE,
SpeciesId.SAWSBUCK,
SpeciesId.ESCAVALIER,
SpeciesId.AMOONGUSS,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.GALVANTULA,
SpeciesId.FERROTHORN,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTROSS,
SpeciesId.BEHEEYEM,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.ACCELGOR,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLURK,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.BRAVIARY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.HYDREIGON,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESNAUGHT,
SpeciesId.DELPHOX,
SpeciesId.GRENINJA,
SpeciesId.DIGGERSBY,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.PYROAR,
SpeciesId.FLORGES,
SpeciesId.GOGOAT,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.MEOWSTIC,
SpeciesId.AEGISLASH,
SpeciesId.AROMATISSE,
SpeciesId.SLURPUFF,
SpeciesId.MALAMAR,
SpeciesId.BARBARACLE,
SpeciesId.DRAGALGE,
SpeciesId.CLAWITZER,
SpeciesId.HELIOLISK,
SpeciesId.TYRANTRUM,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.TREVENANT,
SpeciesId.GOURGEIST,
SpeciesId.AVALUGG,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.DECIDUEYE,
SpeciesId.INCINEROAR,
SpeciesId.PRIMARINA,
SpeciesId.GUMSHOOS,
SpeciesId.VIKAVOLT,
SpeciesId.CRABOMINABLE,
SpeciesId.RIBOMBEE,
SpeciesId.LYCANROC,
SpeciesId.TOXAPEX,
SpeciesId.MUDSDALE,
SpeciesId.LURANTIS,
SpeciesId.SHIINOTIC,
SpeciesId.SALAZZLE,
SpeciesId.BEWEAR,
SpeciesId.TSAREENA,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.GOLISOPOD,
SpeciesId.PALOSSAND,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.NAGANADEL,
SpeciesId.STAKATAKA,
SpeciesId.ZERAORA,
SpeciesId.MELMETAL,
SpeciesId.RILLABOOM,
SpeciesId.CINDERACE,
SpeciesId.INTELEON,
SpeciesId.GREEDENT,
SpeciesId.CORVIKNIGHT,
SpeciesId.ORBEETLE,
SpeciesId.THIEVUL,
SpeciesId.ELDEGOSS,
SpeciesId.DUBWOOL,
SpeciesId.DREDNAW,
SpeciesId.BOLTUND,
SpeciesId.COALOSSAL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SANDACONDA,
SpeciesId.CRAMORANT,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXTRICITY,
SpeciesId.CENTISKORCH,
SpeciesId.GRAPPLOCT,
SpeciesId.POLTEAGEIST,
SpeciesId.HATTERENE,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.ALCREMIE,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.FROSMOTH,
SpeciesId.STONJOURNER,
SpeciesId.EISCUE,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.BASCULEGION,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.MEOWSCARADA,
SpeciesId.SKELEDIRGE,
SpeciesId.QUAQUAVAL,
SpeciesId.OINKOLOGNE,
SpeciesId.SPIDOPS,
SpeciesId.LOKIX,
SpeciesId.PAWMOT,
SpeciesId.MAUSHOLD,
SpeciesId.DACHSBUN,
SpeciesId.ARBOLIVA,
SpeciesId.SQUAWKABILLY,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.BELLIBOLT,
SpeciesId.KILOWATTREL,
SpeciesId.MABOSSTIFF,
SpeciesId.GRAFAIAI,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.SCOVILLAIN,
SpeciesId.RABSCA,
SpeciesId.ESPATHRA,
SpeciesId.WUGTRIO,
SpeciesId.BOMBIRDIER,
SpeciesId.PALAFIN,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMORA,
SpeciesId.HOUNDSTONE,
SpeciesId.FLAMIGO,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.FLUTTER_MANE,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.BAXCALIBUR,
SpeciesId.GHOLDENGO,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.BLOODMOON_URSALUNA,
[
SpeciesId.BASCULIN,
"blue-striped",
"red-striped",
],
],
[MoveId.NASTY_PLOT]: [
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWBRO,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CROBAT,
SpeciesId.PICHU,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.AIPOM,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.SNEASEL,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.SMOOCHUM,
SpeciesId.CELEBI,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.GRUMPIG,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.LUNATONE,
SpeciesId.CRAWDAUNT,
SpeciesId.CLAYDOL,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DEOXYS,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.AMBIPOM,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.MIME_JR,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.TOGEKISS,
SpeciesId.PORYGON_Z,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DARKRAI,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.LANDORUS,
SpeciesId.DELPHOX,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.GOURGEIST,
SpeciesId.HOOPA,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.ORANGURU,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.PERRSERKER,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.MORPEKO,
SpeciesId.ZARUDE,
SpeciesId.SPECTRIER,
SpeciesId.SNEASLER,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.BOMBIRDIER,
SpeciesId.TATSUGIRI,
SpeciesId.FARIGIRAF,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.CHI_YU,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.HYDRAPPLE,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_YAMASK,
[
SpeciesId.CALYREX,
"shadow",
],
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.AVALANCHE]: [
SpeciesId.BLASTOISE,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.DEWGONG,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.RHYDON,
SpeciesId.KANGASKHAN,
SpeciesId.STARMIE,
SpeciesId.JYNX,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.ARTICUNO,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.FERALIGATR,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.DELIBIRD,
SpeciesId.SMOOCHUM,
SpeciesId.BLISSEY,
SpeciesId.SUICUNE,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.EXPLOUD,
SpeciesId.AGGRON,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.CRAWDAUNT,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.WALREIN,
SpeciesId.REGICE,
SpeciesId.KYOGRE,
SpeciesId.RAYQUAZA,
SpeciesId.DEOXYS,
SpeciesId.EMPOLEON,
SpeciesId.RAMPARDOS,
SpeciesId.BASTIODON,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.RHYPERIOR,
SpeciesId.GLACEON,
SpeciesId.MAMOSWINE,
SpeciesId.FROSLASS,
SpeciesId.PALKIA,
SpeciesId.REGIGIGAS,
SpeciesId.ARCEUS,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.CRABOMINABLE,
SpeciesId.MR_RIME,
SpeciesId.FROSMOTH,
SpeciesId.EISCUE,
SpeciesId.ARCTOZOLT,
SpeciesId.ARCTOVISH,
SpeciesId.GLASTRIER,
SpeciesId.URSALUNA,
SpeciesId.GARGANACL,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.DONDOZO,
SpeciesId.IRON_BUNDLE,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.CHIEN_PAO,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_NINETALES,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
[
SpeciesId.CALYREX,
"ice",
],
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_AVALUGG,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.SHADOW_CLAW]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.RHYDON,
SpeciesId.KANGASKHAN,
SpeciesId.MEW,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.AIPOM,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.TYRANITAR,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.LINOONE,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.SHEDINJA,
SpeciesId.SABLEYE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.ZANGOOSE,
SpeciesId.ARMALDO,
SpeciesId.KECLEON,
SpeciesId.BANETTE,
SpeciesId.ABSOL,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METAGROSS,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.AMBIPOM,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.RHYPERIOR,
SpeciesId.GALLADE,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.GIRATINA,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.LEAVANNY,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.COFAGRIGUS,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.FERROTHORN,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.DRUDDIGON,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.YVELTAL,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.BEWEAR,
SpeciesId.GOLISOPOD,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.KOMALA,
SpeciesId.MIMIKYU,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.LUNALA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MARSHADOW,
SpeciesId.NAGANADEL,
SpeciesId.BLACEPHALON,
SpeciesId.THIEVUL,
SpeciesId.HATTERENE,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.RUNERIGUS,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.SKELEDIRGE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.CERULEDGE,
SpeciesId.GRAFAIAI,
SpeciesId.KLAWF,
SpeciesId.ANNIHILAPE,
SpeciesId.KINGAMBIT,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
[
SpeciesId.LYCANROC,
"midnight",
],
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_LINOONE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.THUNDER_FANG]: [
SpeciesId.ARBOK,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.JOLTEON,
SpeciesId.AERODACTYL,
SpeciesId.MEW,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.DONPHAN,
SpeciesId.RAIKOU,
SpeciesId.TYRANITAR,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.EXPLOUD,
SpeciesId.MAWILE,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.SEVIPER,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.PACHIRISU,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.DRAPION,
SpeciesId.RHYPERIOR,
SpeciesId.GLISCOR,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.DRUDDIGON,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.ZEKROM,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.VOLCANION,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.SILVALLY,
SpeciesId.GREEDENT,
SpeciesId.THIEVUL,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.SANDACONDA,
SpeciesId.TOXTRICITY,
SpeciesId.CENTISKORCH,
SpeciesId.MORPEKO,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.REGIDRAGO,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.CYCLIZAR,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_THORNS,
SpeciesId.BAXCALIBUR,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.OKIDOGI,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
],
[MoveId.ICE_FANG]: [
SpeciesId.ARBOK,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.GYARADOS,
SpeciesId.AERODACTYL,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.DONPHAN,
SpeciesId.SUICUNE,
SpeciesId.TYRANITAR,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.EXPLOUD,
SpeciesId.MAWILE,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.SEVIPER,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.WALREIN,
SpeciesId.HUNTAIL,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.DRAPION,
SpeciesId.RHYPERIOR,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.FROSLASS,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.BASCULIN,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.SILVALLY,
SpeciesId.BRUXISH,
SpeciesId.GREEDENT,
SpeciesId.THIEVUL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.MORPEKO,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.REGIDRAGO,
SpeciesId.BASCULEGION,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.CHIEN_PAO,
SpeciesId.KORAIDON,
SpeciesId.OKIDOGI,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_AVALUGG,
],
[MoveId.FIRE_FANG]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.FLAREON,
SpeciesId.AERODACTYL,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.DONPHAN,
SpeciesId.ENTEI,
SpeciesId.TYRANITAR,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.EXPLOUD,
SpeciesId.MAWILE,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.SEVIPER,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.GROUDON,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.DRAPION,
SpeciesId.RHYPERIOR,
SpeciesId.GLISCOR,
SpeciesId.HEATRAN,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.DRUDDIGON,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.RESHIRAM,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.VOLCANION,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.SILVALLY,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.GREEDENT,
SpeciesId.THIEVUL,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.SANDACONDA,
SpeciesId.CENTISKORCH,
SpeciesId.MORPEKO,
SpeciesId.DRACOZOLT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.REGIDRAGO,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SCOVILLAIN,
SpeciesId.CYCLIZAR,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_THORNS,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.OKIDOGI,
SpeciesId.GOUGING_FIRE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
],
[MoveId.PSYCHO_CUT]: [
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.EXEGGUTOR,
SpeciesId.STARMIE,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.KABUTOPS,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.SCIZOR,
SpeciesId.SNEASEL,
SpeciesId.CELEBI,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.SPINDA,
SpeciesId.ABSOL,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.WEAVILE,
SpeciesId.GALLADE,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.CRESSELIA,
SpeciesId.LIEPARD,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.SIGILYPH,
SpeciesId.HAXORUS,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.DECIDUEYE,
SpeciesId.LURANTIS,
SpeciesId.TAPU_LELE,
SpeciesId.LUNALA,
SpeciesId.KARTANA,
SpeciesId.NECROZMA,
SpeciesId.ORBEETLE,
SpeciesId.HATTERENE,
SpeciesId.ZACIAN,
SpeciesId.SPECTRIER,
SpeciesId.KLEAVOR,
SpeciesId.CERULEDGE,
SpeciesId.VELUZA,
SpeciesId.IRON_VALIANT,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_ARTICUNO,
[
SpeciesId.CALYREX,
"shadow",
],
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.ZEN_HEADBUTT]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.EXEGGUTOR,
SpeciesId.LICKITUNG,
SpeciesId.CHANSEY,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.TAUROS,
SpeciesId.LAPRAS,
SpeciesId.PORYGON,
SpeciesId.SNORLAX,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CROBAT,
SpeciesId.CLEFFA,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.ESPEON,
SpeciesId.SLOWKING,
SpeciesId.GIRAFARIG,
SpeciesId.DUNSPARCE,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.SMOOCHUM,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.RELICANTH,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.BELDUM,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.GROUDON,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.HAPPINY,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.LICKILICKY,
SpeciesId.TOGEKISS,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.REGIGIGAS,
SpeciesId.CRESSELIA,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.BASCULIN,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.ALOMOMOLA,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.GOLURK,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.HAWLUCHA,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.HOOPA,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.ORANGURU,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TOGEDEMARU,
SpeciesId.TAPU_BULU,
SpeciesId.SOLGALEO,
SpeciesId.NIHILEGO,
SpeciesId.CELESTEELA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.STAKATAKA,
SpeciesId.BLACEPHALON,
SpeciesId.CINDERACE,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.DUBWOOL,
SpeciesId.APPLETUN,
SpeciesId.SANDACONDA,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.FALINKS,
SpeciesId.EISCUE,
SpeciesId.INDEEDEE,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.GLASTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.ENAMORUS,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.SLITHER_WING,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_JUGULIS,
SpeciesId.BAXCALIBUR,
SpeciesId.WO_CHIEN,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.OGERPON,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.PALDEA_TAUROS,
],
[MoveId.FLASH_CANNON]: [
SpeciesId.BLASTOISE,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.ONIX,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MEW,
SpeciesId.FORRETRESS,
SpeciesId.STEELIX,
SpeciesId.SCIZOR,
SpeciesId.OCTILLERY,
SpeciesId.SKARMORY,
SpeciesId.KINGDRA,
SpeciesId.NOSEPASS,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.ARMALDO,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.EMPOLEON,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.LUCARIO,
SpeciesId.MAGNEZONE,
SpeciesId.RHYPERIOR,
SpeciesId.PROBOPASS,
SpeciesId.DIALGA,
SpeciesId.HEATRAN,
SpeciesId.ARCEUS,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.SIGILYPH,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.BEHEEYEM,
SpeciesId.CRYOGONAL,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.DURANT,
SpeciesId.HYDREIGON,
SpeciesId.COBALION,
SpeciesId.THUNDURUS,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.GENESECT,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.CARBINK,
SpeciesId.KLEFKI,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.XERNEAS,
SpeciesId.DIANCIE,
SpeciesId.VOLCANION,
SpeciesId.TOUCANNON,
SpeciesId.VIKAVOLT,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.SILVALLY,
SpeciesId.TURTONATOR,
SpeciesId.DHELMISE,
SpeciesId.KOMMO_O,
SpeciesId.SOLGALEO,
SpeciesId.CELESTEELA,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.STAKATAKA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.CORVIKNIGHT,
SpeciesId.PERRSERKER,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DURALUDON,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.ARMAROUGE,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMORA,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.GHOLDENGO,
SpeciesId.MIRAIDON,
SpeciesId.ARCHALUDON,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
[
SpeciesId.WORMADAM,
"trash",
],
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
],
[MoveId.ROCK_CLIMB]: [
SpeciesId.VENUSAUR,
SpeciesId.BLASTOISE,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.ARCANINE,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.ONIX,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.OMASTAR,
SpeciesId.KABUTOPS,
SpeciesId.SNORLAX,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.MEGANIUM,
SpeciesId.TYPHLOSION,
SpeciesId.FERALIGATR,
SpeciesId.AMPHAROS,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.GRANBULL,
SpeciesId.URSARING,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.TYRANITAR,
SpeciesId.SCEPTILE,
SpeciesId.BLAZIKEN,
SpeciesId.SWAMPERT,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.LUDICOLO,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AGGRON,
SpeciesId.ZANGOOSE,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.GROUDON,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.EMPOLEON,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.LUCARIO,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.ABOMASNOW,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.DRUDDIGON,
SpeciesId.BOUFFALANT,
SpeciesId.DURANT,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.OBSTAGOON,
SpeciesId.URSALUNA,
SpeciesId.ANNIHILAPE,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.PALDEA_TAUROS,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.DEFOG]: [
SpeciesId.CHARIZARD,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.VENOMOTH,
SpeciesId.FARFETCHD,
SpeciesId.SCYTHER,
SpeciesId.AERODACTYL,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDIAN,
SpeciesId.CROBAT,
SpeciesId.TOGETIC,
SpeciesId.XATU,
SpeciesId.YANMA,
SpeciesId.MURKROW,
SpeciesId.GLIGAR,
SpeciesId.SCIZOR,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.MASQUERAIN,
SpeciesId.NINJASK,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.CASTFORM,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.SALAMENCE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.RAYQUAZA,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.HONCHKROW,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.CHATOT,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.GLISCOR,
SpeciesId.ROTOM,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.SIGILYPH,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.EMOLGA,
SpeciesId.CRYOGONAL,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HYDREIGON,
SpeciesId.VOLCARONA,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.FLORGES,
SpeciesId.HAWLUCHA,
SpeciesId.KLEFKI,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.COMFEY,
SpeciesId.SILVALLY,
SpeciesId.DRAMPA,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_FINI,
SpeciesId.LUNALA,
SpeciesId.KARTANA,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.CRAMORANT,
SpeciesId.SIRFETCHD,
SpeciesId.FROSMOTH,
SpeciesId.KLEAVOR,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_WEEZING,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.TRICK_ROOM]: [
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.PORYGON,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.ESPEON,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.SMOOCHUM,
SpeciesId.CELEBI,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.CHIMECHO,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.SPIRITOMB,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.CRESSELIA,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.WHIMSICOTT,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.KLINKLANG,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.MELOETTA,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.CARBINK,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.STAKATAKA,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.INDEEDEE,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.MEOWSCARADA,
SpeciesId.ARMAROUGE,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.FARIGIRAF,
SpeciesId.SCREAM_TAIL,
SpeciesId.FLUTTER_MANE,
SpeciesId.IRON_VALIANT,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_YAMASK,
],
[MoveId.DRACO_METEOR]: [
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.KINGDRA,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.ALTARIA,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.RAYQUAZA,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.DRUDDIGON,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.DRAGALGE,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.ZYGARDE,
SpeciesId.SILVALLY,
SpeciesId.TURTONATOR,
SpeciesId.DRAMPA,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.GUZZLORD,
SpeciesId.NAGANADEL,
SpeciesId.APPLIN,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.DRACOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.DURALUDON,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ETERNATUS,
SpeciesId.REGIDRAGO,
SpeciesId.CYCLIZAR,
SpeciesId.TATSUGIRI,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.DIPPLIN,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
],
[MoveId.LEAF_STORM]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.TANGELA,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.BELLOSSOM,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.BRELOOM,
SpeciesId.ROSELIA,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.TROPIUS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
[
SpeciesId.WORMADAM,
"plant",
],
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.TANGROWTH,
SpeciesId.LEAFEON,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.LEAVANNY,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.MARACTUS,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.VIRIZION,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.TREVENANT,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.ZARUDE,
SpeciesId.CALYREX,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.BRUTE_BONNET,
SpeciesId.WO_CHIEN,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.OGERPON,
SpeciesId.HYDRAPPLE,
SpeciesId.SHAYMIN,
[
SpeciesId.ROTOM,
"mow",
],
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.POWER_WHIP]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.EXEGGUTOR,
SpeciesId.LICKITUNG,
SpeciesId.TANGELA,
SpeciesId.GYARADOS,
SpeciesId.MEW,
SpeciesId.ROSELIA,
SpeciesId.CRADILY,
SpeciesId.ROSERADE,
SpeciesId.CARNIVINE,
SpeciesId.LICKILICKY,
SpeciesId.TANGROWTH,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.FERROTHORN,
SpeciesId.GOODRA,
SpeciesId.GOURGEIST,
SpeciesId.TSAREENA,
SpeciesId.DHELMISE,
SpeciesId.XURKITREE,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.HATTERENE,
SpeciesId.GRIMMSNARL,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.ZARUDE,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.CYCLIZAR,
SpeciesId.WO_CHIEN,
SpeciesId.OGERPON,
SpeciesId.ALOLA_EXEGGUTOR,
],
[MoveId.CROSS_POISON]: [
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.MACHAMP,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.SCYTHER,
SpeciesId.KABUTOPS,
SpeciesId.MEW,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.GLIGAR,
SpeciesId.SCIZOR,
SpeciesId.SCEPTILE,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.VESPIQUEN,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.TOXICROAK,
SpeciesId.GLISCOR,
SpeciesId.SCOLIPEDE,
SpeciesId.GARBODOR,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.TOXAPEX,
SpeciesId.LURANTIS,
SpeciesId.SALAZZLE,
SpeciesId.NIHILEGO,
SpeciesId.NAGANADEL,
SpeciesId.OBSTAGOON,
SpeciesId.ETERNATUS,
SpeciesId.KLEAVOR,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.FEZANDIPITI,
],
[MoveId.GUNK_SHOT]: [
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.SANDSLASH,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.SNORLAX,
SpeciesId.MEW,
SpeciesId.AIPOM,
SpeciesId.GLIGAR,
SpeciesId.QWILFISH,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.PELIPPER,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PACHIRISU,
SpeciesId.AMBIPOM,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.MUNCHLAX,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.GLISCOR,
SpeciesId.ARCEUS,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.KROOKODILE,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.DRUDDIGON,
SpeciesId.GENESECT,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.DIGGERSBY,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.HOOPA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.PASSIMIAN,
SpeciesId.KOMALA,
SpeciesId.NIHILEGO,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.TOXTRICITY,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.ETERNATUS,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.PECHARUNT,
[
SpeciesId.WORMADAM,
"trash",
],
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.IRON_HEAD]: [
SpeciesId.ARCANINE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.ONIX,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.FORRETRESS,
SpeciesId.STEELIX,
SpeciesId.SCIZOR,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.MILTANK,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.HARIYAMA,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.MILOTIC,
SpeciesId.GLALIE,
SpeciesId.WALREIN,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.BELDUM,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.HIPPOWDON,
SpeciesId.MAGNEZONE,
SpeciesId.RHYPERIOR,
SpeciesId.MAMOSWINE,
SpeciesId.PROBOPASS,
SpeciesId.DIALGA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.EMBOAR,
SpeciesId.STOUTLAND,
SpeciesId.GIGALITH,
SpeciesId.EXCADRILL,
SpeciesId.DARMANITAN,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.CARRACOSTA,
SpeciesId.ESCAVALIER,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.DRUDDIGON,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.BRAVIARY,
SpeciesId.DURANT,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.KYUREM,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.HAWLUCHA,
SpeciesId.CARBINK,
SpeciesId.AVALUGG,
SpeciesId.INCINEROAR,
SpeciesId.GUMSHOOS,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.PASSIMIAN,
SpeciesId.GOLISOPOD,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.SOLGALEO,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.CELESTEELA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.STAKATAKA,
SpeciesId.MELMETAL,
SpeciesId.CINDERACE,
SpeciesId.CORVIKNIGHT,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.APPLETUN,
SpeciesId.SANDACONDA,
SpeciesId.PERRSERKER,
SpeciesId.FALINKS,
SpeciesId.EISCUE,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ENAMORUS,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.CERULEDGE,
SpeciesId.PALAFIN,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_THORNS,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.GHOLDENGO,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.OKIDOGI,
SpeciesId.ARCHALUDON,
SpeciesId.GOUGING_FIRE,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
[
SpeciesId.WORMADAM,
"trash",
],
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.PALDEA_TAUROS,
],
[MoveId.STONE_EDGE]: [
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.ONIX,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.SUDOWOODO,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.GRANBULL,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.HITMONTOP,
SpeciesId.ENTEI,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.BLAZIKEN,
SpeciesId.SWAMPERT,
SpeciesId.BRELOOM,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.NOSEPASS,
SpeciesId.MAWILE,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CLAYDOL,
SpeciesId.CRADILY,
SpeciesId.ARMALDO,
SpeciesId.ABSOL,
SpeciesId.RELICANTH,
SpeciesId.SALAMENCE,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.TORTERRA,
SpeciesId.INFERNAPE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.BONSLY,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.TOXICROAK,
SpeciesId.RHYPERIOR,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARMANITAN,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.BEARTIC,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.DURANT,
SpeciesId.HYDREIGON,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.HAWLUCHA,
SpeciesId.CARBINK,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.VOLCANION,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.MINIOR,
SpeciesId.TURTONATOR,
SpeciesId.TAPU_BULU,
SpeciesId.SOLGALEO,
SpeciesId.BUZZWOLE,
SpeciesId.CELESTEELA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MARSHADOW,
SpeciesId.STAKATAKA,
SpeciesId.DREDNAW,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CURSOLA,
SpeciesId.RUNERIGUS,
SpeciesId.STONJOURNER,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.ZAMAZENTA,
SpeciesId.URSHIFU,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.KLAWF,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.BOMBIRDIER,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_THORNS,
SpeciesId.TING_LU,
SpeciesId.ROARING_MOON,
SpeciesId.ARCHALUDON,
SpeciesId.GOUGING_FIRE,
SpeciesId.IRON_BOULDER,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_AVALUGG,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.STEALTH_ROCK]: [
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.PRIMEAPE,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.ONIX,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.PINSIR,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.MEW,
SpeciesId.SUDOWOODO,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SHUCKLE,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.SKARMORY,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.CELEBI,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.NOSEPASS,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.KECLEON,
SpeciesId.RELICANTH,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGISTEEL,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.RHYPERIOR,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PROBOPASS,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.HEATRAN,
SpeciesId.ARCEUS,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.STUNFISK,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.HYDREIGON,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.CARBINK,
SpeciesId.DIANCIE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.MINIOR,
SpeciesId.KOMMO_O,
SpeciesId.NIHILEGO,
SpeciesId.NECROZMA,
SpeciesId.STAKATAKA,
SpeciesId.DREDNAW,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.RUNERIGUS,
SpeciesId.STONJOURNER,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DURALUDON,
SpeciesId.KLEAVOR,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.KLAWF,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.BOMBIRDIER,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_THORNS,
SpeciesId.TING_LU,
SpeciesId.ARCHALUDON,
SpeciesId.TERAPAGOS,
[
SpeciesId.WORMADAM,
"sandy",
"trash",
],
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_AVALUGG,
SpeciesId.PALDEA_WOOPER,
],
[MoveId.GRASS_KNOT]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.GOLDUCK,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.ESPEON,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.SMOOCHUM,
SpeciesId.BLISSEY,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.MAWILE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.ROSELIA,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.KECLEON,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
[
SpeciesId.WORMADAM,
"plant",
],
SpeciesId.PACHIRISU,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CARNIVINE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.TANGROWTH,
SpeciesId.TOGEKISS,
SpeciesId.LEAFEON,
SpeciesId.GALLADE,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.COFAGRIGUS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.REUNICLUS,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FERROTHORN,
SpeciesId.EELEKTROSS,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.LANDORUS,
SpeciesId.MELOETTA,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.XERNEAS,
SpeciesId.ZYGARDE,
SpeciesId.HOOPA,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.PASSIMIAN,
SpeciesId.TOGEDEMARU,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.NIHILEGO,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.THIEVUL,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.OBSTAGOON,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.ZARUDE,
SpeciesId.CALYREX,
SpeciesId.SNEASLER,
SpeciesId.ENAMORUS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.PALAFIN,
SpeciesId.FARIGIRAF,
SpeciesId.KINGAMBIT,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.WO_CHIEN,
SpeciesId.IRON_VALIANT,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.MUNKIDORI,
SpeciesId.OGERPON,
SpeciesId.HYDRAPPLE,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.BUG_BITE]: [
SpeciesId.CATERPIE,
SpeciesId.METAPOD,
SpeciesId.BUTTERFREE,
SpeciesId.WEEDLE,
SpeciesId.KAKUNA,
SpeciesId.BEEDRILL,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.SCYTHER,
SpeciesId.PINSIR,
SpeciesId.MEW,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.YANMA,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.GLIGAR,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.WURMPLE,
SpeciesId.SILCOON,
SpeciesId.BEAUTIFLY,
SpeciesId.CASCOON,
SpeciesId.DUSTOX,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.KRICKETOT,
SpeciesId.KRICKETUNE,
SpeciesId.BURMY,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.COMBEE,
SpeciesId.VESPIQUEN,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CARNIVINE,
SpeciesId.YANMEGA,
SpeciesId.GLISCOR,
SpeciesId.HEATRAN,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.GENESECT,
SpeciesId.SCATTERBUG,
SpeciesId.SPEWPA,
SpeciesId.VIVILLON,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.GOLISOPOD,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.KLEAVOR,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.SLITHER_WING,
SpeciesId.DIPPLIN,
SpeciesId.HYDRAPPLE,
],
[MoveId.CHARGE_BEAM]: [
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.CHANSEY,
SpeciesId.MR_MIME,
SpeciesId.ELECTABUZZ,
SpeciesId.JOLTEON,
SpeciesId.PORYGON,
SpeciesId.ZAPDOS,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.DUNSPARCE,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.ELEKID,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.MAWILE,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.PACHIRISU,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.MAGNEZONE,
SpeciesId.ELECTIVIRE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.SIGILYPH,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.EMOLGA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.TYNAMO,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.DRUDDIGON,
SpeciesId.GOLURK,
SpeciesId.HYDREIGON,
SpeciesId.THUNDURUS,
SpeciesId.ZEKROM,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.DEDENNE,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.HOOPA,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.SHIINOTIC,
SpeciesId.ORANGURU,
SpeciesId.MINIOR,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.TAPU_LELE,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.XURKITREE,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.TOXTRICITY,
SpeciesId.PINCURCHIN,
SpeciesId.MORPEKO,
SpeciesId.REGIELEKI,
SpeciesId.WYRDEER,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.FARIGIRAF,
SpeciesId.FLUTTER_MANE,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.GHOLDENGO,
SpeciesId.IRON_VALIANT,
SpeciesId.MIRAIDON,
SpeciesId.RAGING_BOLT,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
],
[MoveId.HONE_CLAWS]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.AIPOM,
SpeciesId.GLIGAR,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.TYRANITAR,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.SABLEYE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.FLYGON,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.KECLEON,
SpeciesId.ABSOL,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.KRICKETUNE,
SpeciesId.VESPIQUEN,
SpeciesId.AMBIPOM,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.LUCARIO,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.WEAVILE,
SpeciesId.GLISCOR,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.LEAVANNY,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.EELEKTROSS,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.COBALION,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.TALONFLAME,
SpeciesId.PANGORO,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.HAWLUCHA,
SpeciesId.TREVENANT,
SpeciesId.NOIVERN,
SpeciesId.YVELTAL,
SpeciesId.MIMIKYU,
SpeciesId.ZERAORA,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.DURALUDON,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.BOMBIRDIER,
SpeciesId.KINGAMBIT,
SpeciesId.WALKING_WAKE,
SpeciesId.ARCHALUDON,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_LINOONE,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
],
[MoveId.WONDER_ROOM]: [
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.PORYGON,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CLEFFA,
SpeciesId.UMBREON,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.PORYGON2,
SpeciesId.SMOOCHUM,
SpeciesId.LUGIA,
SpeciesId.CELEBI,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SABLEYE,
SpeciesId.ALTARIA,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.KECLEON,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.LATIOS,
SpeciesId.DEOXYS,
SpeciesId.MISMAGIUS,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.SPIRITOMB,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DARKRAI,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.MELOETTA,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.CARBINK,
SpeciesId.XERNEAS,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.ORANGURU,
SpeciesId.BRUXISH,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_FINI,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.STAKATAKA,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATTERENE,
SpeciesId.GRIMMSNARL,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.ALCREMIE,
SpeciesId.STONJOURNER,
SpeciesId.INDEEDEE,
SpeciesId.CALYREX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_YAMASK,
],
[MoveId.PSYSHOCK]: [
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.PORYGON,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CLEFFA,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.ESPEON,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.SMOOCHUM,
SpeciesId.LUGIA,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.CHIMECHO,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.MISMAGIUS,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.SPIRITOMB,
SpeciesId.TOGEKISS,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.CRESSELIA,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.SIGILYPH,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.MELOETTA,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.AROMATISSE,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.SYLVEON,
SpeciesId.KLEFKI,
SpeciesId.XERNEAS,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.ORANGURU,
SpeciesId.BRUXISH,
SpeciesId.TAPU_LELE,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.BLACEPHALON,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.MR_RIME,
SpeciesId.ALCREMIE,
SpeciesId.INDEEDEE,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.ARMAROUGE,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.FARIGIRAF,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.FLUTTER_MANE,
SpeciesId.GHOLDENGO,
SpeciesId.IRON_VALIANT,
SpeciesId.MUNKIDORI,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.HISUI_BRAVIARY,
],
[MoveId.VENOSHOCK]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.MEW,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.BELLOSSOM,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.GLIGAR,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SEVIPER,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.GLISCOR,
SpeciesId.SEISMITOAD,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.GOLISOPOD,
SpeciesId.TURTONATOR,
SpeciesId.BRUXISH,
SpeciesId.NIHILEGO,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.TOXTRICITY,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.PINCURCHIN,
SpeciesId.ETERNATUS,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.CLODSIRE,
SpeciesId.BRUTE_BONNET,
SpeciesId.IRON_MOTH,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_SLOWKING,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.PALDEA_WOOPER,
],
[MoveId.MAGIC_ROOM]: [
SpeciesId.WIGGLYTUFF,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.ESPEON,
SpeciesId.MISDREAVUS,
SpeciesId.STANTLER,
SpeciesId.SMOOCHUM,
SpeciesId.CELEBI,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.LUNATONE,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.LATIAS,
SpeciesId.JIRACHI,
SpeciesId.MISMAGIUS,
SpeciesId.MIME_JR,
SpeciesId.GALLADE,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.CRESSELIA,
SpeciesId.SIGILYPH,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.MELOETTA,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.KLEFKI,
SpeciesId.HOOPA,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.ORANGURU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_FINI,
SpeciesId.LUNALA,
SpeciesId.STAKATAKA,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.HATTERENE,
SpeciesId.MR_RIME,
SpeciesId.ALCREMIE,
SpeciesId.INDEEDEE,
SpeciesId.CALYREX,
SpeciesId.ALOLA_RAICHU,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_MR_MIME,
],
[MoveId.SMACK_DOWN]: [
SpeciesId.BLASTOISE,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.ONIX,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.PINSIR,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.MEW,
SpeciesId.SUDOWOODO,
SpeciesId.AIPOM,
SpeciesId.STEELIX,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.SLAKING,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.NOSEPASS,
SpeciesId.AGGRON,
SpeciesId.CAMERUPT,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.RELICANTH,
SpeciesId.REGIROCK,
SpeciesId.GROUDON,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.AMBIPOM,
SpeciesId.BONSLY,
SpeciesId.RHYPERIOR,
SpeciesId.MAMOSWINE,
SpeciesId.PROBOPASS,
SpeciesId.REGIGIGAS,
SpeciesId.EMBOAR,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.KROOKODILE,
SpeciesId.DARMANITAN,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.GARBODOR,
SpeciesId.DRUDDIGON,
SpeciesId.TERRAKION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.LANDORUS,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.CARBINK,
SpeciesId.DIANCIE,
SpeciesId.VOLCANION,
SpeciesId.DECIDUEYE,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.PASSIMIAN,
SpeciesId.TURTONATOR,
SpeciesId.BUZZWOLE,
SpeciesId.CELESTEELA,
SpeciesId.GUZZLORD,
SpeciesId.MARSHADOW,
SpeciesId.STAKATAKA,
SpeciesId.BLACEPHALON,
SpeciesId.CINDERACE,
SpeciesId.INTELEON,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.STONJOURNER,
SpeciesId.COPPERAJAH,
SpeciesId.KLEAVOR,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.KLAWF,
SpeciesId.TINKATON,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.ANNIHILAPE,
SpeciesId.GREAT_TUSK,
SpeciesId.IRON_THORNS,
SpeciesId.ARCHALUDON,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.SLUDGE_WAVE]: [
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.VILEPLUME,
SpeciesId.VENOMOTH,
SpeciesId.DUGTRIO,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.MEW,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.QWILFISH,
SpeciesId.SHUCKLE,
SpeciesId.OCTILLERY,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.SEVIPER,
SpeciesId.CRAWDAUNT,
SpeciesId.CRADILY,
SpeciesId.GASTRODON,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.STUNFISK,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.LANDORUS,
SpeciesId.GRENINJA,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.ZYGARDE,
SpeciesId.VOLCANION,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.GOLISOPOD,
SpeciesId.DHELMISE,
SpeciesId.NIHILEGO,
SpeciesId.GUZZLORD,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.TOXTRICITY,
SpeciesId.ETERNATUS,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.CLODSIRE,
SpeciesId.IRON_MOTH,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.PALDEA_WOOPER,
],
[MoveId.HEAVY_SLAM]: [
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.ONIX,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.SNORLAX,
SpeciesId.MEW,
SpeciesId.FORRETRESS,
SpeciesId.STEELIX,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.MILTANK,
SpeciesId.TYRANITAR,
SpeciesId.SLAKING,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.NOSEPASS,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.WALREIN,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.HIPPOWDON,
SpeciesId.MAGNEZONE,
SpeciesId.RHYPERIOR,
SpeciesId.MAMOSWINE,
SpeciesId.PROBOPASS,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.ARCEUS,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.CRUSTLE,
SpeciesId.FERROTHORN,
SpeciesId.EELEKTROSS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.COBALION,
SpeciesId.CARBINK,
SpeciesId.AVALUGG,
SpeciesId.VOLCANION,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.TURTONATOR,
SpeciesId.DHELMISE,
SpeciesId.SOLGALEO,
SpeciesId.CELESTEELA,
SpeciesId.GUZZLORD,
SpeciesId.MAGEARNA,
SpeciesId.STAKATAKA,
SpeciesId.MELMETAL,
SpeciesId.CORVIKNIGHT,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.PERRSERKER,
SpeciesId.STONJOURNER,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DURALUDON,
SpeciesId.ZAMAZENTA,
SpeciesId.GLASTRIER,
SpeciesId.URSALUNA,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.TINKATON,
SpeciesId.REVAVROOM,
SpeciesId.ORTHWORM,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.DONDOZO,
SpeciesId.CLODSIRE,
SpeciesId.DUDUNSPARCE,
SpeciesId.GREAT_TUSK,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_THORNS,
SpeciesId.GHOLDENGO,
SpeciesId.TING_LU,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_GOLEM,
[
SpeciesId.CALYREX,
"ice",
],
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.ELECTRO_BALL]: [
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.ELECTABUZZ,
SpeciesId.JOLTEON,
SpeciesId.ZAPDOS,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.ELEKID,
SpeciesId.RAIKOU,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.PACHIRISU,
SpeciesId.MAGNEZONE,
SpeciesId.ELECTIVIRE,
SpeciesId.ROTOM,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.EMOLGA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.THUNDURUS,
SpeciesId.ZEKROM,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.DEDENNE,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.TOGEDEMARU,
SpeciesId.TAPU_KOKO,
SpeciesId.XURKITREE,
SpeciesId.MAGEARNA,
SpeciesId.ZERAORA,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.TOXTRICITY,
SpeciesId.PINCURCHIN,
SpeciesId.MORPEKO,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.REGIELEKI,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.RABSCA,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_THORNS,
SpeciesId.GHOLDENGO,
SpeciesId.MIRAIDON,
SpeciesId.RAGING_BOLT,
SpeciesId.ALOLA_RAICHU,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
],
[MoveId.FLAME_CHARGE]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.MAGMAR,
SpeciesId.FLAREON,
SpeciesId.MOLTRES,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.MAGBY,
SpeciesId.ENTEI,
SpeciesId.HO_OH,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.MAGMORTAR,
SpeciesId.HEATRAN,
SpeciesId.VICTINI,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.RESHIRAM,
SpeciesId.GENESECT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.VOLCANION,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.TURTONATOR,
SpeciesId.SOLGALEO,
SpeciesId.CELESTEELA,
SpeciesId.BLACEPHALON,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.YAMPER,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.SLITHER_WING,
SpeciesId.IRON_MOTH,
SpeciesId.CHI_YU,
SpeciesId.KORAIDON,
SpeciesId.GOUGING_FIRE,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
[
SpeciesId.PALDEA_TAUROS,
"blaze",
],
],
[MoveId.LOW_SWEEP]: [
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.SNEASEL,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.BRELOOM,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.GRUMPIG,
SpeciesId.ZANGOOSE,
SpeciesId.DEOXYS,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.GALLADE,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.ZOROARK,
SpeciesId.GOTHITELLE,
SpeciesId.HAXORUS,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.MELOETTA,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.GRENINJA,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.HAWLUCHA,
SpeciesId.DECIDUEYE,
SpeciesId.INCINEROAR,
SpeciesId.GUMSHOOS,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.LURANTIS,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.PASSIMIAN,
SpeciesId.KOMALA,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.GRIMMSNARL,
SpeciesId.STONJOURNER,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.SNEASLER,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.LOKIX,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.GRAFAIAI,
SpeciesId.FLAMIGO,
SpeciesId.ANNIHILAPE,
SpeciesId.KINGAMBIT,
SpeciesId.SLITHER_WING,
SpeciesId.IRON_HANDS,
SpeciesId.GHOLDENGO,
SpeciesId.KORAIDON,
SpeciesId.OKIDOGI,
SpeciesId.OGERPON,
[
SpeciesId.LYCANROC,
"midnight",
],
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_SLOWKING,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.ACID_SPRAY]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.MAGMAR,
SpeciesId.MEW,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.BELLOSSOM,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.QWILFISH,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.MAGBY,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.SEVIPER,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.MAGMORTAR,
SpeciesId.ARCEUS,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ACCELGOR,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.NIHILEGO,
SpeciesId.FLAPPLE,
SpeciesId.TOXTRICITY,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ARMAROUGE,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.CLODSIRE,
SpeciesId.IRON_MOTH,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_SLOWKING,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.PALDEA_WOOPER,
],
[MoveId.FOUL_PLAY]: [
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.MR_MIME,
SpeciesId.PORYGON,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.XATU,
SpeciesId.SUDOWOODO,
SpeciesId.AIPOM,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.SNEASEL,
SpeciesId.DELIBIRD,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.PORYGON2,
SpeciesId.TYRANITAR,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.MASQUERAIN,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.ABSOL,
SpeciesId.GLALIE,
SpeciesId.AMBIPOM,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BONSLY,
SpeciesId.SPIRITOMB,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.PORYGON_Z,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.STUNFISK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.DIGGERSBY,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.YVELTAL,
SpeciesId.HOOPA,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.ORANGURU,
SpeciesId.NIHILEGO,
SpeciesId.PHEROMOSA,
SpeciesId.MARSHADOW,
SpeciesId.BLACEPHALON,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.PERRSERKER,
SpeciesId.MR_RIME,
SpeciesId.MORPEKO,
SpeciesId.DURALUDON,
SpeciesId.SPECTRIER,
SpeciesId.MEOWSCARADA,
SpeciesId.SQUAWKABILLY,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.BOMBIRDIER,
SpeciesId.FARIGIRAF,
SpeciesId.KINGAMBIT,
SpeciesId.WO_CHIEN,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.ARCHALUDON,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_MUK,
[
SpeciesId.LYCANROC,
"midnight",
],
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_STUNFISK,
[
SpeciesId.URSHIFU,
"single-strike",
],
[
SpeciesId.CALYREX,
"shadow",
],
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
],
[MoveId.ROUND]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.STAKATAKA,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXEL,
SpeciesId.TOXTRICITY,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.STONJOURNER,
SpeciesId.EISCUE,
SpeciesId.INDEEDEE,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
],
[MoveId.ECHOED_VOICE]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.CHANSEY,
SpeciesId.JYNX,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.POLITOED,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.SMOOCHUM,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.RAYQUAZA,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.MISMAGIUS,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.TOGEKISS,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GALLADE,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.AUDINO,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.HYDREIGON,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.MELOETTA,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.COMFEY,
SpeciesId.DRAMPA,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.NIHILEGO,
SpeciesId.PHEROMOSA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.ZERAORA,
SpeciesId.ARCTOZOLT,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
],
[MoveId.STORED_POWER]: [
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CHANSEY,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CLEFFA,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.DUNSPARCE,
SpeciesId.STANTLER,
SpeciesId.SMOOCHUM,
SpeciesId.BLISSEY,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.CLAYDOL,
SpeciesId.CHIMECHO,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.SPIRITOMB,
SpeciesId.TOGEKISS,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GALLADE,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.CRESSELIA,
SpeciesId.MANAPHY,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.SIGILYPH,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.MEOWSTIC,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.SYLVEON,
SpeciesId.KLEFKI,
SpeciesId.DIANCIE,
SpeciesId.PRIMARINA,
SpeciesId.RIBOMBEE,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.BLACEPHALON,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.TOXTRICITY,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.MR_RIME,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.INDEEDEE,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.VELUZA,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.SCREAM_TAIL,
SpeciesId.FLUTTER_MANE,
SpeciesId.IRON_VALIANT,
SpeciesId.MUNKIDORI,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.HISUI_BRAVIARY,
],
[MoveId.ALLY_SWITCH]: [
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.MAROWAK,
SpeciesId.CHANSEY,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.PORYGON,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.ESPEON,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.FORRETRESS,
SpeciesId.PORYGON2,
SpeciesId.TYROGUE,
SpeciesId.BLISSEY,
SpeciesId.CELEBI,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SHEDINJA,
SpeciesId.SABLEYE,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.CHIMECHO,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.WORMADAM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.SPIRITOMB,
SpeciesId.MAGNEZONE,
SpeciesId.TOGEKISS,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.CRESSELIA,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.ZEBSTRIKA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.AUDINO,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.BRUXISH,
SpeciesId.DHELMISE,
SpeciesId.TAPU_LELE,
SpeciesId.NIHILEGO,
SpeciesId.NECROZMA,
SpeciesId.NAGANADEL,
SpeciesId.STAKATAKA,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.INDEEDEE,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.CALYREX,
SpeciesId.SPRIGATITO,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.FLITTLE,
SpeciesId.GREAVARD,
SpeciesId.IRON_LEAVES,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_YAMASK,
],
[MoveId.SCALD]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.GYARADOS,
SpeciesId.VAPOREON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.QWILFISH,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.MANTINE,
SpeciesId.KINGDRA,
SpeciesId.RAIKOU,
SpeciesId.SUICUNE,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.AZURILL,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.KYOGRE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BIBAREL,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.BASCULIN,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.STUNFISK,
SpeciesId.KELDEO,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.GOODRA,
SpeciesId.VOLCANION,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.BRUXISH,
SpeciesId.TAPU_FINI,
SpeciesId.INTELEON,
SpeciesId.DREDNAW,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.CURSOLA,
SpeciesId.PINCURCHIN,
SpeciesId.DRACOVISH,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.WALKING_WAKE,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_STUNFISK,
[
SpeciesId.URSHIFU,
"rapid-strike",
],
],
[MoveId.HEX]: [
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.HYPNO,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.MURKROW,
SpeciesId.MISDREAVUS,
SpeciesId.DUNSPARCE,
SpeciesId.QWILFISH,
SpeciesId.SHIFTRY,
SpeciesId.SHEDINJA,
SpeciesId.SABLEYE,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.CASTFORM,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.VESPIQUEN,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.SPIRITOMB,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.EELEKTROSS,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.DELPHOX,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.DECIDUEYE,
SpeciesId.TOXAPEX,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.MIMIKYU,
SpeciesId.DHELMISE,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.MARSHADOW,
SpeciesId.NAGANADEL,
SpeciesId.TOXTRICITY,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.CURSOLA,
SpeciesId.RUNERIGUS,
SpeciesId.PINCURCHIN,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.SPECTRIER,
SpeciesId.BASCULEGION,
SpeciesId.SKELEDIRGE,
SpeciesId.CERULEDGE,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.ESPATHRA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.DUDUNSPARCE,
SpeciesId.BRUTE_BONNET,
SpeciesId.FLUTTER_MANE,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.IRON_VALIANT,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.MAROWAK,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_YAMASK,
[
SpeciesId.CALYREX,
"shadow",
],
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
],
[MoveId.SKY_DROP]: [
SpeciesId.CHARIZARD,
SpeciesId.AERODACTYL,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.SKARMORY,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.PELIPPER,
SpeciesId.RAYQUAZA,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.HAWLUCHA,
SpeciesId.YVELTAL,
SpeciesId.VIKAVOLT,
SpeciesId.TAPU_KOKO,
SpeciesId.LUNALA,
SpeciesId.NAGANADEL,
],
[MoveId.INCINERATE]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.MAGMAR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.FLAREON,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.SLOWKING,
SpeciesId.DUNSPARCE,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.MAGBY,
SpeciesId.BLISSEY,
SpeciesId.ENTEI,
SpeciesId.HO_OH,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.FLYGON,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SOLROCK,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.ABSOL,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.HONCHKROW,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.HAPPINY,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.AUDINO,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.DRUDDIGON,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.GOODRA,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.VOLCANION,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.TURTONATOR,
SpeciesId.BLACEPHALON,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.DUDUNSPARCE,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.GOUGING_FIRE,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_GOODRA,
SpeciesId.PALDEA_TAUROS,
],
[MoveId.QUASH]: [
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.KINGLER,
SpeciesId.MEW,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.KINGDRA,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.SLAKING,
SpeciesId.SABLEYE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.VESPIQUEN,
SpeciesId.HONCHKROW,
SpeciesId.SPIRITOMB,
SpeciesId.ARCEUS,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.HOOPA,
SpeciesId.INCINEROAR,
SpeciesId.ORICORIO,
SpeciesId.ORANGURU,
SpeciesId.PALOSSAND,
SpeciesId.PYUKUMUKU,
SpeciesId.KOMALA,
SpeciesId.BLACEPHALON,
SpeciesId.HATENNA,
SpeciesId.MORPEKO,
SpeciesId.TINKATINK,
SpeciesId.IRON_LEAVES,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
],
[MoveId.ACROBATICS]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.VENOMOTH,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.FARFETCHD,
SpeciesId.SCYTHER,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.CROBAT,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.MURKROW,
SpeciesId.GLIGAR,
SpeciesId.SCIZOR,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.BLAZIKEN,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.NINJASK,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.LOPUNNY,
SpeciesId.HONCHKROW,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.GLISCOR,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.SWANNA,
SpeciesId.EMOLGA,
SpeciesId.ALOMOMOLA,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.CRYOGONAL,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.MANDIBUZZ,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.MELOETTA,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.HAWLUCHA,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.YVELTAL,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.SALAZZLE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.PASSIMIAN,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TAPU_KOKO,
SpeciesId.LUNALA,
SpeciesId.CELESTEELA,
SpeciesId.MARSHADOW,
SpeciesId.NAGANADEL,
SpeciesId.ZERAORA,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.INTELEON,
SpeciesId.THIEVUL,
SpeciesId.FLAPPLE,
SpeciesId.CRAMORANT,
SpeciesId.FROSMOTH,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.KLEAVOR,
SpeciesId.SNEASLER,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.BOMBIRDIER,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.CYCLIZAR,
SpeciesId.FLAMIGO,
SpeciesId.ANNIHILAPE,
SpeciesId.SLITHER_WING,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.CHIEN_PAO,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.FEZANDIPITI,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_BRAVIARY,
],
[MoveId.RETALIATE]: [
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.FARFETCHD,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.TAUROS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.SNORLAX,
SpeciesId.MEW,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.TOGETIC,
SpeciesId.AIPOM,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.GIRAFARIG,
SpeciesId.DUNSPARCE,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.SPINDA,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.CRAWDAUNT,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.ABSOL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.SPIRITOMB,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.TOGEKISS,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GALLADE,
SpeciesId.REGIGIGAS,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.LEAVANNY,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.DURANT,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FROAKIE,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.ZYGARDE,
SpeciesId.PASSIMIAN,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.DUBWOOL,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.SIRFETCHD,
SpeciesId.FALINKS,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.MASCHIFF,
SpeciesId.KINGAMBIT,
SpeciesId.IRON_LEAVES,
SpeciesId.OGERPON,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_SAMUROTT,
],
[MoveId.WATER_PLEDGE]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.SILVALLY,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.HISUI_SAMUROTT,
],
[MoveId.FIRE_PLEDGE]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.SILVALLY,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.HISUI_TYPHLOSION,
],
[MoveId.GRASS_PLEDGE]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.SILVALLY,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.VOLT_SWITCH]: [
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.ELECTABUZZ,
SpeciesId.JOLTEON,
SpeciesId.ZAPDOS,
SpeciesId.MEW,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.FORRETRESS,
SpeciesId.ELEKID,
SpeciesId.RAIKOU,
SpeciesId.NOSEPASS,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.PACHIRISU,
SpeciesId.MAGNEZONE,
SpeciesId.ELECTIVIRE,
SpeciesId.PROBOPASS,
SpeciesId.ROTOM,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.EMOLGA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.COBALION,
SpeciesId.THUNDURUS,
SpeciesId.ZEKROM,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.DEDENNE,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.TOGEDEMARU,
SpeciesId.TAPU_KOKO,
SpeciesId.XURKITREE,
SpeciesId.MAGEARNA,
SpeciesId.ZERAORA,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.TOXTRICITY,
SpeciesId.MORPEKO,
SpeciesId.REGIELEKI,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_THORNS,
SpeciesId.MIRAIDON,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_CROWN,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
],
[MoveId.STRUGGLE_BUG]: [
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.SCYTHER,
SpeciesId.PINSIR,
SpeciesId.MEW,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.YANMA,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.GLIGAR,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.STARAPTOR,
SpeciesId.KRICKETOT,
SpeciesId.KRICKETUNE,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.COMBEE,
SpeciesId.VESPIQUEN,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.YANMEGA,
SpeciesId.GLISCOR,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.DURANT,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.GENESECT,
SpeciesId.SCATTERBUG,
SpeciesId.SPEWPA,
SpeciesId.VIVILLON,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.BLIPBUG,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.SIZZLIPEDE,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.KLEAVOR,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.IRON_MOTH,
],
[MoveId.BULLDOZE]: [
SpeciesId.VENUSAUR,
SpeciesId.CHARIZARD,
SpeciesId.BLASTOISE,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.ONIX,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.MEGANIUM,
SpeciesId.TYPHLOSION,
SpeciesId.FERALIGATR,
SpeciesId.AMPHAROS,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.MANTINE,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.SCEPTILE,
SpeciesId.BLAZIKEN,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.BRELOOM,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.NOSEPASS,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.SWALOT,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.GRUMPIG,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.ALTARIA,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.CRADILY,
SpeciesId.ARMALDO,
SpeciesId.MILOTIC,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.RELICANTH,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.INFERNAPE,
SpeciesId.EMPOLEON,
SpeciesId.BIBAREL,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.PURUGLY,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.MANTYKE,
SpeciesId.ABOMASNOW,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.SAMUROTT,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.CONKELDURR,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SCOLIPEDE,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARMANITAN,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.FERROTHORN,
SpeciesId.EELEKTROSS,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.STUNFISK,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.BOUFFALANT,
SpeciesId.HYDREIGON,
SpeciesId.TERRAKION,
SpeciesId.LANDORUS,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.GOODRA,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.VOLCANION,
SpeciesId.INCINEROAR,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.SOLGALEO,
SpeciesId.BUZZWOLE,
SpeciesId.CELESTEELA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.STAKATAKA,
SpeciesId.RILLABOOM,
SpeciesId.GREEDENT,
SpeciesId.DREDNAW,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.APPLETUN,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CURSOLA,
SpeciesId.RUNERIGUS,
SpeciesId.STONJOURNER,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.WYRDEER,
SpeciesId.URSALUNA,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.KLAWF,
SpeciesId.TINKATON,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.ORTHWORM,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.DONDOZO,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.GREAT_TUSK,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_THORNS,
SpeciesId.BAXCALIBUR,
SpeciesId.TING_LU,
SpeciesId.KORAIDON,
SpeciesId.GOUGING_FIRE,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
[
SpeciesId.WORMADAM,
"sandy",
],
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_STUNFISK,
[
SpeciesId.CALYREX,
"ice",
"shadow",
],
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.FROST_BREATH]: [
SpeciesId.DEWGONG,
SpeciesId.CLOYSTER,
SpeciesId.JYNX,
SpeciesId.LAPRAS,
SpeciesId.ARTICUNO,
SpeciesId.MEW,
SpeciesId.DELIBIRD,
SpeciesId.SMOOCHUM,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.REGICE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.GLACEON,
SpeciesId.FROSLASS,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.GOLISOPOD,
SpeciesId.BRUXISH,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
],
[MoveId.DRAGON_TAIL]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.BLASTOISE,
SpeciesId.ARBOK,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.ONIX,
SpeciesId.LICKITUNG,
SpeciesId.RHYDON,
SpeciesId.GYARADOS,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.MEGANIUM,
SpeciesId.FERALIGATR,
SpeciesId.AMPHAROS,
SpeciesId.SLOWKING,
SpeciesId.STEELIX,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.AGGRON,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.SEVIPER,
SpeciesId.MILOTIC,
SpeciesId.TROPIUS,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.RAMPARDOS,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.SERPERIOR,
SpeciesId.SAMUROTT,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.ARCHEOPS,
SpeciesId.EELEKTROSS,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.DRUDDIGON,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.GOODRA,
SpeciesId.NOIVERN,
SpeciesId.ZYGARDE,
SpeciesId.SALAZZLE,
SpeciesId.TURTONATOR,
SpeciesId.DRAMPA,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.GUZZLORD,
SpeciesId.NAGANADEL,
SpeciesId.CHEWTLE,
SpeciesId.APPLETUN,
SpeciesId.DRACOZOLT,
SpeciesId.DURALUDON,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ETERNATUS,
SpeciesId.CYCLIZAR,
SpeciesId.DUDUNSPARCE,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.DIPPLIN,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.RAGING_BOLT,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.HISUI_GOODRA,
],
[MoveId.WORK_UP]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.TAUROS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.SNORLAX,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.AIPOM,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.GIRAFARIG,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.HERACROSS,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.SPINDA,
SpeciesId.ZANGOOSE,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.LICKILICKY,
SpeciesId.TOGEKISS,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GALLADE,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.DRAMPA,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_BULU,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.BUZZWOLE,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.SIRFETCHD,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_LEAVES,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
[
SpeciesId.LYCANROC,
"dusk",
],
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.PALDEA_TAUROS,
],
[MoveId.ELECTROWEB]: [
SpeciesId.CATERPIE,
SpeciesId.METAPOD,
SpeciesId.BUTTERFREE,
SpeciesId.WEEDLE,
SpeciesId.KAKUNA,
SpeciesId.BEEDRILL,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.ELECTABUZZ,
SpeciesId.PORYGON,
SpeciesId.MEW,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.PICHU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.PORYGON2,
SpeciesId.ELEKID,
SpeciesId.WURMPLE,
SpeciesId.SILCOON,
SpeciesId.BEAUTIFLY,
SpeciesId.CASCOON,
SpeciesId.DUSTOX,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.BURMY,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.PACHIRISU,
SpeciesId.MAGNEZONE,
SpeciesId.ELECTIVIRE,
SpeciesId.PORYGON_Z,
SpeciesId.ROTOM,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.EMOLGA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.STUNFISK,
SpeciesId.THUNDURUS,
SpeciesId.GENESECT,
SpeciesId.SPEWPA,
SpeciesId.VIVILLON,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.DEDENNE,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.PASSIMIAN,
SpeciesId.TOGEDEMARU,
SpeciesId.TAPU_KOKO,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.MAGEARNA,
SpeciesId.ZERAORA,
SpeciesId.MORPEKO,
SpeciesId.REGIELEKI,
SpeciesId.SPIDOPS,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_THORNS,
SpeciesId.RAGING_BOLT,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
],
[MoveId.WILD_CHARGE]: [
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.CHANSEY,
SpeciesId.ELECTABUZZ,
SpeciesId.TAUROS,
SpeciesId.JOLTEON,
SpeciesId.SNORLAX,
SpeciesId.ZAPDOS,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.IGGLYBUFF,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.DUNSPARCE,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.STANTLER,
SpeciesId.ELEKID,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.SLAKING,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.SPINDA,
SpeciesId.RAYQUAZA,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.PACHIRISU,
SpeciesId.MAGNEZONE,
SpeciesId.ELECTIVIRE,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.AUDINO,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.BOUFFALANT,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.THUNDURUS,
SpeciesId.ZEKROM,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.FURFROU,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.DEDENNE,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.VOLCANION,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.TOGEDEMARU,
SpeciesId.TAPU_KOKO,
SpeciesId.SOLGALEO,
SpeciesId.XURKITREE,
SpeciesId.ZERAORA,
SpeciesId.GREEDENT,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.TOXTRICITY,
SpeciesId.PINCURCHIN,
SpeciesId.MORPEKO,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.REGIELEKI,
SpeciesId.WYRDEER,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.MABOSSTIFF,
SpeciesId.CYCLIZAR,
SpeciesId.DUDUNSPARCE,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_THORNS,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.IRON_LEAVES,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.PALDEA_TAUROS,
],
[MoveId.DRILL_RUN]: [
SpeciesId.BEEDRILL,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.RAPIDASH,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.CLOYSTER,
SpeciesId.ONIX,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.LAPRAS,
SpeciesId.MEW,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.STEELIX,
SpeciesId.SKARMORY,
SpeciesId.DELIBIRD,
SpeciesId.HITMONTOP,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.RHYPERIOR,
SpeciesId.SAMUROTT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
[
SpeciesId.LYCANROC,
"midday",
"dusk",
],
SpeciesId.GOLISOPOD,
SpeciesId.PHEROMOSA,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.BOMBIRDIER,
SpeciesId.VELUZA,
SpeciesId.DUDUNSPARCE,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.PALDEA_TAUROS,
],
[MoveId.RAZOR_SHELL]: [
SpeciesId.SLOWBRO,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.KABUTOPS,
SpeciesId.MEW,
SpeciesId.SLOWKING,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.CARRACOSTA,
SpeciesId.ESCAVALIER,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.GOLISOPOD,
SpeciesId.DREDNAW,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.HISUI_SAMUROTT,
],
[MoveId.HEAT_CRASH]: [
SpeciesId.CHARIZARD,
SpeciesId.ARCANINE,
SpeciesId.RHYDON,
SpeciesId.SNORLAX,
SpeciesId.MEW,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.BLAZIKEN,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.GROUDON,
SpeciesId.RHYPERIOR,
SpeciesId.MAGMORTAR,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.GOLURK,
SpeciesId.RESHIRAM,
SpeciesId.VOLCANION,
SpeciesId.INCINEROAR,
SpeciesId.TURTONATOR,
SpeciesId.SOLGALEO,
SpeciesId.GUZZLORD,
SpeciesId.STAKATAKA,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.STONJOURNER,
SpeciesId.COPPERAJAH,
SpeciesId.SKELEDIRGE,
SpeciesId.SLITHER_WING,
SpeciesId.KORAIDON,
SpeciesId.GOUGING_FIRE,
SpeciesId.TERAPAGOS,
SpeciesId.HISUI_ARCANINE,
],
[MoveId.TAIL_SLAP]: [
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.MEW,
SpeciesId.AIPOM,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.AMBIPOM,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.MEOWSTIC,
[
SpeciesId.LYCANROC,
"midday",
"dusk",
],
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.FEZANDIPITI,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
],
[MoveId.HURRICANE]: [
SpeciesId.CHARIZARD,
SpeciesId.BUTTERFREE,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.GYARADOS,
SpeciesId.AERODACTYL,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CROBAT,
SpeciesId.MURKROW,
SpeciesId.MANTINE,
SpeciesId.KINGDRA,
SpeciesId.LUGIA,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.MASQUERAIN,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.CASTFORM,
SpeciesId.TROPIUS,
SpeciesId.SALAMENCE,
SpeciesId.RAYQUAZA,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.VESPIQUEN,
SpeciesId.HONCHKROW,
SpeciesId.ARCEUS,
SpeciesId.UNFEZANT,
SpeciesId.WHIMSICOTT,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.MANDIBUZZ,
SpeciesId.VOLCARONA,
SpeciesId.TORNADUS,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.YVELTAL,
SpeciesId.DECIDUEYE,
SpeciesId.ORICORIO,
SpeciesId.DRAMPA,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.SANDACONDA,
SpeciesId.CRAMORANT,
SpeciesId.FROSMOTH,
SpeciesId.QUAQUAVAL,
SpeciesId.SQUAWKABILLY,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.BOMBIRDIER,
SpeciesId.FLAMIGO,
SpeciesId.DUDUNSPARCE,
SpeciesId.SLITHER_WING,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.ROARING_MOON,
SpeciesId.WALKING_WAKE,
SpeciesId.FEZANDIPITI,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_BRAVIARY,
],
[MoveId.SNARL]: [
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.MEW,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SNEASEL,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.SABLEYE,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SEVIPER,
SpeciesId.CRAWDAUNT,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.FLOATZEL,
SpeciesId.HONCHKROW,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.SPIRITOMB,
SpeciesId.DRAPION,
SpeciesId.WEAVILE,
SpeciesId.DARKRAI,
SpeciesId.ARCEUS,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.DRUDDIGON,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.THUNDURUS,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.YVELTAL,
SpeciesId.INCINEROAR,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.GOLISOPOD,
SpeciesId.SILVALLY,
SpeciesId.DRAMPA,
SpeciesId.TAPU_BULU,
SpeciesId.SOLGALEO,
SpeciesId.GUZZLORD,
SpeciesId.NAGANADEL,
SpeciesId.ZERAORA,
SpeciesId.RILLABOOM,
SpeciesId.CINDERACE,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.TOXTRICITY,
SpeciesId.OBSTAGOON,
SpeciesId.MORPEKO,
SpeciesId.COPPERAJAH,
SpeciesId.DURALUDON,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ZARUDE,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.BOMBIRDIER,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.KINGAMBIT,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_THORNS,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.OKIDOGI,
SpeciesId.ARCHALUDON,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.BLOODMOON_URSALUNA,
[
SpeciesId.URSHIFU,
"single-strike",
],
],
[MoveId.PHANTOM_FORCE]: [
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.MEW,
SpeciesId.MISDREAVUS,
SpeciesId.SHEDINJA,
SpeciesId.SABLEYE,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.MISMAGIUS,
SpeciesId.SPIRITOMB,
SpeciesId.DUSKNOIR,
SpeciesId.GIRATINA,
SpeciesId.ARCEUS,
SpeciesId.COFAGRIGUS,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.GOURGEIST,
SpeciesId.YVELTAL,
SpeciesId.HOOPA,
SpeciesId.DECIDUEYE,
SpeciesId.MIMIKYU,
SpeciesId.DHELMISE,
SpeciesId.LUNALA,
SpeciesId.MARSHADOW,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.RUNERIGUS,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.SPECTRIER,
SpeciesId.BASCULEGION,
SpeciesId.CERULEDGE,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.ANNIHILAPE,
SpeciesId.FLUTTER_MANE,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.PECHARUNT,
[
SpeciesId.CALYREX,
"shadow",
],
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
],
[MoveId.PETAL_BLIZZARD]: [
SpeciesId.VENUSAUR,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.MEW,
SpeciesId.MEGANIUM,
SpeciesId.BELLOSSOM,
SpeciesId.SUNFLORA,
SpeciesId.SHIFTRY,
SpeciesId.ROSELIA,
SpeciesId.TROPIUS,
SpeciesId.ROSERADE,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHAYMIN,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.LILLIGANT,
SpeciesId.MARACTUS,
SpeciesId.SAWSBUCK,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ZARUDE,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.ARBOLIVA,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.HISUI_LILLIGANT,
],
[MoveId.DISARMING_VOICE]: [
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.CHANSEY,
SpeciesId.MEW,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.BLISSEY,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.WHISMUR,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.ILLUMISE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.MILOTIC,
SpeciesId.CHIMECHO,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.HAPPINY,
SpeciesId.GALLADE,
SpeciesId.PANSAGE,
SpeciesId.PANSEAR,
SpeciesId.PANPOUR,
SpeciesId.AUDINO,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.MELOETTA,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SYLVEON,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.TOGEDEMARU,
SpeciesId.TAPU_FINI,
SpeciesId.MAGEARNA,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.INDEEDEE,
SpeciesId.ENAMORUS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.FLUTTER_MANE,
SpeciesId.FEZANDIPITI,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ETERNAL_FLOETTE,
],
[MoveId.DRAINING_KISS]: [
SpeciesId.BUTTERFREE,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.JYNX,
SpeciesId.MEW,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.ESPEON,
SpeciesId.MISDREAVUS,
SpeciesId.SMOOCHUM,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.AZURILL,
SpeciesId.MAWILE,
SpeciesId.ILLUMISE,
SpeciesId.MILOTIC,
SpeciesId.CHIMECHO,
SpeciesId.GOREBYSS,
SpeciesId.LUVDISC,
SpeciesId.LATIAS,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.MISMAGIUS,
SpeciesId.TOGEKISS,
SpeciesId.GALLADE,
SpeciesId.FROSLASS,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.AUDINO,
SpeciesId.VIVILLON,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.SYLVEON,
SpeciesId.DEDENNE,
SpeciesId.KLEFKI,
SpeciesId.XERNEAS,
SpeciesId.DIANCIE,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.MIMIKYU,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_FINI,
SpeciesId.MAGEARNA,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.INDEEDEE,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.ENAMORUS,
SpeciesId.DACHSBUN,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.FLUTTER_MANE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ETERNAL_FLOETTE,
],
[MoveId.GRASSY_TERRAIN]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.TANGELA,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BELLOSSOM,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.CRADILY,
SpeciesId.TROPIUS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.ROSERADE,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.TANGROWTH,
SpeciesId.ARCEUS,
SpeciesId.SNIVY,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.LILLIGANT,
SpeciesId.MARACTUS,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.TAPU_BULU,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.ZARUDE,
SpeciesId.CALYREX,
SpeciesId.ENAMORUS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.BRUTE_BONNET,
SpeciesId.WO_CHIEN,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.OGERPON,
SpeciesId.HYDRAPPLE,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.MISTY_TERRAIN]: [
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.MR_MIME,
SpeciesId.MEW,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.MAWILE,
SpeciesId.MIME_JR,
SpeciesId.GALLADE,
SpeciesId.ARCEUS,
SpeciesId.AUDINO,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.ALOMOMOLA,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
[
SpeciesId.MEOWSTIC,
"male",
],
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SYLVEON,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.KLEFKI,
SpeciesId.XERNEAS,
SpeciesId.VOLCANION,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.MIMIKYU,
SpeciesId.TAPU_FINI,
SpeciesId.MAGEARNA,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.MR_RIME,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.ZACIAN,
SpeciesId.ENAMORUS,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SCREAM_TAIL,
SpeciesId.FLUTTER_MANE,
SpeciesId.IRON_VALIANT,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
],
[MoveId.PLAY_ROUGH]: [
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.DEWGONG,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.MILTANK,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.LINOONE,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.MAWILE,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ABSOL,
SpeciesId.JIRACHI,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.PACHIRISU,
SpeciesId.CHERRIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.TOGEKISS,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.SHAYMIN,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.WHIMSICOTT,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.ALOMOMOLA,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.MELOETTA,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.SYLVEON,
SpeciesId.DEDENNE,
SpeciesId.KLEFKI,
SpeciesId.XERNEAS,
SpeciesId.DIANCIE,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.KOMALA,
SpeciesId.MIMIKYU,
SpeciesId.DRAMPA,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_FINI,
SpeciesId.MAGEARNA,
SpeciesId.ZERAORA,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.PERRSERKER,
SpeciesId.ALCREMIE,
SpeciesId.FROSMOTH,
SpeciesId.INDEEDEE,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.URSALUNA,
SpeciesId.ENAMORUS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_HANDS,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_WEEZING,
SpeciesId.HISUI_TYPHLOSION,
],
[MoveId.CONFIDE]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.PYUKUMUKU,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
],
[MoveId.MYSTICAL_FIRE]: [
SpeciesId.CHARIZARD,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.MR_MIME,
SpeciesId.FLAREON,
SpeciesId.MOLTRES,
SpeciesId.MEW,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.HO_OH,
SpeciesId.RALTS,
SpeciesId.GARDEVOIR,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.MISMAGIUS,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.VICTINI,
SpeciesId.DARMANITAN,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.VOLCARONA,
SpeciesId.RESHIRAM,
SpeciesId.DELPHOX,
SpeciesId.SYLVEON,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.DIANCIE,
SpeciesId.SOLGALEO,
SpeciesId.BLACEPHALON,
SpeciesId.CENTISKORCH,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.ALCREMIE,
SpeciesId.INDEEDEE,
SpeciesId.ETERNATUS,
SpeciesId.ENAMORUS,
SpeciesId.ARMAROUGE,
SpeciesId.FLUTTER_MANE,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
],
[MoveId.EERIE_IMPULSE]: [
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.JOLTEON,
SpeciesId.PORYGON,
SpeciesId.ZAPDOS,
SpeciesId.MEW,
SpeciesId.LANTURN,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.PORYGON2,
SpeciesId.RAIKOU,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.PACHIRISU,
SpeciesId.MAGNEZONE,
SpeciesId.PORYGON_Z,
SpeciesId.ROTOM,
SpeciesId.EMOLGA,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.STUNFISK,
SpeciesId.THUNDURUS,
SpeciesId.HELIOLISK,
SpeciesId.DEDENNE,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.TOGEDEMARU,
SpeciesId.TAPU_KOKO,
SpeciesId.XURKITREE,
SpeciesId.MAGEARNA,
SpeciesId.BOLTUND,
SpeciesId.TOXTRICITY,
SpeciesId.MORPEKO,
SpeciesId.REGIELEKI,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_THORNS,
SpeciesId.MIRAIDON,
SpeciesId.RAGING_BOLT,
SpeciesId.ALOLA_RAICHU,
],
[MoveId.VENOM_DRENCH]: [
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.TENTACRUEL,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.MEW,
SpeciesId.CROBAT,
SpeciesId.QWILFISH,
SpeciesId.ROSERADE,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ACCELGOR,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.PYUKUMUKU,
SpeciesId.NIHILEGO,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.PINCURCHIN,
SpeciesId.ETERNATUS,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_SLOWKING,
[
SpeciesId.TOXTRICITY,
"low-key",
],
],
[MoveId.ELECTRIC_TERRAIN]: [
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.CHANSEY,
SpeciesId.JOLTEON,
SpeciesId.ZAPDOS,
SpeciesId.MEW,
SpeciesId.PICHU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.MANECTRIC,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.PACHIRISU,
SpeciesId.MAGNEZONE,
SpeciesId.ELECTIVIRE,
SpeciesId.ROTOM,
SpeciesId.ARCEUS,
SpeciesId.KLINKLANG,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.STUNFISK,
SpeciesId.THUNDURUS,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.DEDENNE,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.TOGEDEMARU,
SpeciesId.TAPU_KOKO,
SpeciesId.XURKITREE,
SpeciesId.ZERAORA,
SpeciesId.MELMETAL,
SpeciesId.BOLTUND,
SpeciesId.TOXTRICITY,
SpeciesId.PINCURCHIN,
SpeciesId.MORPEKO,
SpeciesId.REGIELEKI,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.IRON_VALIANT,
SpeciesId.MIRAIDON,
SpeciesId.IRON_LEAVES,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
],
[MoveId.DAZZLING_GLEAM]: [
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.CHANSEY,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.MEW,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.SUNFLORA,
SpeciesId.ESPEON,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.BLISSEY,
SpeciesId.CELEBI,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.NOSEPASS,
SpeciesId.SABLEYE,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.CHIMECHO,
SpeciesId.JIRACHI,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.MISMAGIUS,
SpeciesId.CHINGLING,
SpeciesId.MIME_JR,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.TOGEKISS,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.AUDINO,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.SIGILYPH,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.MELOETTA,
SpeciesId.DELPHOX,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.SYLVEON,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.KLEFKI,
SpeciesId.XERNEAS,
SpeciesId.DIANCIE,
SpeciesId.PRIMARINA,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.MINIOR,
SpeciesId.MIMIKYU,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.XURKITREE,
SpeciesId.MAGEARNA,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.MR_RIME,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.FROSMOTH,
SpeciesId.INDEEDEE,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ENAMORUS,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.ARBOLIVA,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.RABSCA,
SpeciesId.ESPATHRA,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.FARIGIRAF,
SpeciesId.SCREAM_TAIL,
SpeciesId.FLUTTER_MANE,
SpeciesId.IRON_MOTH,
SpeciesId.GHOLDENGO,
SpeciesId.IRON_VALIANT,
SpeciesId.MIRAIDON,
SpeciesId.FEZANDIPITI,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.HISUI_BRAVIARY,
],
[MoveId.INFESTATION]: [
SpeciesId.BUTTERFREE,
SpeciesId.BEEDRILL,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.TANGELA,
SpeciesId.MR_MIME,
SpeciesId.MEW,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.BELLOSSOM,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SHUCKLE,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.BEAUTIFLY,
SpeciesId.DUSTOX,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.SEVIPER,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.KRICKETUNE,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.VESPIQUEN,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.MIME_JR,
SpeciesId.SPIRITOMB,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CARNIVINE,
SpeciesId.TANGROWTH,
SpeciesId.DUSKNOIR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.DURANT,
SpeciesId.GENESECT,
SpeciesId.VIVILLON,
SpeciesId.PANGORO,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.MIMIKYU,
SpeciesId.STAKATAKA,
SpeciesId.BLIPBUG,
SpeciesId.FROSMOTH,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.DIPPLIN,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
],
[MoveId.POWER_UP_PUNCH]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.KANGASKHAN,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.SNORLAX,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.DELIBIRD,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.ZANGOOSE,
SpeciesId.KECLEON,
SpeciesId.DUSCLOPS,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.GROUDON,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.KRICKETUNE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.GALLADE,
SpeciesId.DUSKNOIR,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.REGIGIGAS,
SpeciesId.DARKRAI,
SpeciesId.VICTINI,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.WATCHOG,
SpeciesId.SIMISAGE,
SpeciesId.SIMISEAR,
SpeciesId.SIMIPOUR,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.GOTHITELLE,
SpeciesId.REUNICLUS,
SpeciesId.EELEKTROSS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.HEATMOR,
SpeciesId.MELOETTA,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.MEOWSTIC,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.HAWLUCHA,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.HOOPA,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.BUZZWOLE,
SpeciesId.ZERAORA,
SpeciesId.TOXEL,
SpeciesId.TOXTRICITY,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.GRIMMSNARL,
SpeciesId.URSALUNA,
SpeciesId.ANNIHILAPE,
SpeciesId.KINGAMBIT,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
],
[MoveId.DARKEST_LARIAT]: [
SpeciesId.POLIWRATH,
SpeciesId.MACHAMP,
SpeciesId.SNORLAX,
SpeciesId.MEW,
SpeciesId.SWAMPERT,
SpeciesId.ELECTIVIRE,
SpeciesId.DUSKNOIR,
SpeciesId.REGIGIGAS,
SpeciesId.KROOKODILE,
SpeciesId.GOLURK,
SpeciesId.PANGORO,
SpeciesId.INCINEROAR,
SpeciesId.BEWEAR,
SpeciesId.TAPU_BULU,
SpeciesId.BUZZWOLE,
SpeciesId.MELMETAL,
SpeciesId.RILLABOOM,
SpeciesId.GRIMMSNARL,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
],
[MoveId.HIGH_HORSEPOWER]: [
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.DUGTRIO,
SpeciesId.POLIWRATH,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.ONIX,
SpeciesId.KINGLER,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.SNORLAX,
SpeciesId.MEW,
SpeciesId.SUDOWOODO,
SpeciesId.QUAGSIRE,
SpeciesId.GIRAFARIG,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.HERACROSS,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.MILTANK,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.SWAMPERT,
SpeciesId.SLAKING,
SpeciesId.NOSEPASS,
SpeciesId.AGGRON,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.GROUDON,
SpeciesId.TORTERRA,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.RHYPERIOR,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PROBOPASS,
SpeciesId.REGIGIGAS,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.ZEBSTRIKA,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.KROOKODILE,
SpeciesId.SAWSBUCK,
SpeciesId.GOLURK,
SpeciesId.BOUFFALANT,
SpeciesId.TERRAKION,
SpeciesId.CHESNAUGHT,
SpeciesId.DIGGERSBY,
SpeciesId.GOGOAT,
SpeciesId.TYRANTRUM,
SpeciesId.AVALUGG,
SpeciesId.ZYGARDE,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.BEWEAR,
SpeciesId.TAPU_BULU,
SpeciesId.BUZZWOLE,
SpeciesId.GUZZLORD,
SpeciesId.STAKATAKA,
SpeciesId.MELMETAL,
SpeciesId.RILLABOOM,
SpeciesId.GREEDENT,
SpeciesId.DREDNAW,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.APPLETUN,
SpeciesId.SANDACONDA,
SpeciesId.FALINKS,
SpeciesId.STONJOURNER,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.GLASTRIER,
SpeciesId.WYRDEER,
SpeciesId.URSALUNA,
SpeciesId.OINKOLOGNE,
SpeciesId.KLAWF,
SpeciesId.REVAVROOM,
SpeciesId.ORTHWORM,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.GREAT_TUSK,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_THORNS,
SpeciesId.BAXCALIBUR,
SpeciesId.OKIDOGI,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
[
SpeciesId.CALYREX,
"ice",
],
SpeciesId.HISUI_AVALUGG,
SpeciesId.PALDEA_TAUROS,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.SOLAR_BLADE]: [
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.FARFETCHD,
SpeciesId.MEW,
SpeciesId.CELEBI,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TROPIUS,
SpeciesId.CHERRIM,
SpeciesId.TANGROWTH,
SpeciesId.LEAFEON,
SpeciesId.GALLADE,
SpeciesId.LILLIGANT,
SpeciesId.CRUSTLE,
SpeciesId.VIRIZION,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.DECIDUEYE,
SpeciesId.LURANTIS,
SpeciesId.TSAREENA,
SpeciesId.DHELMISE,
SpeciesId.KARTANA,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SIRFETCHD,
SpeciesId.ZACIAN,
SpeciesId.ZARUDE,
SpeciesId.CALYREX,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.CERULEDGE,
SpeciesId.WO_CHIEN,
SpeciesId.IRON_LEAVES,
SpeciesId.OGERPON,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.HISUI_LILLIGANT,
],
[MoveId.THROAT_CHOP]: [
SpeciesId.BEEDRILL,
SpeciesId.RATICATE,
SpeciesId.FEAROW,
SpeciesId.ARBOK,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.PARASECT,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PRIMEAPE,
SpeciesId.POLIWRATH,
SpeciesId.MACHAMP,
SpeciesId.RAPIDASH,
SpeciesId.FARFETCHD,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.MEW,
SpeciesId.TYPHLOSION,
SpeciesId.ARIADOS,
SpeciesId.UMBREON,
SpeciesId.GLIGAR,
SpeciesId.QWILFISH,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.URSARING,
SpeciesId.CORSOLA,
SpeciesId.HOUNDOOM,
SpeciesId.STANTLER,
SpeciesId.RAIKOU,
SpeciesId.SCEPTILE,
SpeciesId.MIGHTYENA,
SpeciesId.LINOONE,
SpeciesId.SHIFTRY,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.HARIYAMA,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.BANETTE,
SpeciesId.ABSOL,
SpeciesId.DEOXYS,
SpeciesId.EMPOLEON,
SpeciesId.KRICKETUNE,
SpeciesId.LUXRAY,
SpeciesId.PURUGLY,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.DRAPION,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.WEAVILE,
SpeciesId.GLISCOR,
SpeciesId.GALLADE,
SpeciesId.DARKRAI,
SpeciesId.LIEPARD,
SpeciesId.SIMISAGE,
SpeciesId.SIMISEAR,
SpeciesId.SIMIPOUR,
SpeciesId.GIGALITH,
SpeciesId.AUDINO,
SpeciesId.SAWK,
SpeciesId.LEAVANNY,
SpeciesId.SCOLIPEDE,
SpeciesId.KROOKODILE,
SpeciesId.MARACTUS,
SpeciesId.SCRAFTY,
SpeciesId.ZOROARK,
SpeciesId.GALVANTULA,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.BEARTIC,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.HEATMOR,
SpeciesId.HYDREIGON,
SpeciesId.PANGORO,
SpeciesId.MALAMAR,
SpeciesId.HAWLUCHA,
SpeciesId.HOOPA,
SpeciesId.INCINEROAR,
SpeciesId.GOLISOPOD,
SpeciesId.PHEROMOSA,
SpeciesId.MARSHADOW,
SpeciesId.NAGANADEL,
SpeciesId.ZERAORA,
SpeciesId.DREDNAW,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXTRICITY,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.SIRFETCHD,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.ZARUDE,
SpeciesId.GLASTRIER,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.LOKIX,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.FLAMIGO,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.ROARING_MOON,
SpeciesId.OGERPON,
SpeciesId.IRON_BOULDER,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_MAROWAK,
[
SpeciesId.LYCANROC,
"midnight",
],
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_LINOONE,
[
SpeciesId.URSHIFU,
"single-strike",
],
[
SpeciesId.CALYREX,
"ice",
],
],
[MoveId.POLLEN_PUFF]: [
SpeciesId.BUTTERFREE,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.MEW,
SpeciesId.BELLOSSOM,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.CELEBI,
SpeciesId.VESPIQUEN,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.LEAVANNY,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.VIVILLON,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.COMFEY,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.CALYREX,
SpeciesId.MEOWSCARADA,
SpeciesId.ARBOLIVA,
SpeciesId.BRUTE_BONNET,
SpeciesId.WO_CHIEN,
SpeciesId.DIPPLIN,
SpeciesId.HYDRAPPLE,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.HISUI_LILLIGANT,
],
[MoveId.PSYCHIC_TERRAIN]: [
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.ESPEON,
SpeciesId.SLOWKING,
SpeciesId.GIRAFARIG,
SpeciesId.CELEBI,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MIME_JR,
SpeciesId.GALLADE,
SpeciesId.CRESSELIA,
SpeciesId.ARCEUS,
SpeciesId.MUSHARNA,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.BEHEEYEM,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.MEOWSTIC,
SpeciesId.HOOPA,
SpeciesId.ORANGURU,
SpeciesId.BRUXISH,
SpeciesId.TAPU_LELE,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.MR_RIME,
SpeciesId.INDEEDEE,
SpeciesId.CALYREX,
SpeciesId.ARMAROUGE,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.VELUZA,
SpeciesId.FARIGIRAF,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_VALIANT,
SpeciesId.IRON_LEAVES,
SpeciesId.MUNKIDORI,
SpeciesId.ALOLA_RAICHU,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_SLOWKING,
SpeciesId.HISUI_BRAVIARY,
],
[MoveId.LUNGE]: [
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.MUK,
SpeciesId.SCYTHER,
SpeciesId.MEW,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.YANMA,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.SCIZOR,
SpeciesId.HERACROSS,
SpeciesId.STANTLER,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.VOLBEAT,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.CACTURNE,
SpeciesId.KRICKETOT,
SpeciesId.KRICKETUNE,
SpeciesId.MOTHIM,
SpeciesId.COMBEE,
SpeciesId.VESPIQUEN,
SpeciesId.YANMEGA,
SpeciesId.GLISCOR,
SpeciesId.HEATRAN,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.JOLTIK,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.HAWLUCHA,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.RIBOMBEE,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.FALINKS,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.LOKIX,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.FLAMIGO,
SpeciesId.TATSUGIRI,
SpeciesId.DUDUNSPARCE,
SpeciesId.SLITHER_WING,
SpeciesId.IRON_MOTH,
],
[MoveId.SPEED_SWAP]: [
SpeciesId.RAICHU,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.PORYGON,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.PORYGON2,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.PORYGON_Z,
SpeciesId.VICTINI,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.SIGILYPH,
SpeciesId.EMOLGA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.TAPU_LELE,
SpeciesId.PHEROMOSA,
SpeciesId.MAGEARNA,
SpeciesId.CALYREX,
SpeciesId.RABSCA,
SpeciesId.ALOLA_RAICHU,
],
[MoveId.SMART_STRIKE]: [
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.RAPIDASH,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.CLOYSTER,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.TAUROS,
SpeciesId.LAPRAS,
SpeciesId.MEW,
SpeciesId.ARIADOS,
SpeciesId.TOGETIC,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.HERACROSS,
SpeciesId.DONPHAN,
SpeciesId.AGGRON,
SpeciesId.RHYPERIOR,
SpeciesId.TOGEKISS,
SpeciesId.SAMUROTT,
SpeciesId.EXCADRILL,
SpeciesId.SCOLIPEDE,
SpeciesId.SAWSBUCK,
SpeciesId.ESCAVALIER,
SpeciesId.BOUFFALANT,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.THUNDURUS,
SpeciesId.KELDEO,
SpeciesId.XERNEAS,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.NECROZMA,
SpeciesId.NAGANADEL,
SpeciesId.DREDNAW,
SpeciesId.FALINKS,
SpeciesId.GLASTRIER,
SpeciesId.OVERQWIL,
SpeciesId.DUDUNSPARCE,
SpeciesId.GREAT_TUSK,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_LEAVES,
SpeciesId.GOUGING_FIRE,
SpeciesId.IRON_CROWN,
SpeciesId.GALAR_RAPIDASH,
[
SpeciesId.CALYREX,
"ice",
],
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.PALDEA_TAUROS,
],
[MoveId.BRUTAL_SWING]: [
SpeciesId.CHARIZARD,
SpeciesId.BEEDRILL,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.RAICHU,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.FARFETCHD,
SpeciesId.ONIX,
SpeciesId.KINGLER,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.LICKITUNG,
SpeciesId.RHYDON,
SpeciesId.SCYTHER,
SpeciesId.PINSIR,
SpeciesId.GYARADOS,
SpeciesId.AERODACTYL,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.AMPHAROS,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.STEELIX,
SpeciesId.SCIZOR,
SpeciesId.HERACROSS,
SpeciesId.DELIBIRD,
SpeciesId.DONPHAN,
SpeciesId.HITMONTOP,
SpeciesId.TYRANITAR,
SpeciesId.SCEPTILE,
SpeciesId.SHIFTRY,
SpeciesId.AZURILL,
SpeciesId.MAWILE,
SpeciesId.AGGRON,
SpeciesId.FLYGON,
SpeciesId.SEVIPER,
SpeciesId.ARMALDO,
SpeciesId.MILOTIC,
SpeciesId.TROPIUS,
SpeciesId.ABSOL,
SpeciesId.SALAMENCE,
SpeciesId.METAGROSS,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.DEOXYS,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.LOPUNNY,
SpeciesId.GARCHOMP,
SpeciesId.DRAPION,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.GLISCOR,
SpeciesId.GIRATINA,
SpeciesId.SERPERIOR,
SpeciesId.EXCADRILL,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.ESCAVALIER,
SpeciesId.FERROTHORN,
SpeciesId.HAXORUS,
SpeciesId.MIENSHAO,
SpeciesId.HEATMOR,
SpeciesId.HYDREIGON,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.GRENINJA,
SpeciesId.DIGGERSBY,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.MALAMAR,
SpeciesId.BARBARACLE,
SpeciesId.HELIOLISK,
SpeciesId.TYRANTRUM,
SpeciesId.GOODRA,
SpeciesId.TREVENANT,
SpeciesId.GOURGEIST,
SpeciesId.INCINEROAR,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.TURTONATOR,
SpeciesId.DHELMISE,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_BULU,
SpeciesId.NIHILEGO,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.STAKATAKA,
SpeciesId.ZERAORA,
SpeciesId.MELMETAL,
SpeciesId.RILLABOOM,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.GRAPPLOCT,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.SIRFETCHD,
SpeciesId.RUNERIGUS,
SpeciesId.STONJOURNER,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ZACIAN,
SpeciesId.ETERNATUS,
SpeciesId.ZARUDE,
SpeciesId.KLEAVOR,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.OKIDOGI,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_YAMASK,
],
[MoveId.AURORA_VEIL]: [
SpeciesId.JYNX,
SpeciesId.ARTICUNO,
SpeciesId.MEW,
SpeciesId.DELIBIRD,
SpeciesId.SMOOCHUM,
SpeciesId.REGICE,
SpeciesId.ABOMASNOW,
SpeciesId.GLACEON,
SpeciesId.FROSLASS,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.CRYOGONAL,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.EISCUE,
SpeciesId.ARCTOVISH,
SpeciesId.IRON_BUNDLE,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.HISUI_AVALUGG,
],
[MoveId.PSYCHIC_FANGS]: [
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.AERODACTYL,
SpeciesId.MEW,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.ESPEON,
SpeciesId.GIRAFARIG,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.MAWILE,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.SEVIPER,
SpeciesId.SALAMENCE,
SpeciesId.METAGROSS,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.GLISCOR,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.SWOOBAT,
SpeciesId.BASCULIN,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.SILVALLY,
SpeciesId.BRUXISH,
SpeciesId.SOLGALEO,
SpeciesId.NECROZMA,
SpeciesId.GREEDENT,
SpeciesId.BOLTUND,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.MORPEKO,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.BASCULEGION,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.VELUZA,
SpeciesId.FARIGIRAF,
SpeciesId.SCREAM_TAIL,
SpeciesId.CHIEN_PAO,
SpeciesId.OKIDOGI,
SpeciesId.GOUGING_FIRE,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
],
[MoveId.STOMPING_TANTRUM]: [
SpeciesId.VENUSAUR,
SpeciesId.RATICATE,
SpeciesId.ARBOK,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.DODRIO,
SpeciesId.ONIX,
SpeciesId.KINGLER,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.LICKITUNG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TAUROS,
SpeciesId.SNORLAX,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.MEGANIUM,
SpeciesId.TYPHLOSION,
SpeciesId.ARIADOS,
SpeciesId.AMPHAROS,
SpeciesId.SUDOWOODO,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.GIRAFARIG,
SpeciesId.DUNSPARCE,
SpeciesId.STEELIX,
SpeciesId.GRANBULL,
SpeciesId.URSARING,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.ENTEI,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.SWAMPERT,
SpeciesId.LINOONE,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.NOSEPASS,
SpeciesId.DELCATTY,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.CACTURNE,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.ARMALDO,
SpeciesId.TROPIUS,
SpeciesId.WALREIN,
SpeciesId.RELICANTH,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.GROUDON,
SpeciesId.DEOXYS,
SpeciesId.TORTERRA,
SpeciesId.BIBAREL,
SpeciesId.RAMPARDOS,
SpeciesId.BASTIODON,
SpeciesId.GASTRODON,
SpeciesId.PURUGLY,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.DRAPION,
SpeciesId.ABOMASNOW,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.MAMOSWINE,
SpeciesId.PROBOPASS,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.ARCEUS,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.WATCHOG,
SpeciesId.STOUTLAND,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.CONKELDURR,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SCOLIPEDE,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.CRUSTLE,
SpeciesId.GARBODOR,
SpeciesId.SAWSBUCK,
SpeciesId.AMOONGUSS,
SpeciesId.EELEKTROSS,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.STUNFISK,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.BOUFFALANT,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.TERRAKION,
SpeciesId.LANDORUS,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.DIGGERSBY,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANGORO,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.CARBINK,
SpeciesId.GOODRA,
SpeciesId.AVALUGG,
SpeciesId.ZYGARDE,
SpeciesId.VOLCANION,
SpeciesId.INCINEROAR,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.DRAMPA,
SpeciesId.KOMMO_O,
SpeciesId.BUZZWOLE,
SpeciesId.CELESTEELA,
SpeciesId.GUZZLORD,
SpeciesId.STAKATAKA,
SpeciesId.RILLABOOM,
SpeciesId.GREEDENT,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.APPLETUN,
SpeciesId.GRAPPLOCT,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.CURSOLA,
SpeciesId.MR_RIME,
SpeciesId.STONJOURNER,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.DURALUDON,
SpeciesId.ZARUDE,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.URSALUNA,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.OINKOLOGNE,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.ORTHWORM,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.DONDOZO,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_THORNS,
SpeciesId.BAXCALIBUR,
SpeciesId.TING_LU,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.OKIDOGI,
SpeciesId.OGERPON,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_STUNFISK,
[
SpeciesId.CALYREX,
"ice",
"shadow",
],
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.LIQUIDATION]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.DEWGONG,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.QWILFISH,
SpeciesId.CORSOLA,
SpeciesId.OCTILLERY,
SpeciesId.MANTINE,
SpeciesId.KINGDRA,
SpeciesId.SUICUNE,
SpeciesId.LUGIA,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILORD,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.ARMALDO,
SpeciesId.WALREIN,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BIBAREL,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.GARCHOMP,
SpeciesId.PALKIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.ARCEUS,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.SEISMITOAD,
SpeciesId.BASCULIN,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.ALOMOMOLA,
SpeciesId.EELEKTROSS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.KELDEO,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.VOLCANION,
SpeciesId.PRIMARINA,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.GOLISOPOD,
SpeciesId.BRUXISH,
SpeciesId.DHELMISE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.CURSOLA,
SpeciesId.PINCURCHIN,
SpeciesId.EISCUE,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.BASCULEGION,
SpeciesId.OVERQWIL,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.FLAMIGO,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.CLODSIRE,
SpeciesId.IRON_VALIANT,
SpeciesId.WALKING_WAKE,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
[
SpeciesId.URSHIFU,
"rapid-strike",
],
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SAMUROTT,
[
SpeciesId.PALDEA_TAUROS,
"aqua",
],
SpeciesId.PALDEA_WOOPER,
],
[MoveId.BODY_PRESS]: [
SpeciesId.BLASTOISE,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.SLOWBRO,
SpeciesId.ONIX,
SpeciesId.HYPNO,
SpeciesId.LICKITUNG,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.LAPRAS,
SpeciesId.SNORLAX,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.MEGANIUM,
SpeciesId.SUDOWOODO,
SpeciesId.QUAGSIRE,
SpeciesId.FORRETRESS,
SpeciesId.STEELIX,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.DONPHAN,
SpeciesId.MILTANK,
SpeciesId.TYRANITAR,
SpeciesId.SWAMPERT,
SpeciesId.SLAKING,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.NOSEPASS,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.SWALOT,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.GRUMPIG,
SpeciesId.CLAYDOL,
SpeciesId.TROPIUS,
SpeciesId.WALREIN,
SpeciesId.RELICANTH,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGISTEEL,
SpeciesId.GROUDON,
SpeciesId.TORTERRA,
SpeciesId.RAMPARDOS,
SpeciesId.BASTIODON,
SpeciesId.BRONZONG,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.ABOMASNOW,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.MAMOSWINE,
SpeciesId.PROBOPASS,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.ARCEUS,
SpeciesId.EMBOAR,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.DARMANITAN,
SpeciesId.CRUSTLE,
SpeciesId.COFAGRIGUS,
SpeciesId.GARBODOR,
SpeciesId.FERROTHORN,
SpeciesId.EELEKTROSS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.GOLURK,
SpeciesId.COBALION,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.CHESNAUGHT,
SpeciesId.HAWLUCHA,
SpeciesId.CARBINK,
SpeciesId.GOODRA,
SpeciesId.AVALUGG,
SpeciesId.DIANCIE,
SpeciesId.VOLCANION,
SpeciesId.CRABOMINABLE,
SpeciesId.MUDSDALE,
SpeciesId.BEWEAR,
SpeciesId.TURTONATOR,
SpeciesId.DHELMISE,
SpeciesId.KOMMO_O,
SpeciesId.GUZZLORD,
SpeciesId.STAKATAKA,
SpeciesId.MELMETAL,
SpeciesId.RILLABOOM,
SpeciesId.GREEDENT,
SpeciesId.CORVIKNIGHT,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.DUBWOOL,
SpeciesId.DREDNAW,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.APPLETUN,
SpeciesId.SANDACONDA,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.RUNERIGUS,
SpeciesId.FALINKS,
SpeciesId.STONJOURNER,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DURALUDON,
SpeciesId.ZAMAZENTA,
SpeciesId.URSHIFU,
SpeciesId.GLASTRIER,
[
SpeciesId.CALYREX,
"",
"ice",
],
SpeciesId.URSALUNA,
SpeciesId.OINKOLOGNE,
SpeciesId.PAWMOT,
SpeciesId.DACHSBUN,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.ORTHWORM,
SpeciesId.HOUNDSTONE,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.DONDOZO,
SpeciesId.CLODSIRE,
SpeciesId.DUDUNSPARCE,
SpeciesId.GREAT_TUSK,
SpeciesId.BRUTE_BONNET,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_THORNS,
SpeciesId.BAXCALIBUR,
SpeciesId.WO_CHIEN,
SpeciesId.TING_LU,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.OKIDOGI,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.RAGING_BOLT,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_GOLEM,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.BREAKING_SWIPE]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.ARBOK,
SpeciesId.ONIX,
SpeciesId.RHYDON,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.AMPHAROS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.KINGDRA,
SpeciesId.TYRANITAR,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.FLYGON,
SpeciesId.ALTARIA,
SpeciesId.SEVIPER,
SpeciesId.MILOTIC,
SpeciesId.SALAMENCE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.RAYQUAZA,
SpeciesId.RAMPARDOS,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.RHYPERIOR,
SpeciesId.GLISCOR,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.GIRATINA,
SpeciesId.SERPERIOR,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.HYDREIGON,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.HELIOLISK,
SpeciesId.TYRANTRUM,
SpeciesId.GOODRA,
SpeciesId.NOIVERN,
SpeciesId.ZYGARDE,
SpeciesId.SALAZZLE,
SpeciesId.DRAMPA,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.NECROZMA,
SpeciesId.NAGANADEL,
SpeciesId.INTELEON,
SpeciesId.DRACOZOLT,
SpeciesId.DURALUDON,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.REGIDRAGO,
SpeciesId.CYCLIZAR,
SpeciesId.DUDUNSPARCE,
SpeciesId.IRON_THORNS,
SpeciesId.BAXCALIBUR,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.HISUI_GOODRA,
],
[MoveId.STEEL_BEAM]: [
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.MEW,
SpeciesId.FORRETRESS,
SpeciesId.STEELIX,
SpeciesId.SCIZOR,
SpeciesId.SKARMORY,
SpeciesId.NOSEPASS,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.BELDUM,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGISTEEL,
SpeciesId.JIRACHI,
SpeciesId.EMPOLEON,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.LUCARIO,
SpeciesId.MAGNEZONE,
SpeciesId.PROBOPASS,
SpeciesId.DIALGA,
SpeciesId.HEATRAN,
SpeciesId.ARCEUS,
SpeciesId.EXCADRILL,
SpeciesId.ESCAVALIER,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.DURANT,
SpeciesId.COBALION,
SpeciesId.GENESECT,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.KLEFKI,
SpeciesId.SILVALLY,
SpeciesId.TOGEDEMARU,
SpeciesId.SOLGALEO,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.MAGEARNA,
SpeciesId.STAKATAKA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.CORVIKNIGHT,
SpeciesId.PERRSERKER,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DURALUDON,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.ORTHWORM,
SpeciesId.KINGAMBIT,
SpeciesId.IRON_TREADS,
SpeciesId.GHOLDENGO,
SpeciesId.ARCHALUDON,
SpeciesId.IRON_CROWN,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
],
[MoveId.EXPANDING_FORCE]: [
SpeciesId.WIGGLYTUFF,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.EXEGGUTOR,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.JYNX,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.ESPEON,
SpeciesId.SLOWKING,
SpeciesId.GIRAFARIG,
SpeciesId.CELEBI,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.CHIMECHO,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.GALLADE,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.CRESSELIA,
SpeciesId.VICTINI,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DARMANITAN,
SpeciesId.SIGILYPH,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.DELPHOX,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.HOOPA,
SpeciesId.ORANGURU,
SpeciesId.BRUXISH,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NECROZMA,
SpeciesId.BLACEPHALON,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.MR_RIME,
SpeciesId.INDEEDEE,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.ARMAROUGE,
SpeciesId.RABSCA,
SpeciesId.ESPATHRA,
SpeciesId.VELUZA,
SpeciesId.FARIGIRAF,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_VALIANT,
SpeciesId.IRON_CROWN,
SpeciesId.ALOLA_RAICHU,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.HISUI_BRAVIARY,
],
[MoveId.STEEL_ROLLER]: [
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.CLOYSTER,
SpeciesId.LICKITUNG,
SpeciesId.SNORLAX,
SpeciesId.MEW,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.STEELIX,
SpeciesId.QWILFISH,
SpeciesId.SHUCKLE,
SpeciesId.MILTANK,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGISTEEL,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.HEATRAN,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.TOGEDEMARU,
SpeciesId.DHELMISE,
SpeciesId.SOLGALEO,
SpeciesId.CELESTEELA,
SpeciesId.GUZZLORD,
SpeciesId.MAGEARNA,
SpeciesId.STAKATAKA,
SpeciesId.MELMETAL,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DURALUDON,
SpeciesId.IRON_TREADS,
SpeciesId.ARCHALUDON,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
],
[MoveId.SCALE_SHOT]: [
SpeciesId.CHARIZARD,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.GYARADOS,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.QWILFISH,
SpeciesId.KINGDRA,
SpeciesId.LUGIA,
SpeciesId.SCEPTILE,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.FLYGON,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.RAYQUAZA,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.BASCULIN,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.ALOMOMOLA,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.DRUDDIGON,
SpeciesId.HYDREIGON,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.ZYGARDE,
SpeciesId.WISHIWASHI,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.TURTONATOR,
SpeciesId.DRAMPA,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.NAGANADEL,
SpeciesId.INTELEON,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.REGIDRAGO,
SpeciesId.BASCULEGION,
SpeciesId.OVERQWIL,
SpeciesId.CYCLIZAR,
SpeciesId.VELUZA,
SpeciesId.DUDUNSPARCE,
SpeciesId.BAXCALIBUR,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.GOUGING_FIRE,
SpeciesId.HISUI_QWILFISH,
],
[MoveId.METEOR_BEAM]: [
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.ONIX,
SpeciesId.RHYDON,
SpeciesId.STARMIE,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.MEW,
SpeciesId.AMPHAROS,
SpeciesId.SUDOWOODO,
SpeciesId.STEELIX,
SpeciesId.SHUCKLE,
SpeciesId.CORSOLA,
SpeciesId.NOSEPASS,
SpeciesId.AGGRON,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.RELICANTH,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGISTEEL,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.BASTIODON,
SpeciesId.BRONZONG,
SpeciesId.RHYPERIOR,
SpeciesId.PROBOPASS,
SpeciesId.ARCEUS,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.CRUSTLE,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.BARBARACLE,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.CARBINK,
SpeciesId.DIANCIE,
SpeciesId.MINIOR,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.CELESTEELA,
SpeciesId.NECROZMA,
SpeciesId.STAKATAKA,
SpeciesId.DREDNAW,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.CURSOLA,
SpeciesId.STONJOURNER,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.ETERNATUS,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.ARMAROUGE,
SpeciesId.KLAWF,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.KORAIDON,
SpeciesId.ARCHALUDON,
SpeciesId.IRON_BOULDER,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_GOLEM,
SpeciesId.GALAR_CORSOLA,
SpeciesId.HISUI_AVALUGG,
],
[MoveId.MISTY_EXPLOSION]: [
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.MEW,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.GARDEVOIR,
SpeciesId.MUSHARNA,
SpeciesId.FLORGES,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.SYLVEON,
SpeciesId.CARBINK,
SpeciesId.XERNEAS,
SpeciesId.DIANCIE,
SpeciesId.PRIMARINA,
SpeciesId.MAGEARNA,
SpeciesId.HATTERENE,
SpeciesId.ALCREMIE,
SpeciesId.ENAMORUS,
SpeciesId.SCREAM_TAIL,
SpeciesId.GALAR_WEEZING,
],
[MoveId.GRASSY_GLIDE]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.TANGELA,
SpeciesId.MEW,
SpeciesId.BELLOSSOM,
SpeciesId.SUNFLORA,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.ROSELIA,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.TANGROWTH,
SpeciesId.LEAFEON,
SpeciesId.SHAYMIN,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.MARACTUS,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.VIRIZION,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.DHELMISE,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.APPLIN,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SIRFETCHD,
SpeciesId.ZARUDE,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.DIPPLIN,
SpeciesId.OGERPON,
SpeciesId.HYDRAPPLE,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.RISING_VOLTAGE]: [
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.ELECTABUZZ,
SpeciesId.JOLTEON,
SpeciesId.ZAPDOS,
SpeciesId.MEW,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.RAIKOU,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.MAGNEZONE,
SpeciesId.ELECTIVIRE,
SpeciesId.ROTOM,
SpeciesId.EMOLGA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.THUNDURUS,
SpeciesId.ZEKROM,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.DEDENNE,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.TOGEDEMARU,
SpeciesId.XURKITREE,
SpeciesId.ZERAORA,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.TOXTRICITY,
SpeciesId.PINCURCHIN,
SpeciesId.MORPEKO,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.REGIELEKI,
SpeciesId.RAGING_BOLT,
SpeciesId.ALOLA_RAICHU,
],
[MoveId.TERRAIN_PULSE]: [
SpeciesId.VENUSAUR,
SpeciesId.BLASTOISE,
SpeciesId.EXEGGUTOR,
SpeciesId.LICKITUNG,
SpeciesId.KANGASKHAN,
SpeciesId.SNORLAX,
SpeciesId.MEW,
SpeciesId.DUNSPARCE,
SpeciesId.EXPLOUD,
SpeciesId.LUCARIO,
SpeciesId.LICKILICKY,
SpeciesId.REGIGIGAS,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.CARBINK,
SpeciesId.XERNEAS,
SpeciesId.DIANCIE,
SpeciesId.ORANGURU,
SpeciesId.PALOSSAND,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.INDEEDEE,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.DUDUNSPARCE,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.GALAR_STUNFISK,
],
[MoveId.SKITTER_SMACK]: [
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.PERSIAN,
SpeciesId.TENTACRUEL,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.SCYTHER,
SpeciesId.MEW,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.YANMA,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.OCTILLERY,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.SABLEYE,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SEVIPER,
SpeciesId.MILOTIC,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.KRICKETOT,
SpeciesId.KRICKETUNE,
SpeciesId.COMBEE,
SpeciesId.VESPIQUEN,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.YANMEGA,
SpeciesId.GLISCOR,
SpeciesId.DUSKNOIR,
SpeciesId.GIRATINA,
SpeciesId.LIEPARD,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.DURANT,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.VIVILLON,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.ZYGARDE,
SpeciesId.HOOPA,
SpeciesId.DECIDUEYE,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.PHEROMOSA,
SpeciesId.MARSHADOW,
SpeciesId.INTELEON,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.GRAPPLOCT,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.KLEAVOR,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.DUDUNSPARCE,
SpeciesId.SLITHER_WING,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
],
[MoveId.BURNING_JEALOUSY]: [
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.MAGMAR,
SpeciesId.FLAREON,
SpeciesId.MOLTRES,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.MISDREAVUS,
SpeciesId.MAGCARGO,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.TORKOAL,
SpeciesId.BANETTE,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.MISMAGIUS,
SpeciesId.SKUNTANK,
SpeciesId.SPIRITOMB,
SpeciesId.MAGMORTAR,
SpeciesId.HEATRAN,
SpeciesId.LIEPARD,
SpeciesId.DARMANITAN,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.HEATMOR,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.PYROAR,
SpeciesId.TREVENANT,
SpeciesId.INCINEROAR,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.TURTONATOR,
SpeciesId.MIMIKYU,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.THIEVUL,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.CURSOLA,
SpeciesId.SCOVILLAIN,
SpeciesId.CHI_YU,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
],
[MoveId.LASH_OUT]: [
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.MUK,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SNEASEL,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.HARIYAMA,
SpeciesId.SABLEYE,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.CACTURNE,
SpeciesId.SEVIPER,
SpeciesId.CRAWDAUNT,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.EMPOLEON,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.SPIRITOMB,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.DARKRAI,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARMANITAN,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.STUNFISK,
SpeciesId.DRUDDIGON,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.YVELTAL,
SpeciesId.HOOPA,
SpeciesId.INCINEROAR,
SpeciesId.MUDSDALE,
SpeciesId.TURTONATOR,
SpeciesId.DRAMPA,
SpeciesId.GUZZLORD,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.MORPEKO,
SpeciesId.ZARUDE,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.MEOWSCARADA,
SpeciesId.OINKOLOGNE,
SpeciesId.LOKIX,
SpeciesId.SQUAWKABILLY,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SCOVILLAIN,
SpeciesId.BOMBIRDIER,
SpeciesId.REVAVROOM,
SpeciesId.ANNIHILAPE,
SpeciesId.KINGAMBIT,
SpeciesId.BRUTE_BONNET,
SpeciesId.IRON_JUGULIS,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_MUK,
[
SpeciesId.LYCANROC,
"midnight",
],
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_STUNFISK,
[
SpeciesId.URSHIFU,
"single-strike",
],
[
SpeciesId.CALYREX,
"ice",
"shadow",
],
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_GOODRA,
SpeciesId.PALDEA_TAUROS,
],
[MoveId.POLTERGEIST]: [
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.MEW,
SpeciesId.MISDREAVUS,
SpeciesId.SHEDINJA,
SpeciesId.SABLEYE,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.MISMAGIUS,
SpeciesId.SPIRITOMB,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.GIRATINA,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.DECIDUEYE,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.DHELMISE,
SpeciesId.LUNALA,
SpeciesId.MARSHADOW,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.CURSOLA,
SpeciesId.RUNERIGUS,
SpeciesId.SPECTRIER,
SpeciesId.SKELEDIRGE,
SpeciesId.CERULEDGE,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.RABSCA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.FLUTTER_MANE,
SpeciesId.GHOLDENGO,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.MUNKIDORI,
SpeciesId.PECHARUNT,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.GALAR_YAMASK,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_ZOROARK,
],
[MoveId.CORROSIVE_GAS]: [
SpeciesId.VILEPLUME,
SpeciesId.TENTACRUEL,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.MEW,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.TOXICROAK,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.SALAZZLE,
SpeciesId.NIHILEGO,
SpeciesId.GUZZLORD,
SpeciesId.GALAR_WEEZING,
],
[MoveId.COACHING]: [
SpeciesId.POLIWRATH,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.MEW,
SpeciesId.HERACROSS,
SpeciesId.HITMONTOP,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.INFERNAPE,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.GALLADE,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.CHESNAUGHT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.HAWLUCHA,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.PASSIMIAN,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.MARSHADOW,
SpeciesId.ZERAORA,
SpeciesId.CINDERACE,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.SIRFETCHD,
SpeciesId.FALINKS,
SpeciesId.ZAMAZENTA,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.SNEASLER,
SpeciesId.QUAQUAVAL,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.ANNIHILAPE,
SpeciesId.IRON_VALIANT,
SpeciesId.IRON_LEAVES,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.FLIP_TURN]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.VAPOREON,
SpeciesId.KABUTOPS,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.QWILFISH,
SpeciesId.KINGDRA,
SpeciesId.SWAMPERT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.MILOTIC,
SpeciesId.LUVDISC,
SpeciesId.LATIOS,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.BASCULIN,
SpeciesId.SWANNA,
SpeciesId.ALOMOMOLA,
SpeciesId.KELDEO,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.WISHIWASHI,
SpeciesId.BRUXISH,
SpeciesId.INTELEON,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.EISCUE,
SpeciesId.BASCULEGION,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.PALAFIN,
SpeciesId.VELUZA,
SpeciesId.IRON_BUNDLE,
SpeciesId.WALKING_WAKE,
SpeciesId.HISUI_SAMUROTT,
],
[MoveId.TRIPLE_AXEL]: [
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.JYNX,
SpeciesId.ARTICUNO,
SpeciesId.MEW,
SpeciesId.BELLOSSOM,
SpeciesId.SNEASEL,
SpeciesId.DELIBIRD,
SpeciesId.HITMONTOP,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.MILOTIC,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.AMBIPOM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.WEAVILE,
SpeciesId.GLACEON,
SpeciesId.GALLADE,
SpeciesId.FROSLASS,
SpeciesId.LEAVANNY,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.CRYOGONAL,
SpeciesId.MIENSHAO,
SpeciesId.MELOETTA,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.PHEROMOSA,
SpeciesId.MR_RIME,
SpeciesId.FROSMOTH,
SpeciesId.MEOWSCARADA,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_NINETALES,
SpeciesId.GALAR_MR_MIME,
SpeciesId.HISUI_LILLIGANT,
],
[MoveId.DUAL_WINGBEAT]: [
SpeciesId.CHARIZARD,
SpeciesId.BUTTERFREE,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.FARFETCHD,
SpeciesId.SCYTHER,
SpeciesId.AERODACTYL,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.CROBAT,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MURKROW,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.SCIZOR,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.MASQUERAIN,
SpeciesId.NINJASK,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.TROPIUS,
SpeciesId.SALAMENCE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.COMBEE,
SpeciesId.VESPIQUEN,
SpeciesId.HONCHKROW,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.GLISCOR,
SpeciesId.PALKIA,
SpeciesId.GIRATINA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.SIGILYPH,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.EMOLGA,
SpeciesId.DRUDDIGON,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HYDREIGON,
SpeciesId.VOLCARONA,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.HAWLUCHA,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.YVELTAL,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.VIKAVOLT,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.LUNALA,
SpeciesId.BUZZWOLE,
SpeciesId.NAGANADEL,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.FLAPPLE,
SpeciesId.CRAMORANT,
SpeciesId.SIRFETCHD,
SpeciesId.FROSMOTH,
SpeciesId.KLEAVOR,
SpeciesId.SQUAWKABILLY,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.BOMBIRDIER,
SpeciesId.FLAMIGO,
SpeciesId.DUDUNSPARCE,
SpeciesId.SLITHER_WING,
SpeciesId.IRON_JUGULIS,
SpeciesId.KORAIDON,
SpeciesId.FEZANDIPITI,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_DECIDUEYE,
],
[MoveId.SCORCHING_SANDS]: [
SpeciesId.CHARIZARD,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDOKING,
SpeciesId.NINETALES,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.ARCANINE,
SpeciesId.RAPIDASH,
SpeciesId.ONIX,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.MAGMAR,
SpeciesId.FLAREON,
SpeciesId.MOLTRES,
SpeciesId.MEW,
SpeciesId.TYPHLOSION,
SpeciesId.STEELIX,
SpeciesId.MAGCARGO,
SpeciesId.ENTEI,
SpeciesId.HO_OH,
SpeciesId.BLAZIKEN,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.GROUDON,
SpeciesId.INFERNAPE,
SpeciesId.TORTERRA,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.RHYPERIOR,
SpeciesId.MAGMORTAR,
SpeciesId.HEATRAN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.HEATMOR,
SpeciesId.RESHIRAM,
SpeciesId.LANDORUS,
SpeciesId.DELPHOX,
SpeciesId.DIGGERSBY,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.VOLCANION,
SpeciesId.INCINEROAR,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.MINIOR,
SpeciesId.TURTONATOR,
SpeciesId.CINDERACE,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.SKELEDIRGE,
SpeciesId.ARMAROUGE,
SpeciesId.SANDY_SHOCKS,
SpeciesId.GOUGING_FIRE,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
],
[MoveId.TERA_BLAST]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.CATERPIE,
SpeciesId.METAPOD,
SpeciesId.BUTTERFREE,
SpeciesId.WEEDLE,
SpeciesId.KAKUNA,
SpeciesId.BEEDRILL,
SpeciesId.PIDGEY,
SpeciesId.PIDGEOTTO,
SpeciesId.PIDGEOT,
SpeciesId.RATTATA,
SpeciesId.RATICATE,
SpeciesId.SPEAROW,
SpeciesId.FEAROW,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.SANDSHREW,
SpeciesId.SANDSLASH,
SpeciesId.NIDORAN_F,
SpeciesId.NIDORINA,
SpeciesId.NIDOQUEEN,
SpeciesId.NIDORAN_M,
SpeciesId.NIDORINO,
SpeciesId.NIDOKING,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.VULPIX,
SpeciesId.NINETALES,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ZUBAT,
SpeciesId.GOLBAT,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.PARAS,
SpeciesId.PARASECT,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.DIGLETT,
SpeciesId.DUGTRIO,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.MANKEY,
SpeciesId.PRIMEAPE,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.ABRA,
SpeciesId.KADABRA,
SpeciesId.ALAKAZAM,
SpeciesId.MACHOP,
SpeciesId.MACHOKE,
SpeciesId.MACHAMP,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.GEODUDE,
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.PONYTA,
SpeciesId.RAPIDASH,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.MAGNEMITE,
SpeciesId.MAGNETON,
SpeciesId.FARFETCHD,
SpeciesId.DODUO,
SpeciesId.DODRIO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.GRIMER,
SpeciesId.MUK,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.GASTLY,
SpeciesId.HAUNTER,
SpeciesId.GENGAR,
SpeciesId.ONIX,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.KRABBY,
SpeciesId.KINGLER,
SpeciesId.VOLTORB,
SpeciesId.ELECTRODE,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.CUBONE,
SpeciesId.MAROWAK,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.LICKITUNG,
SpeciesId.KOFFING,
SpeciesId.WEEZING,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.CHANSEY,
SpeciesId.TANGELA,
SpeciesId.KANGASKHAN,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GOLDEEN,
SpeciesId.SEAKING,
SpeciesId.STARYU,
SpeciesId.STARMIE,
SpeciesId.MR_MIME,
SpeciesId.SCYTHER,
SpeciesId.JYNX,
SpeciesId.ELECTABUZZ,
SpeciesId.MAGMAR,
SpeciesId.PINSIR,
SpeciesId.TAUROS,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.PORYGON,
SpeciesId.OMANYTE,
SpeciesId.OMASTAR,
SpeciesId.KABUTO,
SpeciesId.KABUTOPS,
SpeciesId.AERODACTYL,
SpeciesId.SNORLAX,
SpeciesId.ARTICUNO,
SpeciesId.ZAPDOS,
SpeciesId.MOLTRES,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.HOOTHOOT,
SpeciesId.NOCTOWL,
SpeciesId.LEDYBA,
SpeciesId.LEDIAN,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.CROBAT,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.PICHU,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.TOGEPI,
SpeciesId.TOGETIC,
SpeciesId.NATU,
SpeciesId.XATU,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.POLITOED,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.YANMA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.GLIGAR,
SpeciesId.STEELIX,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.QWILFISH,
SpeciesId.SCIZOR,
SpeciesId.SHUCKLE,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.CORSOLA,
SpeciesId.REMORAID,
SpeciesId.OCTILLERY,
SpeciesId.DELIBIRD,
SpeciesId.MANTINE,
SpeciesId.SKARMORY,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.KINGDRA,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.PORYGON2,
SpeciesId.STANTLER,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.SMOOCHUM,
SpeciesId.ELEKID,
SpeciesId.MAGBY,
SpeciesId.MILTANK,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.LARVITAR,
SpeciesId.PUPITAR,
SpeciesId.TYRANITAR,
SpeciesId.LUGIA,
SpeciesId.HO_OH,
SpeciesId.CELEBI,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.ZIGZAGOON,
SpeciesId.LINOONE,
SpeciesId.WURMPLE,
SpeciesId.SILCOON,
SpeciesId.BEAUTIFLY,
SpeciesId.CASCOON,
SpeciesId.DUSTOX,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.TAILLOW,
SpeciesId.SWELLOW,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.NINCADA,
SpeciesId.NINJASK,
SpeciesId.SHEDINJA,
SpeciesId.WHISMUR,
SpeciesId.LOUDRED,
SpeciesId.EXPLOUD,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.AZURILL,
SpeciesId.NOSEPASS,
SpeciesId.SKITTY,
SpeciesId.DELCATTY,
SpeciesId.SABLEYE,
SpeciesId.MAWILE,
SpeciesId.ARON,
SpeciesId.LAIRON,
SpeciesId.AGGRON,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ELECTRIKE,
SpeciesId.MANECTRIC,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.ROSELIA,
SpeciesId.GULPIN,
SpeciesId.SWALOT,
SpeciesId.CARVANHA,
SpeciesId.SHARPEDO,
SpeciesId.WAILMER,
SpeciesId.WAILORD,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.SPINDA,
SpeciesId.TRAPINCH,
SpeciesId.VIBRAVA,
SpeciesId.FLYGON,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.ZANGOOSE,
SpeciesId.SEVIPER,
SpeciesId.LUNATONE,
SpeciesId.SOLROCK,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.BALTOY,
SpeciesId.CLAYDOL,
SpeciesId.LILEEP,
SpeciesId.CRADILY,
SpeciesId.ANORITH,
SpeciesId.ARMALDO,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.CASTFORM,
SpeciesId.KECLEON,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.DUSKULL,
SpeciesId.DUSCLOPS,
SpeciesId.TROPIUS,
SpeciesId.CHIMECHO,
SpeciesId.ABSOL,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.SPHEAL,
SpeciesId.SEALEO,
SpeciesId.WALREIN,
SpeciesId.CLAMPERL,
SpeciesId.HUNTAIL,
SpeciesId.GOREBYSS,
SpeciesId.RELICANTH,
SpeciesId.LUVDISC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.BELDUM,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.GROUDON,
SpeciesId.RAYQUAZA,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.STARLY,
SpeciesId.STARAVIA,
SpeciesId.STARAPTOR,
SpeciesId.BIDOOF,
SpeciesId.BIBAREL,
SpeciesId.KRICKETOT,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.BUDEW,
SpeciesId.ROSERADE,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.BURMY,
SpeciesId.WORMADAM,
SpeciesId.MOTHIM,
SpeciesId.COMBEE,
SpeciesId.VESPIQUEN,
SpeciesId.PACHIRISU,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.CHERUBI,
SpeciesId.CHERRIM,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.BUNEARY,
SpeciesId.LOPUNNY,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.GLAMEOW,
SpeciesId.PURUGLY,
SpeciesId.CHINGLING,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.BONSLY,
SpeciesId.MIME_JR,
SpeciesId.HAPPINY,
SpeciesId.CHATOT,
SpeciesId.SPIRITOMB,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.HIPPOPOTAS,
SpeciesId.HIPPOWDON,
SpeciesId.SKORUPI,
SpeciesId.DRAPION,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.CARNIVINE,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.MANTYKE,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.MAGNEZONE,
SpeciesId.LICKILICKY,
SpeciesId.RHYPERIOR,
SpeciesId.TANGROWTH,
SpeciesId.ELECTIVIRE,
SpeciesId.MAGMORTAR,
SpeciesId.TOGEKISS,
SpeciesId.YANMEGA,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GLISCOR,
SpeciesId.MAMOSWINE,
SpeciesId.PORYGON_Z,
SpeciesId.GALLADE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.FROSLASS,
SpeciesId.ROTOM,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.AZELF,
SpeciesId.DIALGA,
SpeciesId.PALKIA,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.GIRATINA,
SpeciesId.CRESSELIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.DARKRAI,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.VICTINI,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.PATRAT,
SpeciesId.WATCHOG,
SpeciesId.LILLIPUP,
SpeciesId.HERDIER,
SpeciesId.STOUTLAND,
SpeciesId.PURRLOIN,
SpeciesId.LIEPARD,
SpeciesId.PANSAGE,
SpeciesId.SIMISAGE,
SpeciesId.PANSEAR,
SpeciesId.SIMISEAR,
SpeciesId.PANPOUR,
SpeciesId.SIMIPOUR,
SpeciesId.MUNNA,
SpeciesId.MUSHARNA,
SpeciesId.PIDOVE,
SpeciesId.TRANQUILL,
SpeciesId.UNFEZANT,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.ROGGENROLA,
SpeciesId.BOLDORE,
SpeciesId.GIGALITH,
SpeciesId.WOOBAT,
SpeciesId.SWOOBAT,
SpeciesId.DRILBUR,
SpeciesId.EXCADRILL,
SpeciesId.AUDINO,
SpeciesId.TIMBURR,
SpeciesId.GURDURR,
SpeciesId.CONKELDURR,
SpeciesId.TYMPOLE,
SpeciesId.PALPITOAD,
SpeciesId.SEISMITOAD,
SpeciesId.THROH,
SpeciesId.SAWK,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.VENIPEDE,
SpeciesId.WHIRLIPEDE,
SpeciesId.SCOLIPEDE,
SpeciesId.COTTONEE,
SpeciesId.WHIMSICOTT,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.BASCULIN,
SpeciesId.SANDILE,
SpeciesId.KROKOROK,
SpeciesId.KROOKODILE,
SpeciesId.DARUMAKA,
SpeciesId.DARMANITAN,
SpeciesId.MARACTUS,
SpeciesId.DWEBBLE,
SpeciesId.CRUSTLE,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.SIGILYPH,
SpeciesId.YAMASK,
SpeciesId.COFAGRIGUS,
SpeciesId.TIRTOUGA,
SpeciesId.CARRACOSTA,
SpeciesId.ARCHEN,
SpeciesId.ARCHEOPS,
SpeciesId.TRUBBISH,
SpeciesId.GARBODOR,
SpeciesId.ZORUA,
SpeciesId.ZOROARK,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.SOLOSIS,
SpeciesId.DUOSION,
SpeciesId.REUNICLUS,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.VANILLITE,
SpeciesId.VANILLISH,
SpeciesId.VANILLUXE,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.EMOLGA,
SpeciesId.KARRABLAST,
SpeciesId.ESCAVALIER,
SpeciesId.FOONGUS,
SpeciesId.AMOONGUSS,
SpeciesId.FRILLISH,
SpeciesId.JELLICENT,
SpeciesId.ALOMOMOLA,
SpeciesId.JOLTIK,
SpeciesId.GALVANTULA,
SpeciesId.FERROSEED,
SpeciesId.FERROTHORN,
SpeciesId.KLINK,
SpeciesId.KLANG,
SpeciesId.KLINKLANG,
SpeciesId.TYNAMO,
SpeciesId.EELEKTRIK,
SpeciesId.EELEKTROSS,
SpeciesId.ELGYEM,
SpeciesId.BEHEEYEM,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.SHELMET,
SpeciesId.ACCELGOR,
SpeciesId.STUNFISK,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.DRUDDIGON,
SpeciesId.GOLETT,
SpeciesId.GOLURK,
SpeciesId.PAWNIARD,
SpeciesId.BISHARP,
SpeciesId.BOUFFALANT,
SpeciesId.RUFFLET,
SpeciesId.BRAVIARY,
SpeciesId.VULLABY,
SpeciesId.MANDIBUZZ,
SpeciesId.HEATMOR,
SpeciesId.DURANT,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.TORNADUS,
SpeciesId.THUNDURUS,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.LANDORUS,
SpeciesId.KYUREM,
SpeciesId.KELDEO,
SpeciesId.MELOETTA,
SpeciesId.GENESECT,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FENNEKIN,
SpeciesId.BRAIXEN,
SpeciesId.DELPHOX,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.BUNNELBY,
SpeciesId.DIGGERSBY,
SpeciesId.FLETCHLING,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.SCATTERBUG,
SpeciesId.SPEWPA,
SpeciesId.VIVILLON,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.PANCHAM,
SpeciesId.PANGORO,
SpeciesId.FURFROU,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.HONEDGE,
SpeciesId.DOUBLADE,
SpeciesId.AEGISLASH,
SpeciesId.SPRITZEE,
SpeciesId.AROMATISSE,
SpeciesId.SWIRLIX,
SpeciesId.SLURPUFF,
SpeciesId.INKAY,
SpeciesId.MALAMAR,
SpeciesId.BINACLE,
SpeciesId.BARBARACLE,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.HELIOPTILE,
SpeciesId.HELIOLISK,
SpeciesId.TYRUNT,
SpeciesId.TYRANTRUM,
SpeciesId.AMAURA,
SpeciesId.AURORUS,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.CARBINK,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.KLEFKI,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.PUMPKABOO,
SpeciesId.GOURGEIST,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.NOIBAT,
SpeciesId.NOIVERN,
SpeciesId.XERNEAS,
SpeciesId.YVELTAL,
SpeciesId.ZYGARDE,
SpeciesId.DIANCIE,
SpeciesId.HOOPA,
SpeciesId.VOLCANION,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.PIKIPEK,
SpeciesId.TRUMBEAK,
SpeciesId.TOUCANNON,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.WISHIWASHI,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MUDBRAY,
SpeciesId.MUDSDALE,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.MORELULL,
SpeciesId.SHIINOTIC,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.STUFFUL,
SpeciesId.BEWEAR,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.WIMPOD,
SpeciesId.GOLISOPOD,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.TYPE_NULL,
SpeciesId.SILVALLY,
SpeciesId.MINIOR,
SpeciesId.KOMALA,
SpeciesId.TURTONATOR,
SpeciesId.TOGEDEMARU,
SpeciesId.MIMIKYU,
SpeciesId.BRUXISH,
SpeciesId.DRAMPA,
SpeciesId.DHELMISE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.TAPU_KOKO,
SpeciesId.TAPU_LELE,
SpeciesId.TAPU_BULU,
SpeciesId.TAPU_FINI,
SpeciesId.SOLGALEO,
SpeciesId.LUNALA,
SpeciesId.NIHILEGO,
SpeciesId.BUZZWOLE,
SpeciesId.PHEROMOSA,
SpeciesId.XURKITREE,
SpeciesId.CELESTEELA,
SpeciesId.KARTANA,
SpeciesId.GUZZLORD,
SpeciesId.NECROZMA,
SpeciesId.MAGEARNA,
SpeciesId.MARSHADOW,
SpeciesId.POIPOLE,
SpeciesId.NAGANADEL,
SpeciesId.STAKATAKA,
SpeciesId.BLACEPHALON,
SpeciesId.ZERAORA,
SpeciesId.MELTAN,
SpeciesId.MELMETAL,
SpeciesId.ALOLA_RATTATA,
SpeciesId.ALOLA_RATICATE,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_DIGLETT,
SpeciesId.ALOLA_DUGTRIO,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.ALOLA_GRIMER,
SpeciesId.ALOLA_MUK,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.ALOLA_MAROWAK,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.ROOKIDEE,
SpeciesId.CORVISQUIRE,
SpeciesId.CORVIKNIGHT,
SpeciesId.BLIPBUG,
SpeciesId.DOTTLER,
SpeciesId.ORBEETLE,
SpeciesId.NICKIT,
SpeciesId.THIEVUL,
SpeciesId.GOSSIFLEUR,
SpeciesId.ELDEGOSS,
SpeciesId.WOOLOO,
SpeciesId.DUBWOOL,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.YAMPER,
SpeciesId.BOLTUND,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.APPLIN,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.SILICOBRA,
SpeciesId.SANDACONDA,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.TOXEL,
SpeciesId.TOXTRICITY,
SpeciesId.SIZZLIPEDE,
SpeciesId.CENTISKORCH,
SpeciesId.CLOBBOPUS,
SpeciesId.GRAPPLOCT,
SpeciesId.SINISTEA,
SpeciesId.POLTEAGEIST,
SpeciesId.HATENNA,
SpeciesId.HATTREM,
SpeciesId.HATTERENE,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.OBSTAGOON,
SpeciesId.PERRSERKER,
SpeciesId.CURSOLA,
SpeciesId.SIRFETCHD,
SpeciesId.MR_RIME,
SpeciesId.RUNERIGUS,
SpeciesId.MILCERY,
SpeciesId.ALCREMIE,
SpeciesId.FALINKS,
SpeciesId.PINCURCHIN,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.STONJOURNER,
SpeciesId.EISCUE,
SpeciesId.INDEEDEE,
SpeciesId.MORPEKO,
SpeciesId.CUFANT,
SpeciesId.COPPERAJAH,
SpeciesId.DRACOZOLT,
SpeciesId.ARCTOZOLT,
SpeciesId.DRACOVISH,
SpeciesId.ARCTOVISH,
SpeciesId.DURALUDON,
SpeciesId.DREEPY,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.ETERNATUS,
SpeciesId.KUBFU,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.REGIELEKI,
SpeciesId.REGIDRAGO,
SpeciesId.GLASTRIER,
SpeciesId.SPECTRIER,
SpeciesId.CALYREX,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.BASCULEGION,
SpeciesId.SNEASLER,
SpeciesId.OVERQWIL,
SpeciesId.ENAMORUS,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.PAWMI,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.TANDEMAUS,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.SQUAWKABILLY,
SpeciesId.NACLI,
SpeciesId.NACLSTACK,
SpeciesId.GARGANACL,
SpeciesId.CHARCADET,
SpeciesId.ARMAROUGE,
SpeciesId.CERULEDGE,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WATTREL,
SpeciesId.KILOWATTREL,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.BOMBIRDIER,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.VAROOM,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.ORTHWORM,
SpeciesId.GLIMMET,
SpeciesId.GLIMMORA,
SpeciesId.GREAVARD,
SpeciesId.HOUNDSTONE,
SpeciesId.FLAMIGO,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.ANNIHILAPE,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.DUDUNSPARCE,
SpeciesId.KINGAMBIT,
SpeciesId.GREAT_TUSK,
SpeciesId.SCREAM_TAIL,
SpeciesId.BRUTE_BONNET,
SpeciesId.FLUTTER_MANE,
SpeciesId.SLITHER_WING,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_BUNDLE,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_JUGULIS,
SpeciesId.IRON_MOTH,
SpeciesId.IRON_THORNS,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.GIMMIGHOUL,
SpeciesId.GHOLDENGO,
SpeciesId.WO_CHIEN,
SpeciesId.CHIEN_PAO,
SpeciesId.TING_LU,
SpeciesId.CHI_YU,
SpeciesId.ROARING_MOON,
SpeciesId.IRON_VALIANT,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.IRON_LEAVES,
SpeciesId.DIPPLIN,
SpeciesId.POLTCHAGEIST,
SpeciesId.SINISTCHA,
SpeciesId.OKIDOGI,
SpeciesId.MUNKIDORI,
SpeciesId.FEZANDIPITI,
SpeciesId.OGERPON,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_BOULDER,
SpeciesId.IRON_CROWN,
SpeciesId.PECHARUNT,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_PONYTA,
SpeciesId.GALAR_RAPIDASH,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_FARFETCHD,
SpeciesId.GALAR_WEEZING,
SpeciesId.GALAR_MR_MIME,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_ZAPDOS,
SpeciesId.GALAR_MOLTRES,
SpeciesId.GALAR_SLOWKING,
SpeciesId.GALAR_CORSOLA,
SpeciesId.GALAR_ZIGZAGOON,
SpeciesId.GALAR_LINOONE,
SpeciesId.GALAR_DARUMAKA,
SpeciesId.GALAR_DARMANITAN,
SpeciesId.GALAR_YAMASK,
SpeciesId.GALAR_STUNFISK,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_VOLTORB,
SpeciesId.HISUI_ELECTRODE,
SpeciesId.HISUI_TYPHLOSION,
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_BRAVIARY,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.ICE_SPINNER]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.ARTICUNO,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.DELIBIRD,
SpeciesId.DONPHAN,
SpeciesId.HITMONTOP,
SpeciesId.LUDICOLO,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.REGICE,
SpeciesId.REGISTEEL,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.FROSLASS,
SpeciesId.CINCCINO,
SpeciesId.CRYOGONAL,
SpeciesId.MIENSHAO,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.CRABOMINABLE,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.KOMALA,
SpeciesId.MAGEARNA,
SpeciesId.DREDNAW,
SpeciesId.FROSMOTH,
SpeciesId.EISCUE,
SpeciesId.QUAQUAVAL,
SpeciesId.CYCLIZAR,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.DUDUNSPARCE,
SpeciesId.GREAT_TUSK,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_BUNDLE,
SpeciesId.CHIEN_PAO,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
[
SpeciesId.URSHIFU,
"rapid-strike",
],
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
],
[MoveId.SNOWSCAPE]: [
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.CHANSEY,
SpeciesId.LAPRAS,
SpeciesId.ARTICUNO,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.SNEASEL,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.DELIBIRD,
SpeciesId.BLISSEY,
SpeciesId.SUICUNE,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.ALTARIA,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.LUVDISC,
SpeciesId.REGICE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.MISMAGIUS,
SpeciesId.HAPPINY,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.GLACEON,
SpeciesId.MAMOSWINE,
SpeciesId.FROSLASS,
SpeciesId.PALKIA,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.BASCULIN,
SpeciesId.ALOMOMOLA,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.TORNADUS,
SpeciesId.KYUREM,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.DIANCIE,
SpeciesId.PRIMARINA,
SpeciesId.CRABOMINABLE,
SpeciesId.MAGEARNA,
SpeciesId.INTELEON,
SpeciesId.FROSMOTH,
SpeciesId.EISCUE,
SpeciesId.GLASTRIER,
SpeciesId.BASCULEGION,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.SCREAM_TAIL,
SpeciesId.IRON_BUNDLE,
SpeciesId.FRIGIBAX,
SpeciesId.ARCTIBAX,
SpeciesId.BAXCALIBUR,
SpeciesId.CHIEN_PAO,
SpeciesId.ALOLA_SANDSHREW,
SpeciesId.ALOLA_SANDSLASH,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_ARTICUNO,
[
SpeciesId.CALYREX,
"ice",
],
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_ZORUA,
SpeciesId.HISUI_ZOROARK,
SpeciesId.HISUI_AVALUGG,
],
[MoveId.POUNCE]: [
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.SCYTHER,
SpeciesId.MEW,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.YANMA,
SpeciesId.PINECO,
SpeciesId.FORRETRESS,
SpeciesId.DUNSPARCE,
SpeciesId.SCIZOR,
SpeciesId.HERACROSS,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SHROOMISH,
SpeciesId.BRELOOM,
SpeciesId.SLAKING,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.SEVIPER,
SpeciesId.SHUPPET,
SpeciesId.BANETTE,
SpeciesId.KRICKETUNE,
SpeciesId.VESPIQUEN,
SpeciesId.YANMEGA,
SpeciesId.HEATRAN,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.SCATTERBUG,
SpeciesId.SPEWPA,
SpeciesId.VIVILLON,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.GRUBBIN,
SpeciesId.CHARJABUG,
SpeciesId.VIKAVOLT,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.MIMIKYU,
SpeciesId.APPLIN,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.CRAMORANT,
SpeciesId.SNOM,
SpeciesId.FROSMOTH,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.KLEAVOR,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.SQUAWKABILLY,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.RELLOR,
SpeciesId.RABSCA,
SpeciesId.FLITTLE,
SpeciesId.ESPATHRA,
SpeciesId.TINKATINK,
SpeciesId.TINKATUFF,
SpeciesId.TINKATON,
SpeciesId.FLAMIGO,
SpeciesId.DUDUNSPARCE,
SpeciesId.IRON_MOTH,
SpeciesId.DIPPLIN,
SpeciesId.HYDRAPPLE,
],
[MoveId.TRAILBLAZE]: [
SpeciesId.BULBASAUR,
SpeciesId.IVYSAUR,
SpeciesId.VENUSAUR,
SpeciesId.EKANS,
SpeciesId.ARBOK,
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.ODDISH,
SpeciesId.GLOOM,
SpeciesId.VILEPLUME,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.BELLSPROUT,
SpeciesId.WEEPINBELL,
SpeciesId.VICTREEBEL,
SpeciesId.DODRIO,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.HITMONCHAN,
SpeciesId.CHANSEY,
SpeciesId.SCYTHER,
SpeciesId.TAUROS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.SNORLAX,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.CHIKORITA,
SpeciesId.BAYLEEF,
SpeciesId.MEGANIUM,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.SPINARAK,
SpeciesId.ARIADOS,
SpeciesId.PICHU,
SpeciesId.IGGLYBUFF,
SpeciesId.MAREEP,
SpeciesId.FLAAFFY,
SpeciesId.AMPHAROS,
SpeciesId.BELLOSSOM,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.SUDOWOODO,
SpeciesId.HOPPIP,
SpeciesId.SKIPLOOM,
SpeciesId.JUMPLUFF,
SpeciesId.AIPOM,
SpeciesId.SUNKERN,
SpeciesId.SUNFLORA,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.GIRAFARIG,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SCIZOR,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TEDDIURSA,
SpeciesId.URSARING,
SpeciesId.SWINUB,
SpeciesId.PILOSWINE,
SpeciesId.DELIBIRD,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.PHANPY,
SpeciesId.DONPHAN,
SpeciesId.STANTLER,
SpeciesId.ELEKID,
SpeciesId.BLISSEY,
SpeciesId.RAIKOU,
SpeciesId.ENTEI,
SpeciesId.SUICUNE,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.POOCHYENA,
SpeciesId.MIGHTYENA,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.SEEDOT,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.VOLBEAT,
SpeciesId.ILLUMISE,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.CACNEA,
SpeciesId.CACTURNE,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.SEVIPER,
SpeciesId.BANETTE,
SpeciesId.TROPIUS,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.TURTWIG,
SpeciesId.GROTLE,
SpeciesId.TORTERRA,
SpeciesId.KRICKETUNE,
SpeciesId.SHINX,
SpeciesId.LUXIO,
SpeciesId.LUXRAY,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.PACHIRISU,
SpeciesId.AMBIPOM,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.BONSLY,
SpeciesId.MUNCHLAX,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.ELECTIVIRE,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.MAMOSWINE,
SpeciesId.FROSLASS,
SpeciesId.SHAYMIN,
SpeciesId.ARCEUS,
SpeciesId.SNIVY,
SpeciesId.SERVINE,
SpeciesId.SERPERIOR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.SEWADDLE,
SpeciesId.SWADLOON,
SpeciesId.LEAVANNY,
SpeciesId.PETILIL,
SpeciesId.LILLIGANT,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.DUCKLETT,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.SWANNA,
SpeciesId.DEERLING,
SpeciesId.SAWSBUCK,
SpeciesId.CHANDELURE,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.LARVESTA,
SpeciesId.VOLCARONA,
SpeciesId.CHESPIN,
SpeciesId.QUILLADIN,
SpeciesId.CHESNAUGHT,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.LITLEO,
SpeciesId.PYROAR,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKIDDO,
SpeciesId.GOGOAT,
SpeciesId.MEOWSTIC,
SpeciesId.MALAMAR,
SpeciesId.SYLVEON,
SpeciesId.HAWLUCHA,
SpeciesId.DEDENNE,
SpeciesId.PHANTUMP,
SpeciesId.TREVENANT,
SpeciesId.ROWLET,
SpeciesId.DARTRIX,
SpeciesId.DECIDUEYE,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.ORICORIO,
SpeciesId.CUTIEFLY,
SpeciesId.RIBOMBEE,
SpeciesId.ROCKRUFF,
SpeciesId.LYCANROC,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.FOMANTIS,
SpeciesId.LURANTIS,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.BOUNSWEET,
SpeciesId.STEENEE,
SpeciesId.TSAREENA,
SpeciesId.COMFEY,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.KOMALA,
SpeciesId.MIMIKYU,
SpeciesId.GROOKEY,
SpeciesId.THWACKEY,
SpeciesId.RILLABOOM,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.SKWOVET,
SpeciesId.GREEDENT,
SpeciesId.FLAPPLE,
SpeciesId.APPLETUN,
SpeciesId.TOXTRICITY,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.PERRSERKER,
SpeciesId.FALINKS,
SpeciesId.ZACIAN,
SpeciesId.ZAMAZENTA,
SpeciesId.URSHIFU,
SpeciesId.ZARUDE,
SpeciesId.GLASTRIER,
SpeciesId.WYRDEER,
SpeciesId.KLEAVOR,
SpeciesId.URSALUNA,
SpeciesId.SNEASLER,
SpeciesId.SPRIGATITO,
SpeciesId.FLORAGATO,
SpeciesId.MEOWSCARADA,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.TAROUNTULA,
SpeciesId.SPIDOPS,
SpeciesId.NYMBLE,
SpeciesId.LOKIX,
SpeciesId.MAUSHOLD,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.SMOLIV,
SpeciesId.DOLLIV,
SpeciesId.ARBOLIVA,
SpeciesId.MASCHIFF,
SpeciesId.MABOSSTIFF,
SpeciesId.SHROODLE,
SpeciesId.GRAFAIAI,
SpeciesId.BRAMBLIN,
SpeciesId.BRAMBLEGHAST,
SpeciesId.TOEDSCOOL,
SpeciesId.TOEDSCRUEL,
SpeciesId.KLAWF,
SpeciesId.CAPSAKID,
SpeciesId.SCOVILLAIN,
SpeciesId.CYCLIZAR,
SpeciesId.CLODSIRE,
SpeciesId.FARIGIRAF,
SpeciesId.BRUTE_BONNET,
SpeciesId.SLITHER_WING,
SpeciesId.WO_CHIEN,
SpeciesId.IRON_LEAVES,
SpeciesId.MUNKIDORI,
SpeciesId.OGERPON,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_MEOWTH,
SpeciesId.GALAR_ZAPDOS,
[
SpeciesId.CALYREX,
"ice",
],
SpeciesId.HISUI_SNEASEL,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_DECIDUEYE,
SpeciesId.PALDEA_TAUROS,
SpeciesId.PALDEA_WOOPER,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.CHILLING_WATER]: [
SpeciesId.SQUIRTLE,
SpeciesId.WARTORTLE,
SpeciesId.BLASTOISE,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.MEOWTH,
SpeciesId.PERSIAN,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.POLIWAG,
SpeciesId.POLIWHIRL,
SpeciesId.POLIWRATH,
SpeciesId.TENTACOOL,
SpeciesId.TENTACRUEL,
SpeciesId.SLOWPOKE,
SpeciesId.SLOWBRO,
SpeciesId.SEEL,
SpeciesId.DEWGONG,
SpeciesId.SHELLDER,
SpeciesId.CLOYSTER,
SpeciesId.CHANSEY,
SpeciesId.HORSEA,
SpeciesId.SEADRA,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.VAPOREON,
SpeciesId.SNORLAX,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.TOTODILE,
SpeciesId.CROCONAW,
SpeciesId.FERALIGATR,
SpeciesId.SENTRET,
SpeciesId.FURRET,
SpeciesId.CHINCHOU,
SpeciesId.LANTURN,
SpeciesId.CLEFFA,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.POLITOED,
SpeciesId.AIPOM,
SpeciesId.WOOPER,
SpeciesId.QUAGSIRE,
SpeciesId.SLOWKING,
SpeciesId.DUNSPARCE,
SpeciesId.QWILFISH,
SpeciesId.DELIBIRD,
SpeciesId.KINGDRA,
SpeciesId.BLISSEY,
SpeciesId.SUICUNE,
SpeciesId.LUGIA,
SpeciesId.MUDKIP,
SpeciesId.MARSHTOMP,
SpeciesId.SWAMPERT,
SpeciesId.LOTAD,
SpeciesId.LOMBRE,
SpeciesId.LUDICOLO,
SpeciesId.NUZLEAF,
SpeciesId.SHIFTRY,
SpeciesId.WINGULL,
SpeciesId.PELIPPER,
SpeciesId.SURSKIT,
SpeciesId.MASQUERAIN,
SpeciesId.SLAKOTH,
SpeciesId.VIGOROTH,
SpeciesId.SLAKING,
SpeciesId.MAKUHITA,
SpeciesId.HARIYAMA,
SpeciesId.VOLBEAT,
SpeciesId.SPOINK,
SpeciesId.GRUMPIG,
SpeciesId.BARBOACH,
SpeciesId.WHISCASH,
SpeciesId.CORPHISH,
SpeciesId.CRAWDAUNT,
SpeciesId.FEEBAS,
SpeciesId.MILOTIC,
SpeciesId.SNORUNT,
SpeciesId.GLALIE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.KYOGRE,
SpeciesId.PIPLUP,
SpeciesId.PRINPLUP,
SpeciesId.EMPOLEON,
SpeciesId.BUIZEL,
SpeciesId.FLOATZEL,
SpeciesId.SHELLOS,
SpeciesId.GASTRODON,
SpeciesId.AMBIPOM,
SpeciesId.HONCHKROW,
SpeciesId.MUNCHLAX,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.SNOVER,
SpeciesId.ABOMASNOW,
SpeciesId.WEAVILE,
SpeciesId.GLACEON,
SpeciesId.FROSLASS,
SpeciesId.PALKIA,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.ARCEUS,
SpeciesId.OSHAWOTT,
SpeciesId.DEWOTT,
SpeciesId.SAMUROTT,
SpeciesId.BASCULIN,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.DUCKLETT,
SpeciesId.SWANNA,
SpeciesId.ALOMOMOLA,
SpeciesId.CUBCHOO,
SpeciesId.BEARTIC,
SpeciesId.CRYOGONAL,
SpeciesId.TORNADUS,
SpeciesId.KELDEO,
SpeciesId.FROAKIE,
SpeciesId.FROGADIER,
SpeciesId.GRENINJA,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.SKRELP,
SpeciesId.DRAGALGE,
SpeciesId.CLAUNCHER,
SpeciesId.CLAWITZER,
SpeciesId.GOOMY,
SpeciesId.SLIGGOO,
SpeciesId.GOODRA,
SpeciesId.BERGMITE,
SpeciesId.AVALUGG,
SpeciesId.POPPLIO,
SpeciesId.BRIONNE,
SpeciesId.PRIMARINA,
SpeciesId.YUNGOOS,
SpeciesId.GUMSHOOS,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
SpeciesId.MAREANIE,
SpeciesId.TOXAPEX,
SpeciesId.DEWPIDER,
SpeciesId.ARAQUANID,
SpeciesId.ORANGURU,
SpeciesId.PASSIMIAN,
SpeciesId.SANDYGAST,
SpeciesId.PALOSSAND,
SpeciesId.BRUXISH,
SpeciesId.SOBBLE,
SpeciesId.DRIZZILE,
SpeciesId.INTELEON,
SpeciesId.CHEWTLE,
SpeciesId.DREDNAW,
SpeciesId.CRAMORANT,
SpeciesId.ARROKUDA,
SpeciesId.BARRASKEWDA,
SpeciesId.IMPIDIMP,
SpeciesId.MORGREM,
SpeciesId.GRIMMSNARL,
SpeciesId.PERRSERKER,
SpeciesId.PINCURCHIN,
SpeciesId.EISCUE,
SpeciesId.BASCULEGION,
SpeciesId.OVERQWIL,
SpeciesId.MEOWSCARADA,
SpeciesId.QUAXLY,
SpeciesId.QUAXWELL,
SpeciesId.QUAQUAVAL,
SpeciesId.LECHONK,
SpeciesId.OINKOLOGNE,
SpeciesId.MAUSHOLD,
SpeciesId.TADBULB,
SpeciesId.BELLIBOLT,
SpeciesId.WIGLETT,
SpeciesId.WUGTRIO,
SpeciesId.FINIZEN,
SpeciesId.PALAFIN,
SpeciesId.FLAMIGO,
SpeciesId.CETODDLE,
SpeciesId.CETITAN,
SpeciesId.VELUZA,
SpeciesId.DONDOZO,
SpeciesId.TATSUGIRI,
SpeciesId.CLODSIRE,
SpeciesId.DUDUNSPARCE,
SpeciesId.IRON_BUNDLE,
SpeciesId.WALKING_WAKE,
SpeciesId.ALOLA_VULPIX,
SpeciesId.ALOLA_NINETALES,
SpeciesId.ALOLA_MEOWTH,
SpeciesId.ALOLA_PERSIAN,
SpeciesId.ETERNAL_FLOETTE,
SpeciesId.GALAR_SLOWPOKE,
SpeciesId.GALAR_SLOWBRO,
SpeciesId.GALAR_SLOWKING,
[
SpeciesId.URSHIFU,
"rapid-strike",
],
SpeciesId.HISUI_QWILFISH,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_SLIGGOO,
SpeciesId.HISUI_GOODRA,
SpeciesId.HISUI_AVALUGG,
[
SpeciesId.PALDEA_TAUROS,
"aqua",
],
SpeciesId.PALDEA_WOOPER,
],
[MoveId.HARD_PRESS]: [
SpeciesId.GRAVELER,
SpeciesId.GOLEM,
SpeciesId.SNORLAX,
SpeciesId.MEW,
SpeciesId.FORRETRESS,
SpeciesId.SCIZOR,
SpeciesId.TYRANITAR,
SpeciesId.SWAMPERT,
SpeciesId.SLAKING,
SpeciesId.CRAWDAUNT,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.REGIROCK,
SpeciesId.REGISTEEL,
SpeciesId.TORTERRA,
SpeciesId.SHIELDON,
SpeciesId.BASTIODON,
SpeciesId.BRONZONG,
SpeciesId.HIPPOWDON,
SpeciesId.ABOMASNOW,
SpeciesId.MAGNEZONE,
SpeciesId.MAMOSWINE,
SpeciesId.PROBOPASS,
SpeciesId.DUSKNOIR,
SpeciesId.HEATRAN,
SpeciesId.REGIGIGAS,
SpeciesId.EMBOAR,
SpeciesId.CONKELDURR,
SpeciesId.BEARTIC,
SpeciesId.GOLURK,
SpeciesId.CRABOMINABLE,
SpeciesId.STONJOURNER,
SpeciesId.COPPERAJAH,
SpeciesId.URSALUNA,
SpeciesId.GARGANACL,
SpeciesId.TINKATON,
SpeciesId.PALAFIN,
SpeciesId.REVAVROOM,
SpeciesId.CETITAN,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_HANDS,
SpeciesId.OKIDOGI,
SpeciesId.ARCHALUDON,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.HISUI_AVALUGG,
SpeciesId.BLOODMOON_URSALUNA,
],
[MoveId.DRAGON_CHEER]: [
SpeciesId.CHARIZARD,
SpeciesId.GYARADOS,
SpeciesId.LAPRAS,
SpeciesId.DRATINI,
SpeciesId.DRAGONAIR,
SpeciesId.DRAGONITE,
SpeciesId.MEW,
SpeciesId.AMPHAROS,
SpeciesId.SCEPTILE,
SpeciesId.FLYGON,
SpeciesId.SWABLU,
SpeciesId.ALTARIA,
SpeciesId.MILOTIC,
SpeciesId.BAGON,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.LATIAS,
SpeciesId.LATIOS,
SpeciesId.RAYQUAZA,
SpeciesId.CRANIDOS,
SpeciesId.RAMPARDOS,
SpeciesId.GIBLE,
SpeciesId.GABITE,
SpeciesId.GARCHOMP,
SpeciesId.AXEW,
SpeciesId.FRAXURE,
SpeciesId.HAXORUS,
SpeciesId.DEINO,
SpeciesId.ZWEILOUS,
SpeciesId.HYDREIGON,
SpeciesId.RESHIRAM,
SpeciesId.ZEKROM,
SpeciesId.KYUREM,
SpeciesId.GOODRA,
SpeciesId.NOIVERN,
SpeciesId.SALAZZLE,
SpeciesId.JANGMO_O,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.DURALUDON,
SpeciesId.DRAKLOAK,
SpeciesId.DRAGAPULT,
SpeciesId.REGIDRAGO,
SpeciesId.CYCLIZAR,
SpeciesId.TATSUGIRI,
SpeciesId.IRON_JUGULIS,
SpeciesId.BAXCALIBUR,
SpeciesId.ROARING_MOON,
SpeciesId.KORAIDON,
SpeciesId.MIRAIDON,
SpeciesId.WALKING_WAKE,
SpeciesId.DIPPLIN,
SpeciesId.ARCHALUDON,
SpeciesId.HYDRAPPLE,
SpeciesId.GOUGING_FIRE,
SpeciesId.RAGING_BOLT,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.HISUI_GOODRA,
],
[MoveId.ALLURING_VOICE]: [
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.CLEFAIRY,
SpeciesId.CLEFABLE,
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.DEWGONG,
SpeciesId.LAPRAS,
SpeciesId.EEVEE,
SpeciesId.VAPOREON,
SpeciesId.JOLTEON,
SpeciesId.FLAREON,
SpeciesId.MEW,
SpeciesId.CLEFFA,
SpeciesId.IGGLYBUFF,
SpeciesId.MARILL,
SpeciesId.AZUMARILL,
SpeciesId.ESPEON,
SpeciesId.UMBREON,
SpeciesId.BLISSEY,
SpeciesId.RALTS,
SpeciesId.KIRLIA,
SpeciesId.GARDEVOIR,
SpeciesId.AZURILL,
SpeciesId.PLUSLE,
SpeciesId.MINUN,
SpeciesId.FLYGON,
SpeciesId.ALTARIA,
SpeciesId.MILOTIC,
SpeciesId.LATIAS,
SpeciesId.PACHIRISU,
SpeciesId.FINNEON,
SpeciesId.LUMINEON,
SpeciesId.LEAFEON,
SpeciesId.GLACEON,
SpeciesId.GALLADE,
SpeciesId.PHIONE,
SpeciesId.MANAPHY,
SpeciesId.LILLIGANT,
SpeciesId.MINCCINO,
SpeciesId.CINCCINO,
SpeciesId.SWANNA,
SpeciesId.ALOMOMOLA,
SpeciesId.MELOETTA,
SpeciesId.FLABEBE,
SpeciesId.FLOETTE,
SpeciesId.FLORGES,
SpeciesId.MEOWSTIC,
SpeciesId.SYLVEON,
SpeciesId.PRIMARINA,
SpeciesId.ORICORIO,
SpeciesId.RIBOMBEE,
SpeciesId.COMFEY,
SpeciesId.ALCREMIE,
SpeciesId.ENAMORUS,
SpeciesId.SKELEDIRGE,
SpeciesId.FIDOUGH,
SpeciesId.DACHSBUN,
SpeciesId.ARBOLIVA,
SpeciesId.FEZANDIPITI,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ETERNAL_FLOETTE,
[
SpeciesId.INDEEDEE,
"female",
],
],
[MoveId.TEMPER_FLARE]: [
SpeciesId.CHARMANDER,
SpeciesId.CHARMELEON,
SpeciesId.CHARIZARD,
SpeciesId.GROWLITHE,
SpeciesId.ARCANINE,
SpeciesId.MAGMAR,
SpeciesId.GYARADOS,
SpeciesId.FLAREON,
SpeciesId.MOLTRES,
SpeciesId.MEW,
SpeciesId.CYNDAQUIL,
SpeciesId.QUILAVA,
SpeciesId.TYPHLOSION,
SpeciesId.SNUBBULL,
SpeciesId.GRANBULL,
SpeciesId.SLUGMA,
SpeciesId.MAGCARGO,
SpeciesId.HOUNDOUR,
SpeciesId.HOUNDOOM,
SpeciesId.MAGBY,
SpeciesId.TORCHIC,
SpeciesId.COMBUSKEN,
SpeciesId.BLAZIKEN,
SpeciesId.NUMEL,
SpeciesId.CAMERUPT,
SpeciesId.TORKOAL,
SpeciesId.SHELGON,
SpeciesId.SALAMENCE,
SpeciesId.CHIMCHAR,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.DRIFLOON,
SpeciesId.DRIFBLIM,
SpeciesId.STUNKY,
SpeciesId.SKUNTANK,
SpeciesId.RHYPERIOR,
SpeciesId.MAGMORTAR,
SpeciesId.TEPIG,
SpeciesId.PIGNITE,
SpeciesId.EMBOAR,
SpeciesId.LITWICK,
SpeciesId.LAMPENT,
SpeciesId.CHANDELURE,
SpeciesId.FLETCHINDER,
SpeciesId.TALONFLAME,
SpeciesId.PYROAR,
SpeciesId.LITTEN,
SpeciesId.TORRACAT,
SpeciesId.INCINEROAR,
SpeciesId.TOUCANNON,
SpeciesId.SALANDIT,
SpeciesId.SALAZZLE,
SpeciesId.SCORBUNNY,
SpeciesId.RABOOT,
SpeciesId.CINDERACE,
SpeciesId.ROLYCOLY,
SpeciesId.CARKOL,
SpeciesId.COALOSSAL,
SpeciesId.FUECOCO,
SpeciesId.CROCALOR,
SpeciesId.SKELEDIRGE,
SpeciesId.KLAWF,
SpeciesId.SCOVILLAIN,
SpeciesId.REVAVROOM,
SpeciesId.CYCLIZAR,
SpeciesId.GREAT_TUSK,
SpeciesId.SLITHER_WING,
SpeciesId.CHI_YU,
SpeciesId.KORAIDON,
SpeciesId.GOUGING_FIRE,
SpeciesId.HISUI_GROWLITHE,
SpeciesId.HISUI_ARCANINE,
SpeciesId.HISUI_TYPHLOSION,
[
SpeciesId.PALDEA_TAUROS,
"blaze",
],
],
[MoveId.SUPERCELL_SLAM]:[
SpeciesId.ELECTRODE,
SpeciesId.RHYHORN,
SpeciesId.RHYDON,
SpeciesId.ELECTABUZZ,
SpeciesId.SNORLAX,
SpeciesId.ZAPDOS,
SpeciesId.MEW,
SpeciesId.AMPHAROS,
SpeciesId.ELEKID,
SpeciesId.RAIKOU,
SpeciesId.MANECTRIC,
SpeciesId.LUXRAY,
SpeciesId.RAMPARDOS,
SpeciesId.MAGNEZONE,
SpeciesId.RHYPERIOR,
SpeciesId.ELECTIVIRE,
SpeciesId.PROBOPASS,
SpeciesId.ARCEUS,
SpeciesId.BLITZLE,
SpeciesId.ZEBSTRIKA,
SpeciesId.EELEKTROSS,
SpeciesId.THUNDURUS,
SpeciesId.ZEKROM,
SpeciesId.VIKAVOLT,
SpeciesId.PINCURCHIN,
SpeciesId.COPPERAJAH,
SpeciesId.REGIELEKI,
SpeciesId.URSALUNA,
SpeciesId.PAWMOT,
SpeciesId.BELLIBOLT,
SpeciesId.KILOWATTREL,
SpeciesId.CYCLIZAR,
SpeciesId.GREAT_TUSK,
SpeciesId.SANDY_SHOCKS,
SpeciesId.IRON_TREADS,
SpeciesId.IRON_HANDS,
SpeciesId.IRON_THORNS,
SpeciesId.MIRAIDON,
SpeciesId.RAGING_BOLT,
SpeciesId.IRON_CROWN,
SpeciesId.TERAPAGOS,
SpeciesId.ALOLA_GEODUDE,
SpeciesId.ALOLA_GRAVELER,
SpeciesId.ALOLA_GOLEM,
SpeciesId.HISUI_ELECTRODE,
],
[MoveId.PSYCHIC_NOISE]: [
SpeciesId.JIGGLYPUFF,
SpeciesId.WIGGLYTUFF,
SpeciesId.VENONAT,
SpeciesId.VENOMOTH,
SpeciesId.PSYDUCK,
SpeciesId.GOLDUCK,
SpeciesId.SLOWBRO,
SpeciesId.GENGAR,
SpeciesId.DROWZEE,
SpeciesId.HYPNO,
SpeciesId.EXEGGCUTE,
SpeciesId.EXEGGUTOR,
SpeciesId.LAPRAS,
SpeciesId.MEWTWO,
SpeciesId.MEW,
SpeciesId.NOCTOWL,
SpeciesId.YANMA,
SpeciesId.ESPEON,
SpeciesId.MURKROW,
SpeciesId.SLOWKING,
SpeciesId.MISDREAVUS,
SpeciesId.GIRAFARIG,
SpeciesId.LUGIA,
SpeciesId.GARDEVOIR,
SpeciesId.GRUMPIG,
SpeciesId.FLYGON,
SpeciesId.CHIMECHO,
SpeciesId.METANG,
SpeciesId.METAGROSS,
SpeciesId.LATIOS,
SpeciesId.JIRACHI,
SpeciesId.DEOXYS,
SpeciesId.VESPIQUEN,
SpeciesId.MISMAGIUS,
SpeciesId.HONCHKROW,
SpeciesId.CHINGLING,
SpeciesId.BRONZOR,
SpeciesId.BRONZONG,
SpeciesId.YANMEGA,
SpeciesId.UXIE,
SpeciesId.MESPRIT,
SpeciesId.GOTHITA,
SpeciesId.GOTHORITA,
SpeciesId.GOTHITELLE,
SpeciesId.REUNICLUS,
SpeciesId.DELPHOX,
SpeciesId.FLORGES,
SpeciesId.ESPURR,
SpeciesId.MEOWSTIC,
SpeciesId.MALAMAR,
SpeciesId.TREVENANT,
SpeciesId.NOIVERN,
SpeciesId.HOOPA,
SpeciesId.PRIMARINA,
SpeciesId.RIBOMBEE,
SpeciesId.ORANGURU,
SpeciesId.BRUXISH,
SpeciesId.TOXTRICITY,
SpeciesId.HATTERENE,
SpeciesId.INDEEDEE,
SpeciesId.WYRDEER,
SpeciesId.RABSCA,
SpeciesId.FARIGIRAF,
SpeciesId.SCREAM_TAIL,
SpeciesId.MUNKIDORI,
SpeciesId.IRON_CROWN,
SpeciesId.ALOLA_RAICHU,
SpeciesId.ALOLA_EXEGGUTOR,
SpeciesId.GALAR_ARTICUNO,
SpeciesId.GALAR_SLOWKING,
SpeciesId.HISUI_BRAVIARY,
],
[MoveId.UPPER_HAND]: [
SpeciesId.PIKACHU,
SpeciesId.RAICHU,
SpeciesId.POLIWRATH,
SpeciesId.HITMONLEE,
SpeciesId.HITMONCHAN,
SpeciesId.MEW,
SpeciesId.AIPOM,
SpeciesId.HERACROSS,
SpeciesId.SNEASEL,
SpeciesId.TYROGUE,
SpeciesId.HITMONTOP,
SpeciesId.TREECKO,
SpeciesId.GROVYLE,
SpeciesId.SCEPTILE,
SpeciesId.BLAZIKEN,
SpeciesId.SHIFTRY,
SpeciesId.HARIYAMA,
SpeciesId.MEDITITE,
SpeciesId.MEDICHAM,
SpeciesId.ZANGOOSE,
SpeciesId.MONFERNO,
SpeciesId.INFERNAPE,
SpeciesId.AMBIPOM,
SpeciesId.RIOLU,
SpeciesId.LUCARIO,
SpeciesId.CROAGUNK,
SpeciesId.TOXICROAK,
SpeciesId.WEAVILE,
SpeciesId.GALLADE,
SpeciesId.SAMUROTT,
SpeciesId.CONKELDURR,
SpeciesId.SCRAGGY,
SpeciesId.SCRAFTY,
SpeciesId.MIENFOO,
SpeciesId.MIENSHAO,
SpeciesId.COBALION,
SpeciesId.TERRAKION,
SpeciesId.VIRIZION,
SpeciesId.KELDEO,
SpeciesId.GRENINJA,
SpeciesId.TALONFLAME,
SpeciesId.HAWLUCHA,
SpeciesId.CRABRAWLER,
SpeciesId.CRABOMINABLE,
[
SpeciesId.LYCANROC,
"midnight",
],
SpeciesId.PASSIMIAN,
SpeciesId.HAKAMO_O,
SpeciesId.KOMMO_O,
SpeciesId.FALINKS,
SpeciesId.SNEASLER,
SpeciesId.QUAQUAVAL,
SpeciesId.SPIDOPS,
SpeciesId.PAWMO,
SpeciesId.PAWMOT,
SpeciesId.FLAMIGO,
SpeciesId.OKIDOGI,
SpeciesId.ALOLA_RAICHU,
SpeciesId.HISUI_SAMUROTT,
SpeciesId.HISUI_LILLIGANT,
SpeciesId.HISUI_DECIDUEYE,
],
};
interface SpeciesTmMoves {
[key: number]: (MoveId | [string | SpeciesId, MoveId])[];
}
function transposeTmSpecies(): SpeciesTmMoves {
const flipped: SpeciesTmMoves = {};
for (const move in tmSpecies) {
const moveKey = Number(move);
const speciesList = tmSpecies[move];
for (const species of speciesList) {
if (Array.isArray(species)) {
// Extract base species and all associated forms
const [ baseSpecies, ...forms ] = species;
const speciesKey = Number(baseSpecies);
if (!flipped[speciesKey]) {
flipped[speciesKey] = [];
}
for (const form of forms) {
flipped[speciesKey].push([ form, moveKey ]);
}
} else {
const speciesKey = Number(species);
if (!flipped[speciesKey]) {
flipped[speciesKey] = [];
}
flipped[speciesKey].push(moveKey);
}
}
}
return flipped;
}
export const speciesTmMoves: SpeciesTmMoves = transposeTmSpecies();
interface TmPoolTiers {
[key: number]: ModifierTier
}
export const tmPoolTiers: TmPoolTiers = {
[MoveId.MEGA_PUNCH]: ModifierTier.GREAT,
[MoveId.PAY_DAY]: ModifierTier.ULTRA,
[MoveId.FIRE_PUNCH]: ModifierTier.GREAT,
[MoveId.ICE_PUNCH]: ModifierTier.GREAT,
[MoveId.THUNDER_PUNCH]: ModifierTier.GREAT,
[MoveId.SWORDS_DANCE]: ModifierTier.COMMON,
[MoveId.CUT]: ModifierTier.COMMON,
[MoveId.FLY]: ModifierTier.COMMON,
[MoveId.MEGA_KICK]: ModifierTier.GREAT,
[MoveId.BODY_SLAM]: ModifierTier.GREAT,
[MoveId.TAKE_DOWN]: ModifierTier.GREAT,
[MoveId.DOUBLE_EDGE]: ModifierTier.ULTRA,
[MoveId.PIN_MISSILE]: ModifierTier.COMMON,
[MoveId.ROAR]: ModifierTier.COMMON,
[MoveId.FLAMETHROWER]: ModifierTier.ULTRA,
[MoveId.HYDRO_PUMP]: ModifierTier.ULTRA,
[MoveId.SURF]: ModifierTier.ULTRA,
[MoveId.ICE_BEAM]: ModifierTier.ULTRA,
[MoveId.BLIZZARD]: ModifierTier.ULTRA,
[MoveId.PSYBEAM]: ModifierTier.GREAT,
[MoveId.HYPER_BEAM]: ModifierTier.ULTRA,
[MoveId.LOW_KICK]: ModifierTier.COMMON,
[MoveId.COUNTER]: ModifierTier.COMMON,
[MoveId.STRENGTH]: ModifierTier.GREAT,
[MoveId.SOLAR_BEAM]: ModifierTier.ULTRA,
[MoveId.FIRE_SPIN]: ModifierTier.COMMON,
[MoveId.THUNDERBOLT]: ModifierTier.ULTRA,
[MoveId.THUNDER_WAVE]: ModifierTier.COMMON,
[MoveId.THUNDER]: ModifierTier.ULTRA,
[MoveId.EARTHQUAKE]: ModifierTier.ULTRA,
[MoveId.DIG]: ModifierTier.GREAT,
[MoveId.TOXIC]: ModifierTier.GREAT,
[MoveId.PSYCHIC]: ModifierTier.ULTRA,
[MoveId.AGILITY]: ModifierTier.COMMON,
[MoveId.NIGHT_SHADE]: ModifierTier.COMMON,
[MoveId.SCREECH]: ModifierTier.COMMON,
[MoveId.DOUBLE_TEAM]: ModifierTier.COMMON,
[MoveId.CONFUSE_RAY]: ModifierTier.COMMON,
[MoveId.LIGHT_SCREEN]: ModifierTier.COMMON,
[MoveId.HAZE]: ModifierTier.COMMON,
[MoveId.REFLECT]: ModifierTier.COMMON,
[MoveId.FOCUS_ENERGY]: ModifierTier.COMMON,
[MoveId.METRONOME]: ModifierTier.COMMON,
[MoveId.SELF_DESTRUCT]: ModifierTier.GREAT,
[MoveId.FIRE_BLAST]: ModifierTier.ULTRA,
[MoveId.WATERFALL]: ModifierTier.GREAT,
[MoveId.SWIFT]: ModifierTier.COMMON,
[MoveId.AMNESIA]: ModifierTier.COMMON,
[MoveId.DREAM_EATER]: ModifierTier.GREAT,
[MoveId.LEECH_LIFE]: ModifierTier.ULTRA,
[MoveId.FLASH]: ModifierTier.COMMON,
[MoveId.EXPLOSION]: ModifierTier.GREAT,
[MoveId.REST]: ModifierTier.COMMON,
[MoveId.ROCK_SLIDE]: ModifierTier.GREAT,
[MoveId.TRI_ATTACK]: ModifierTier.ULTRA,
[MoveId.SUPER_FANG]: ModifierTier.COMMON,
[MoveId.SUBSTITUTE]: ModifierTier.COMMON,
[MoveId.THIEF]: ModifierTier.GREAT,
[MoveId.SNORE]: ModifierTier.COMMON,
[MoveId.CURSE]: ModifierTier.COMMON,
[MoveId.REVERSAL]: ModifierTier.COMMON,
[MoveId.SPITE]: ModifierTier.COMMON,
[MoveId.PROTECT]: ModifierTier.COMMON,
[MoveId.SCARY_FACE]: ModifierTier.COMMON,
[MoveId.SLUDGE_BOMB]: ModifierTier.GREAT,
[MoveId.MUD_SLAP]: ModifierTier.COMMON,
[MoveId.SPIKES]: ModifierTier.COMMON,
[MoveId.ICY_WIND]: ModifierTier.GREAT,
[MoveId.OUTRAGE]: ModifierTier.ULTRA,
[MoveId.SANDSTORM]: ModifierTier.COMMON,
[MoveId.GIGA_DRAIN]: ModifierTier.ULTRA,
[MoveId.ENDURE]: ModifierTier.COMMON,
[MoveId.CHARM]: ModifierTier.COMMON,
[MoveId.FALSE_SWIPE]: ModifierTier.COMMON,
[MoveId.SWAGGER]: ModifierTier.COMMON,
[MoveId.STEEL_WING]: ModifierTier.GREAT,
[MoveId.ATTRACT]: ModifierTier.COMMON,
[MoveId.SLEEP_TALK]: ModifierTier.COMMON,
[MoveId.HEAL_BELL]: ModifierTier.COMMON,
[MoveId.RETURN]: ModifierTier.ULTRA,
[MoveId.FRUSTRATION]: ModifierTier.COMMON,
[MoveId.SAFEGUARD]: ModifierTier.COMMON,
[MoveId.PAIN_SPLIT]: ModifierTier.COMMON,
[MoveId.MEGAHORN]: ModifierTier.ULTRA,
[MoveId.BATON_PASS]: ModifierTier.COMMON,
[MoveId.ENCORE]: ModifierTier.COMMON,
[MoveId.IRON_TAIL]: ModifierTier.GREAT,
[MoveId.METAL_CLAW]: ModifierTier.COMMON,
[MoveId.SYNTHESIS]: ModifierTier.GREAT,
[MoveId.HIDDEN_POWER]: ModifierTier.GREAT,
[MoveId.RAIN_DANCE]: ModifierTier.COMMON,
[MoveId.SUNNY_DAY]: ModifierTier.COMMON,
[MoveId.CRUNCH]: ModifierTier.GREAT,
[MoveId.PSYCH_UP]: ModifierTier.COMMON,
[MoveId.SHADOW_BALL]: ModifierTier.ULTRA,
[MoveId.FUTURE_SIGHT]: ModifierTier.GREAT,
[MoveId.ROCK_SMASH]: ModifierTier.COMMON,
[MoveId.WHIRLPOOL]: ModifierTier.COMMON,
[MoveId.BEAT_UP]: ModifierTier.COMMON,
[MoveId.UPROAR]: ModifierTier.GREAT,
[MoveId.HEAT_WAVE]: ModifierTier.ULTRA,
[MoveId.HAIL]: ModifierTier.COMMON,
[MoveId.TORMENT]: ModifierTier.COMMON,
[MoveId.WILL_O_WISP]: ModifierTier.COMMON,
[MoveId.FACADE]: ModifierTier.GREAT,
[MoveId.FOCUS_PUNCH]: ModifierTier.COMMON,
[MoveId.NATURE_POWER]: ModifierTier.COMMON,
[MoveId.CHARGE]: ModifierTier.COMMON,
[MoveId.TAUNT]: ModifierTier.COMMON,
[MoveId.HELPING_HAND]: ModifierTier.COMMON,
[MoveId.TRICK]: ModifierTier.COMMON,
[MoveId.SUPERPOWER]: ModifierTier.ULTRA,
[MoveId.RECYCLE]: ModifierTier.COMMON,
[MoveId.REVENGE]: ModifierTier.GREAT,
[MoveId.BRICK_BREAK]: ModifierTier.GREAT,
[MoveId.KNOCK_OFF]: ModifierTier.GREAT,
[MoveId.ENDEAVOR]: ModifierTier.COMMON,
[MoveId.SKILL_SWAP]: ModifierTier.COMMON,
[MoveId.IMPRISON]: ModifierTier.COMMON,
[MoveId.SECRET_POWER]: ModifierTier.COMMON,
[MoveId.DIVE]: ModifierTier.GREAT,
[MoveId.FEATHER_DANCE]: ModifierTier.COMMON,
[MoveId.BLAZE_KICK]: ModifierTier.GREAT,
[MoveId.HYPER_VOICE]: ModifierTier.ULTRA,
[MoveId.BLAST_BURN]: ModifierTier.ULTRA,
[MoveId.HYDRO_CANNON]: ModifierTier.ULTRA,
[MoveId.WEATHER_BALL]: ModifierTier.COMMON,
[MoveId.FAKE_TEARS]: ModifierTier.COMMON,
[MoveId.AIR_CUTTER]: ModifierTier.GREAT,
[MoveId.OVERHEAT]: ModifierTier.ULTRA,
[MoveId.ROCK_TOMB]: ModifierTier.GREAT,
[MoveId.METAL_SOUND]: ModifierTier.COMMON,
[MoveId.COSMIC_POWER]: ModifierTier.COMMON,
[MoveId.SIGNAL_BEAM]: ModifierTier.GREAT,
[MoveId.SAND_TOMB]: ModifierTier.COMMON,
[MoveId.MUDDY_WATER]: ModifierTier.GREAT,
[MoveId.BULLET_SEED]: ModifierTier.GREAT,
[MoveId.AERIAL_ACE]: ModifierTier.GREAT,
[MoveId.ICICLE_SPEAR]: ModifierTier.GREAT,
[MoveId.IRON_DEFENSE]: ModifierTier.GREAT,
[MoveId.DRAGON_CLAW]: ModifierTier.ULTRA,
[MoveId.FRENZY_PLANT]: ModifierTier.ULTRA,
[MoveId.BULK_UP]: ModifierTier.COMMON,
[MoveId.BOUNCE]: ModifierTier.GREAT,
[MoveId.MUD_SHOT]: ModifierTier.GREAT,
[MoveId.POISON_TAIL]: ModifierTier.GREAT,
[MoveId.COVET]: ModifierTier.GREAT,
[MoveId.MAGICAL_LEAF]: ModifierTier.GREAT,
[MoveId.CALM_MIND]: ModifierTier.GREAT,
[MoveId.LEAF_BLADE]: ModifierTier.ULTRA,
[MoveId.DRAGON_DANCE]: ModifierTier.GREAT,
[MoveId.ROCK_BLAST]: ModifierTier.GREAT,
[MoveId.WATER_PULSE]: ModifierTier.GREAT,
[MoveId.ROOST]: ModifierTier.GREAT,
[MoveId.GRAVITY]: ModifierTier.COMMON,
[MoveId.GYRO_BALL]: ModifierTier.COMMON,
[MoveId.BRINE]: ModifierTier.GREAT,
[MoveId.PLUCK]: ModifierTier.GREAT,
[MoveId.TAILWIND]: ModifierTier.GREAT,
[MoveId.U_TURN]: ModifierTier.GREAT,
[MoveId.CLOSE_COMBAT]: ModifierTier.ULTRA,
[MoveId.PAYBACK]: ModifierTier.COMMON,
[MoveId.ASSURANCE]: ModifierTier.COMMON,
[MoveId.EMBARGO]: ModifierTier.COMMON,
[MoveId.FLING]: ModifierTier.COMMON,
[MoveId.GASTRO_ACID]: ModifierTier.GREAT,
[MoveId.POWER_SWAP]: ModifierTier.COMMON,
[MoveId.GUARD_SWAP]: ModifierTier.COMMON,
[MoveId.WORRY_SEED]: ModifierTier.GREAT,
[MoveId.TOXIC_SPIKES]: ModifierTier.GREAT,
[MoveId.FLARE_BLITZ]: ModifierTier.ULTRA,
[MoveId.AURA_SPHERE]: ModifierTier.GREAT,
[MoveId.ROCK_POLISH]: ModifierTier.COMMON,
[MoveId.POISON_JAB]: ModifierTier.GREAT,
[MoveId.DARK_PULSE]: ModifierTier.GREAT,
[MoveId.AQUA_TAIL]: ModifierTier.GREAT,
[MoveId.SEED_BOMB]: ModifierTier.GREAT,
[MoveId.AIR_SLASH]: ModifierTier.GREAT,
[MoveId.X_SCISSOR]: ModifierTier.GREAT,
[MoveId.BUG_BUZZ]: ModifierTier.GREAT,
[MoveId.DRAGON_PULSE]: ModifierTier.GREAT,
[MoveId.POWER_GEM]: ModifierTier.GREAT,
[MoveId.DRAIN_PUNCH]: ModifierTier.GREAT,
[MoveId.VACUUM_WAVE]: ModifierTier.COMMON,
[MoveId.FOCUS_BLAST]: ModifierTier.GREAT,
[MoveId.ENERGY_BALL]: ModifierTier.GREAT,
[MoveId.BRAVE_BIRD]: ModifierTier.ULTRA,
[MoveId.EARTH_POWER]: ModifierTier.ULTRA,
[MoveId.GIGA_IMPACT]: ModifierTier.GREAT,
[MoveId.NASTY_PLOT]: ModifierTier.COMMON,
[MoveId.AVALANCHE]: ModifierTier.GREAT,
[MoveId.SHADOW_CLAW]: ModifierTier.GREAT,
[MoveId.THUNDER_FANG]: ModifierTier.GREAT,
[MoveId.ICE_FANG]: ModifierTier.GREAT,
[MoveId.FIRE_FANG]: ModifierTier.GREAT,
[MoveId.PSYCHO_CUT]: ModifierTier.GREAT,
[MoveId.ZEN_HEADBUTT]: ModifierTier.GREAT,
[MoveId.FLASH_CANNON]: ModifierTier.GREAT,
[MoveId.ROCK_CLIMB]: ModifierTier.GREAT,
[MoveId.DEFOG]: ModifierTier.COMMON,
[MoveId.TRICK_ROOM]: ModifierTier.COMMON,
[MoveId.DRACO_METEOR]: ModifierTier.ULTRA,
[MoveId.LEAF_STORM]: ModifierTier.ULTRA,
[MoveId.POWER_WHIP]: ModifierTier.ULTRA,
[MoveId.CROSS_POISON]: ModifierTier.GREAT,
[MoveId.GUNK_SHOT]: ModifierTier.ULTRA,
[MoveId.IRON_HEAD]: ModifierTier.GREAT,
[MoveId.STONE_EDGE]: ModifierTier.ULTRA,
[MoveId.STEALTH_ROCK]: ModifierTier.COMMON,
[MoveId.GRASS_KNOT]: ModifierTier.ULTRA,
[MoveId.BUG_BITE]: ModifierTier.GREAT,
[MoveId.CHARGE_BEAM]: ModifierTier.GREAT,
[MoveId.HONE_CLAWS]: ModifierTier.COMMON,
[MoveId.WONDER_ROOM]: ModifierTier.COMMON,
[MoveId.PSYSHOCK]: ModifierTier.GREAT,
[MoveId.VENOSHOCK]: ModifierTier.GREAT,
[MoveId.MAGIC_ROOM]: ModifierTier.COMMON,
[MoveId.SMACK_DOWN]: ModifierTier.COMMON,
[MoveId.SLUDGE_WAVE]: ModifierTier.GREAT,
[MoveId.HEAVY_SLAM]: ModifierTier.GREAT,
[MoveId.ELECTRO_BALL]: ModifierTier.GREAT,
[MoveId.FLAME_CHARGE]: ModifierTier.GREAT,
[MoveId.LOW_SWEEP]: ModifierTier.GREAT,
[MoveId.ACID_SPRAY]: ModifierTier.COMMON,
[MoveId.FOUL_PLAY]: ModifierTier.ULTRA,
[MoveId.ROUND]: ModifierTier.COMMON,
[MoveId.ECHOED_VOICE]: ModifierTier.COMMON,
[MoveId.STORED_POWER]: ModifierTier.COMMON,
[MoveId.ALLY_SWITCH]: ModifierTier.COMMON,
[MoveId.SCALD]: ModifierTier.GREAT,
[MoveId.HEX]: ModifierTier.GREAT,
[MoveId.SKY_DROP]: ModifierTier.GREAT,
[MoveId.INCINERATE]: ModifierTier.GREAT,
[MoveId.QUASH]: ModifierTier.COMMON,
[MoveId.ACROBATICS]: ModifierTier.GREAT,
[MoveId.RETALIATE]: ModifierTier.GREAT,
[MoveId.WATER_PLEDGE]: ModifierTier.GREAT,
[MoveId.FIRE_PLEDGE]: ModifierTier.GREAT,
[MoveId.GRASS_PLEDGE]: ModifierTier.GREAT,
[MoveId.VOLT_SWITCH]: ModifierTier.GREAT,
[MoveId.STRUGGLE_BUG]: ModifierTier.COMMON,
[MoveId.BULLDOZE]: ModifierTier.GREAT,
[MoveId.FROST_BREATH]: ModifierTier.GREAT,
[MoveId.DRAGON_TAIL]: ModifierTier.GREAT,
[MoveId.WORK_UP]: ModifierTier.COMMON,
[MoveId.ELECTROWEB]: ModifierTier.GREAT,
[MoveId.WILD_CHARGE]: ModifierTier.GREAT,
[MoveId.DRILL_RUN]: ModifierTier.GREAT,
[MoveId.RAZOR_SHELL]: ModifierTier.GREAT,
[MoveId.HEAT_CRASH]: ModifierTier.GREAT,
[MoveId.TAIL_SLAP]: ModifierTier.GREAT,
[MoveId.HURRICANE]: ModifierTier.ULTRA,
[MoveId.SNARL]: ModifierTier.COMMON,
[MoveId.PHANTOM_FORCE]: ModifierTier.ULTRA,
[MoveId.PETAL_BLIZZARD]: ModifierTier.GREAT,
[MoveId.DISARMING_VOICE]: ModifierTier.GREAT,
[MoveId.DRAINING_KISS]: ModifierTier.GREAT,
[MoveId.GRASSY_TERRAIN]: ModifierTier.COMMON,
[MoveId.MISTY_TERRAIN]: ModifierTier.COMMON,
[MoveId.PLAY_ROUGH]: ModifierTier.GREAT,
[MoveId.CONFIDE]: ModifierTier.COMMON,
[MoveId.MYSTICAL_FIRE]: ModifierTier.GREAT,
[MoveId.EERIE_IMPULSE]: ModifierTier.COMMON,
[MoveId.VENOM_DRENCH]: ModifierTier.COMMON,
[MoveId.ELECTRIC_TERRAIN]: ModifierTier.COMMON,
[MoveId.DAZZLING_GLEAM]: ModifierTier.ULTRA,
[MoveId.INFESTATION]: ModifierTier.COMMON,
[MoveId.POWER_UP_PUNCH]: ModifierTier.GREAT,
[MoveId.DARKEST_LARIAT]: ModifierTier.GREAT,
[MoveId.HIGH_HORSEPOWER]: ModifierTier.ULTRA,
[MoveId.SOLAR_BLADE]: ModifierTier.GREAT,
[MoveId.THROAT_CHOP]: ModifierTier.GREAT,
[MoveId.POLLEN_PUFF]: ModifierTier.GREAT,
[MoveId.PSYCHIC_TERRAIN]: ModifierTier.COMMON,
[MoveId.LUNGE]: ModifierTier.GREAT,
[MoveId.SPEED_SWAP]: ModifierTier.COMMON,
[MoveId.SMART_STRIKE]: ModifierTier.GREAT,
[MoveId.BRUTAL_SWING]: ModifierTier.GREAT,
[MoveId.AURORA_VEIL]: ModifierTier.COMMON,
[MoveId.PSYCHIC_FANGS]: ModifierTier.GREAT,
[MoveId.STOMPING_TANTRUM]: ModifierTier.GREAT,
[MoveId.LIQUIDATION]: ModifierTier.ULTRA,
[MoveId.BODY_PRESS]: ModifierTier.ULTRA,
[MoveId.BREAKING_SWIPE]: ModifierTier.GREAT,
[MoveId.STEEL_BEAM]: ModifierTier.ULTRA,
[MoveId.EXPANDING_FORCE]: ModifierTier.GREAT,
[MoveId.STEEL_ROLLER]: ModifierTier.COMMON,
[MoveId.SCALE_SHOT]: ModifierTier.ULTRA,
[MoveId.METEOR_BEAM]: ModifierTier.GREAT,
[MoveId.MISTY_EXPLOSION]: ModifierTier.COMMON,
[MoveId.GRASSY_GLIDE]: ModifierTier.COMMON,
[MoveId.RISING_VOLTAGE]: ModifierTier.COMMON,
[MoveId.TERRAIN_PULSE]: ModifierTier.COMMON,
[MoveId.SKITTER_SMACK]: ModifierTier.GREAT,
[MoveId.BURNING_JEALOUSY]: ModifierTier.GREAT,
[MoveId.LASH_OUT]: ModifierTier.GREAT,
[MoveId.POLTERGEIST]: ModifierTier.ULTRA,
[MoveId.CORROSIVE_GAS]: ModifierTier.COMMON,
[MoveId.COACHING]: ModifierTier.COMMON,
[MoveId.FLIP_TURN]: ModifierTier.COMMON,
[MoveId.TRIPLE_AXEL]: ModifierTier.COMMON,
[MoveId.DUAL_WINGBEAT]: ModifierTier.COMMON,
[MoveId.SCORCHING_SANDS]: ModifierTier.GREAT,
[MoveId.TERA_BLAST]: ModifierTier.GREAT,
[MoveId.ICE_SPINNER]: ModifierTier.GREAT,
[MoveId.SNOWSCAPE]: ModifierTier.COMMON,
[MoveId.POUNCE]: ModifierTier.COMMON,
[MoveId.TRAILBLAZE]: ModifierTier.COMMON,
[MoveId.CHILLING_WATER]: ModifierTier.COMMON,
[MoveId.HARD_PRESS]: ModifierTier.GREAT,
[MoveId.DRAGON_CHEER]: ModifierTier.COMMON,
[MoveId.ALLURING_VOICE]: ModifierTier.GREAT,
[MoveId.TEMPER_FLARE]: ModifierTier.GREAT,
[MoveId.SUPERCELL_SLAM]: ModifierTier.GREAT,
[MoveId.PSYCHIC_NOISE]: ModifierTier.GREAT,
[MoveId.UPPER_HAND]: ModifierTier.COMMON,
};