diff --git a/include/config/species_enabled.h b/include/config/species_enabled.h index 23bb6d9d54..8b6b9d87b7 100644 --- a/include/config/species_enabled.h +++ b/include/config/species_enabled.h @@ -29,6 +29,8 @@ #define P_GIGANTAMAX_FORMS TRUE #define P_TERA_FORMS TRUE +#define P_GEN_9_MEGA_EVOLUTIONS P_MEGA_EVOLUTIONS // Mega Evolutions introduced in Z-A and its DLC + // Fusion forms #define P_FUSION_FORMS TRUE diff --git a/include/constants/items.h b/include/constants/items.h index 58f453414f..ca25c57c3c 100644 --- a/include/constants/items.h +++ b/include/constants/items.h @@ -994,10 +994,34 @@ #define ITEM_STRANGE_BALL 828 -// HOPO BERRY -// LEGEND PLATE +#define ITEM_CLEFABLITE 829 +#define ITEM_VICTREEBELITE 830 +#define ITEM_STARMINITE 831 +#define ITEM_DRAGONINITE 832 +#define ITEM_MEGANIUMITE 833 +#define ITEM_FERALIGITE 834 +#define ITEM_SKARMORITE 835 +#define ITEM_FROSLASSITE 836 +#define ITEM_EMBOARITE 837 +#define ITEM_EXCADRITE 838 +#define ITEM_SCOLIPITE 839 +#define ITEM_SCRAFTINITE 840 +#define ITEM_EELEKTROSSITE 841 +#define ITEM_CHANDELURITE 842 +#define ITEM_CHESNAUGHTITE 843 +#define ITEM_DELPHOXITE 844 +#define ITEM_GRENINJITE 845 +#define ITEM_PYROARITE 846 +#define ITEM_FLOETTITE 847 +#define ITEM_MALAMARITE 848 +#define ITEM_BARBARACITE 849 +#define ITEM_DRAGALGITE 850 +#define ITEM_HAWLUCHANITE 851 +#define ITEM_ZYGARDITE 852 +#define ITEM_DRAMPANITE 853 +#define ITEM_FALINKSITE 854 -#define ITEMS_COUNT 829 +#define ITEMS_COUNT 855 #define ITEM_FIELD_ARROW ITEMS_COUNT // A special item id associated with "Cancel"/"Exit" etc. in a list of items or decorations diff --git a/include/constants/species.h b/include/constants/species.h index 3656d7664e..ed31317c36 100644 --- a/include/constants/species.h +++ b/include/constants/species.h @@ -2,7 +2,7 @@ #define GUARD_CONSTANTS_SPECIES_H // NOTE: The defines here are named in order to match Pokémon Showdown's naming conventions. This is done to avoid issues with trainerproc parsing species names. If a Pokémon does not have an entry on Showdown, use your best judgement. -// Additionally, we have tried to reduce down to as few defines as possible, because programs like porymap does not always properly handle having multiple defines. +// Additionally, we have tried to reduce down to as few defines as possible, because programs like porymap do not always properly handle having multiple defines. // Discussion: https://github.com/rh-hideout/pokeemerald-expansion/pull/5075#issuecomment-2384088602 // Showdown: https://github.com/smogon/Pokemon-Showdown/blob/master/data/pokedex.ts @@ -1637,8 +1637,35 @@ #define SPECIES_URSHIFU_RAPID_STRIKE_STYLE_GMAX SPECIES_URSHIFU_RAPID_STRIKE_GMAX #define SPECIES_MIMIKYU_BUSTED_TOTEM 1523 #define SPECIES_MIMIKYU_TOTEM_BUSTED SPECIES_MIMIKYU_BUSTED_TOTEM +// Legends Z-A +#define SPECIES_CLEFABLE_MEGA 1524 +#define SPECIES_VICTREEBEL_MEGA 1525 +#define SPECIES_STARMIE_MEGA 1526 +#define SPECIES_DRAGONITE_MEGA 1527 +#define SPECIES_MEGANIUM_MEGA 1528 +#define SPECIES_FERALIGATR_MEGA 1529 +#define SPECIES_SKARMORY_MEGA 1530 +#define SPECIES_FROSLASS_MEGA 1531 +#define SPECIES_EMBOAR_MEGA 1532 +#define SPECIES_EXCADRILL_MEGA 1533 +#define SPECIES_SCOLIPEDE_MEGA 1534 +#define SPECIES_SCRAFTY_MEGA 1535 +#define SPECIES_EELEKTROSS_MEGA 1536 +#define SPECIES_CHANDELURE_MEGA 1537 +#define SPECIES_CHESNAUGHT_MEGA 1538 +#define SPECIES_DELPHOX_MEGA 1539 +#define SPECIES_GRENINJA_MEGA 1540 +#define SPECIES_PYROAR_MEGA 1541 +#define SPECIES_MALAMAR_MEGA 1542 +#define SPECIES_DRAGALGE_MEGA 1543 +#define SPECIES_HAWLUCHA_MEGA 1544 +#define SPECIES_FLOETTE_MEGA 1545 +#define SPECIES_BARBARACLE_MEGA 1546 +#define SPECIES_ZYGARDE_MEGA 1547 +#define SPECIES_DRAMPA_MEGA 1548 +#define SPECIES_FALINKS_MEGA 1549 -#define SPECIES_EGG (SPECIES_MIMIKYU_BUSTED_TOTEM + 1) +#define SPECIES_EGG (SPECIES_FALINKS_MEGA + 1) #define NUM_SPECIES SPECIES_EGG diff --git a/src/data/items.h b/src/data/items.h index a64bb6ace1..f5dd7a2ee8 100644 --- a/src/data/items.h +++ b/src/data/items.h @@ -6366,6 +6366,474 @@ const struct Item gItemsInfo[] = .iconPalette = gItemIconPalette_Diancite, }, + [ITEM_CLEFABLITE] = + { + .name = ITEM_NAME("Clefablite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Clefable to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Clefablite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Clefablite, + }, + + [ITEM_VICTREEBELITE] = + { + .name = ITEM_NAME("Victreebelite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Victreebel to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Victreebelite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Victreebelite, + }, + + [ITEM_STARMINITE] = + { + .name = ITEM_NAME("Starminite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Starmie to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Starminite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Starminite, + }, + + [ITEM_DRAGONINITE] = + { + .name = ITEM_NAME("Dragoninite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Dragonite to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Dragoninite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Dragoninite, + }, + + [ITEM_MEGANIUMITE] = + { + .name = ITEM_NAME("Meganiumite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Meganium to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Meganiumite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Meganiumite, + }, + + [ITEM_FERALIGITE] = + { + .name = ITEM_NAME("Feraligite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Feraligatr to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Feraligite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Feraligite, + }, + + [ITEM_SKARMORITE] = + { + .name = ITEM_NAME("Skarmorite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Skarmory to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Skarmorite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Skarmorite, + }, + + [ITEM_FROSLASSITE] = + { + .name = ITEM_NAME("Froslassite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Froslass to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Froslassite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Froslassite, + }, + + [ITEM_EMBOARITE] = + { + .name = ITEM_NAME("Emboarite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Emboar to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Emboarite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Emboarite, + }, + + [ITEM_EXCADRITE] = + { + .name = ITEM_NAME("Excadrite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Excadrill to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Excadrite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Excadrite, + }, + + [ITEM_SCOLIPITE] = + { + .name = ITEM_NAME("Scolipite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Scolipede to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Scolipite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Scolipite, + }, + + [ITEM_SCRAFTINITE] = + { + .name = ITEM_NAME("Scraftinite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Scrafty to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Scraftinite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Scraftinite, + }, + + [ITEM_EELEKTROSSITE] = + { + .name = ITEM_NAME("Eelektrossite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Eelektross to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Eelektrossite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Eelektrossite, + }, + + [ITEM_CHANDELURITE] = + { + .name = ITEM_NAME("Chandelurite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Chandelure to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Chandelurite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Chandelurite, + }, + + [ITEM_CHESNAUGHTITE] = + { + .name = ITEM_NAME("Chesnaughtite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Chesnaught to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Chesnaughtite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Chesnaughtite, + }, + + [ITEM_DELPHOXITE] = + { + .name = ITEM_NAME("Delphoxite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Delphox to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Delphoxite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Delphoxite, + }, + + [ITEM_GRENINJITE] = + { + .name = ITEM_NAME("Greninjite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Greninja to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Greninjite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Greninjite, + }, + + [ITEM_PYROARITE] = + { + .name = ITEM_NAME("Pyroarite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Pyroar to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Pyroarite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Pyroarite, + }, + + [ITEM_FLOETTITE] = + { + .name = ITEM_NAME("Floettite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Floette to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Floettite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Floettite, + }, + + [ITEM_MALAMARITE] = + { + .name = ITEM_NAME("Malamarite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Malamar to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Malamarite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Malamarite, + }, + + [ITEM_BARBARACITE] = + { + .name = ITEM_NAME("Barbaracite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Barbaracle to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Barbaracite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Barbaracite, + }, + + [ITEM_DRAGALGITE] = + { + .name = ITEM_NAME("Dragalgite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Dragalge to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Dragalgite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Dragalgite, + }, + + [ITEM_HAWLUCHANITE] = + { + .name = ITEM_NAME("Hawluchanite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Hawlucha to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Hawluchanite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Hawluchanite, + }, + + [ITEM_ZYGARDITE] = + { + .name = ITEM_NAME("Zygardite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Zygarde to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Zygardite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Zygardite, + }, + + [ITEM_DRAMPANITE] = + { + .name = ITEM_NAME("Drampanite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Drampa to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Drampanite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Drampanite, + }, + + [ITEM_FALINKSITE] = + { + .name = ITEM_NAME("Falinksite"), + .price = 0, + .holdEffect = HOLD_EFFECT_MEGA_STONE, + .description = COMPOUND_STRING( + "This stone enables\n" + "Falinks to Mega\n" + "Evolve in battle."), + .pocket = POCKET_ITEMS, + .sortType = ITEM_TYPE_MEGA_STONE, + .type = ITEM_USE_BAG_MENU, + .fieldUseFunc = ItemUseOutOfBattle_CannotUse, + .flingPower = 80, + .iconPic = gItemIcon_QuestionMark, // gItemIcon_Falinksite, + .iconPalette = gItemIconPalette_QuestionMark, // gItemIconPalette_Falinksite, + }, + // Gems [ITEM_NORMAL_GEM] = diff --git a/src/data/pokemon/form_change_tables.h b/src/data/pokemon/form_change_tables.h index 34ff79783f..54584c5796 100644 --- a/src/data/pokemon/form_change_tables.h +++ b/src/data/pokemon/form_change_tables.h @@ -73,6 +73,15 @@ static const struct FormChange sPikachuFormChangeTable[] = }; #endif //P_FAMILY_PIKACHU +#if P_FAMILY_CLEFAIRY +static const struct FormChange sClefableFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_CLEFABLE_MEGA, ITEM_CLEFABLITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_CLEFAIRY + #if P_FAMILY_MEOWTH static const struct FormChange sMeowthFormChangeTable[] = { @@ -102,6 +111,15 @@ static const struct FormChange sMachampFormChangeTable[] = }; #endif //P_FAMILY_MACHOP +#if P_FAMILY_BELLSPROUT +static const struct FormChange sVictreebelFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_VICTREEBEL_MEGA, ITEM_VICTREEBELITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_BELLSPROUT + #if P_FAMILY_SLOWPOKE static const struct FormChange sSlowbroFormChangeTable[] = { #if P_MEGA_EVOLUTIONS @@ -153,6 +171,15 @@ static const struct FormChange sKangaskhanFormChangeTable[] = { }; #endif //P_FAMILY_KANGASKHAN +#if P_FAMILY_STARYU +static const struct FormChange sStarmieFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_STARMIE_MEGA, ITEM_STARMINITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_STARYU + #if P_FAMILY_SCYTHER #if P_GEN_2_CROSS_EVOS static const struct FormChange sScizorFormChangeTable[] = { @@ -218,6 +245,15 @@ static const struct FormChange sSnorlaxFormChangeTable[] = { }; #endif //P_FAMILY_SNORLAX +#if P_FAMILY_DRATINI +static const struct FormChange sDragoniteFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_DRAGONITE_MEGA, ITEM_DRAGONINITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_DRATINI + #if P_FAMILY_MEWTWO static const struct FormChange sMewtwoFormChangeTable[] = { #if P_MEGA_EVOLUTIONS @@ -228,6 +264,24 @@ static const struct FormChange sMewtwoFormChangeTable[] = { }; #endif //P_FAMILY_MEWTWO +#if P_FAMILY_CHIKORITA +static const struct FormChange sMeganiumFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_MEGANIUM_MEGA, ITEM_MEGANIUMITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_CHIKORITA + +#if P_FAMILY_TOTODILE +static const struct FormChange sFeraligatrFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_FERALIGATR_MEGA, ITEM_FERALIGITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_TOTODILE + #if P_FAMILY_MAREEP static const struct FormChange sAmpharosFormChangeTable[] = { #if P_MEGA_EVOLUTIONS @@ -246,6 +300,15 @@ static const struct FormChange sHeracrossFormChangeTable[] = { }; #endif //P_FAMILY_HERACROSS +#if P_FAMILY_SKARMORY +static const struct FormChange sSkarmoryFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_SKARMORY_MEGA, ITEM_SKARMORITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_SKARMORY + #if P_FAMILY_HOUNDOUR static const struct FormChange sHoundoomFormChangeTable[] = { #if P_MEGA_EVOLUTIONS @@ -406,6 +469,13 @@ static const struct FormChange sGlalieFormChangeTable[] = { #endif {FORM_CHANGE_TERMINATOR}, }; + +static const struct FormChange sFroslassFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_FROSLASS_MEGA, ITEM_FROSLASSITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; #endif //P_FAMILY_SNORUNT #if P_FAMILY_CASTFORM @@ -690,6 +760,24 @@ static const struct FormChange sArceusFormChangeTable[] = { }; #endif //P_FAMILY_ARCEUS +#if P_FAMILY_TEPIG +static const struct FormChange sEmboarFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_EMBOAR_MEGA, ITEM_EMBOARITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_TEPIG + +#if P_FAMILY_DRILBUR +static const struct FormChange sExcadrillFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_EXCADRILL_MEGA, ITEM_EXCADRITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_DRILBUR + #if P_FAMILY_AUDINO static const struct FormChange sAudinoFormChangeTable[] = { #if P_MEGA_EVOLUTIONS @@ -699,6 +787,15 @@ static const struct FormChange sAudinoFormChangeTable[] = { }; #endif //P_FAMILY_AUDINO +#if P_FAMILY_VENIPEDE +static const struct FormChange sScolipedeFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_SCOLIPEDE_MEGA, ITEM_SCOLIPITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_VENIPEDE + #if P_FAMILY_DARUMAKA static const struct FormChange sDarmanitanFormChangeTable[] = { {FORM_CHANGE_BATTLE_HP_PERCENT, SPECIES_DARMANITAN_STANDARD, ABILITY_ZEN_MODE, HP_HIGHER_THAN, 50}, @@ -719,6 +816,15 @@ static const struct FormChange sDarmanitanGalarFormChangeTable[] = { #endif //P_GALARIAN_FORMS #endif //P_FAMILY_DARUMAKA +#if P_FAMILY_SCRAGGY +static const struct FormChange sScraftyFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_SCRAFTY_MEGA, ITEM_SCRAFTINITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_SCRAGGY + #if P_FAMILY_TRUBBISH static const struct FormChange sGarbodorFormChangeTable[] = { @@ -729,6 +835,24 @@ static const struct FormChange sGarbodorFormChangeTable[] = }; #endif //P_FAMILY_TRUBBISH +#if P_FAMILY_TYNAMO +static const struct FormChange sEelektrossFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_EELEKTROSS_MEGA, ITEM_EELEKTROSSITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_TYNAMO + +#if P_FAMILY_LITWICK +static const struct FormChange sChandelureFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_CHANDELURE_MEGA, ITEM_CHANDELURITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_LITWICK + #if P_FAMILY_TORNADUS static const struct FormChange sTornadusFormChangeTable[] = { {FORM_CHANGE_ITEM_USE, SPECIES_TORNADUS_THERIAN, ITEM_REVEAL_GLASS}, @@ -790,7 +914,32 @@ static const struct FormChange sGenesectFormChangeTable[] = { }; #endif //P_FAMILY_GENESECT +#if P_FAMILY_CHESPIN +static const struct FormChange sChesnaughtFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_CHESNAUGHT_MEGA, ITEM_CHESNAUGHTITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_CHESPIN + +#if P_FAMILY_FENNEKIN +static const struct FormChange sDelphoxFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_DELPHOX_MEGA, ITEM_DELPHOXITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_FENNEKIN + #if P_FAMILY_FROAKIE +static const struct FormChange sGreninjaFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_GRENINJA_MEGA, ITEM_GRENINJITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; + static const struct FormChange sGreninjaBattleBondFormChangeTable[] = { {FORM_CHANGE_FAINT, SPECIES_GRENINJA_BATTLE_BOND}, {FORM_CHANGE_END_BATTLE, SPECIES_GRENINJA_BATTLE_BOND}, @@ -798,6 +947,24 @@ static const struct FormChange sGreninjaBattleBondFormChangeTable[] = { }; #endif //P_FAMILY_FROAKIE +#if P_FAMILY_LITLEO +static const struct FormChange sPyroarFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_PYROAR_MEGA, ITEM_PYROARITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_LITLEO + +#if P_FAMILY_FLABEBE +static const struct FormChange sFloetteEternalFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_FLOETTE_MEGA, ITEM_FLOETTITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_FLABEBE + #if P_FAMILY_FURFROU static const struct FormChange sFurfrouFormChangeTable[] = { {FORM_CHANGE_WITHDRAW, SPECIES_FURFROU_NATURAL}, @@ -818,6 +985,42 @@ static const struct FormChange sAegislashFormChangeTable[] = { }; #endif //P_FAMILY_HONEDGE +#if P_FAMILY_INKAY +static const struct FormChange sMalamarFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_MALAMAR_MEGA, ITEM_MALAMARITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_INKAY + +#if P_FAMILY_BINACLE +static const struct FormChange sBarbaracleFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_BARBARACLE_MEGA, ITEM_BARBARACITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_BINACLE + +#if P_FAMILY_SKRELP +static const struct FormChange sDragalgeFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_DRAGALGE_MEGA, ITEM_DRAGALGITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_SKRELP + +#if P_FAMILY_HAWLUCHA +static const struct FormChange sHawluchaFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_HAWLUCHA_MEGA, ITEM_HAWLUCHANITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_HAWLUCHA + #if P_FAMILY_XERNEAS static const struct FormChange sXerneasFormChangeTable[] = { {FORM_CHANGE_BEGIN_BATTLE, SPECIES_XERNEAS_ACTIVE}, @@ -856,6 +1059,9 @@ static const struct FormChange sZygarde10PowerConstructFormChangeTable[] = { static const struct FormChange sZygardeCompleteFormChangeTable[] = { {FORM_CHANGE_FAINT}, {FORM_CHANGE_END_BATTLE}, +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_ZYGARDE_MEGA, ITEM_ZYGARDITE}, +#endif {FORM_CHANGE_TERMINATOR}, }; #endif //P_FAMILY_ZYGARDE @@ -1003,6 +1209,15 @@ static const struct FormChange sMimikyuTotemFormChangeTable[] = { }; #endif //P_FAMILY_MIMIKYU +#if P_FAMILY_DRAMPA +static const struct FormChange sDrampaFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_DRAMPA_MEGA, ITEM_DRAMPANITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_DRAMPA + #if P_FAMILY_NECROZMA static const struct Fusion sNecrozmaFusionTable[] = { {1, ITEM_N_SOLARIZER, SPECIES_NECROZMA, SPECIES_SOLGALEO, SPECIES_NECROZMA_DUSK_MANE, MOVE_SUNSTEEL_STRIKE, FORGET_EXTRA_MOVES}, @@ -1202,6 +1417,15 @@ static const struct FormChange sAlcremieFormChangeTable[] = }; #endif //P_FAMILY_MILCERY +#if P_FAMILY_FALINKS +static const struct FormChange sFalinksFormChangeTable[] = { +#if P_GEN_9_MEGA_EVOLUTIONS + {FORM_CHANGE_BATTLE_MEGA_EVOLUTION_ITEM, SPECIES_FALINKS_MEGA, ITEM_FALINKSITE}, +#endif + {FORM_CHANGE_TERMINATOR}, +}; +#endif //P_FAMILY_FALINKS + #if P_FAMILY_EISCUE static const struct FormChange sEiscueFormChangeTable[] = { {FORM_CHANGE_BATTLE_WEATHER, SPECIES_EISCUE_ICE, B_WEATHER_HAIL | B_WEATHER_SNOW, ABILITY_ICE_FACE}, diff --git a/src/data/pokemon/form_species_tables.h b/src/data/pokemon/form_species_tables.h index 53ee47f933..ab703bc2d0 100644 --- a/src/data/pokemon/form_species_tables.h +++ b/src/data/pokemon/form_species_tables.h @@ -150,6 +150,16 @@ static const u16 sSandslashFormSpeciesIdTable[] = { }; #endif //P_FAMILY_SANDSHREW +#if P_FAMILY_CLEFAIRY +static const u16 sClefableFormSpeciesIdTable[] = { + SPECIES_CLEFABLE, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_CLEFABLE_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_CLEFAIRY + #if P_FAMILY_VULPIX static const u16 sVulpixFormSpeciesIdTable[] = { SPECIES_VULPIX, @@ -248,6 +258,16 @@ static const u16 sMachampFormSpeciesIdTable[] = { }; #endif //P_FAMILY_MACHOP +#if P_FAMILY_BELLSPROUT +static const u16 sVictreebelFormSpeciesIdTable[] = { + SPECIES_VICTREEBEL, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_VICTREEBEL_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_BELLSPROUT + #if P_FAMILY_GEODUDE static const u16 sGeodudeFormSpeciesIdTable[] = { SPECIES_GEODUDE, @@ -445,6 +465,16 @@ static const u16 sKangaskhanFormSpeciesIdTable[] = { }; #endif //P_FAMILY_KANGASKHAN +#if P_FAMILY_STARYU +static const u16 sStarmieFormSpeciesIdTable[] = { + SPECIES_STARMIE, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_STARMIE_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_STARYU + #if P_FAMILY_MR_MIME static const u16 sMrMimeFormSpeciesIdTable[] = { SPECIES_MR_MIME, @@ -570,6 +600,16 @@ static const u16 sMoltresFormSpeciesIdTable[] = { }; #endif //P_FAMILY_MOLTRES +#if P_FAMILY_DRATINI +static const u16 sDragoniteFormSpeciesIdTable[] = { + SPECIES_DRAGONITE, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_DRAGONITE_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_DRATINI + #if P_FAMILY_MEWTWO static const u16 sMewtwoFormSpeciesIdTable[] = { SPECIES_MEWTWO, @@ -581,6 +621,16 @@ static const u16 sMewtwoFormSpeciesIdTable[] = { }; #endif //P_FAMILY_MEWTWO +#if P_FAMILY_CHIKORITA +static const u16 sMeganiumFormSpeciesIdTable[] = { + SPECIES_MEGANIUM, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_MEGANIUM_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_CHIKORITA + #if P_FAMILY_CYNDAQUIL static const u16 sTyphlosionFormSpeciesIdTable[] = { SPECIES_TYPHLOSION, @@ -591,6 +641,16 @@ static const u16 sTyphlosionFormSpeciesIdTable[] = { }; #endif //P_FAMILY_CYNDAQUIL +#if P_FAMILY_TOTODILE +static const u16 sFeraligatrFormSpeciesIdTable[] = { + SPECIES_FERALIGATR, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_FERALIGATR_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_TOTODILE + #if P_FAMILY_MAREEP static const u16 sAmpharosFormSpeciesIdTable[] = { SPECIES_AMPHAROS, @@ -701,6 +761,16 @@ static const u16 sCorsolaFormSpeciesIdTable[] = { }; #endif //P_FAMILY_CORSOLA +#if P_FAMILY_SKARMORY +static const u16 sSkarmoryFormSpeciesIdTable[] = { + SPECIES_SKARMORY, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_SKARMORY_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_SKARMORY + #if P_FAMILY_HOUNDOUR static const u16 sHoundoomFormSpeciesIdTable[] = { SPECIES_HOUNDOOM, @@ -907,6 +977,14 @@ static const u16 sGlalieFormSpeciesIdTable[] = { #endif FORM_SPECIES_END, }; + +static const u16 sFroslassFormSpeciesIdTable[] = { + SPECIES_FROSLASS, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_FROSLASS_MEGA, +#endif + FORM_SPECIES_END, +}; #endif //P_FAMILY_SNORUNT #if P_FAMILY_BAGON @@ -1142,6 +1220,16 @@ static const u16 sArceusFormSpeciesIdTable[] = { }; #endif //P_FAMILY_ARCEUS +#if P_FAMILY_TEPIG +static const u16 sEmboarFormSpeciesIdTable[] = { + SPECIES_EMBOAR, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_EMBOAR_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_TEPIG + #if P_FAMILY_OSHAWOTT static const u16 sSamurottFormSpeciesIdTable[] = { SPECIES_SAMUROTT, @@ -1152,6 +1240,16 @@ static const u16 sSamurottFormSpeciesIdTable[] = { }; #endif //P_FAMILY_OSHAWOTT +#if P_FAMILY_DRILBUR +static const u16 sExcadrillFormSpeciesIdTable[] = { + SPECIES_EXCADRILL, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_EXCADRILL_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_DRILBUR + #if P_FAMILY_AUDINO static const u16 sAudinoFormSpeciesIdTable[] = { SPECIES_AUDINO, @@ -1162,6 +1260,16 @@ static const u16 sAudinoFormSpeciesIdTable[] = { }; #endif //P_FAMILY_AUDINO +#if P_FAMILY_VENIPEDE +static const u16 sScolipedeFormSpeciesIdTable[] = { + SPECIES_SCOLIPEDE, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_SCOLIPEDE_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_VENIPEDE + #if P_FAMILY_PETILIL static const u16 sLilligantFormSpeciesIdTable[] = { SPECIES_LILLIGANT, @@ -1207,6 +1315,16 @@ static const u16 sDarmanitanFormSpeciesIdTable[] = { }; #endif //P_FAMILY_DARUMAKA +#if P_FAMILY_SCRAGGY +static const u16 sScraftyFormSpeciesIdTable[] = { + SPECIES_SCRAFTY, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_SCRAFTY_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_SCRAGGY + #if P_FAMILY_YAMASK static const u16 sYamaskFormSpeciesIdTable[] = { SPECIES_YAMASK, @@ -1263,6 +1381,26 @@ static const u16 sSawsbuckFormSpeciesIdTable[] = { }; #endif //P_FAMILY_DEERLING +#if P_FAMILY_TYNAMO +static const u16 sEelektrossFormSpeciesIdTable[] = { + SPECIES_EELEKTROSS, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_EELEKTROSS_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_TYNAMO + +#if P_FAMILY_LITWICK +static const u16 sChandelureFormSpeciesIdTable[] = { + SPECIES_CHANDELURE, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_CHANDELURE_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_LITWICK + #if P_FAMILY_STUNFISK static const u16 sStunfiskFormSpeciesIdTable[] = { SPECIES_STUNFISK, @@ -1343,11 +1481,34 @@ static const u16 sGenesectFormSpeciesIdTable[] = { }; #endif //P_FAMILY_GENESECT +#if P_FAMILY_CHESPIN +static const u16 sChesnaughtFormSpeciesIdTable[] = { + SPECIES_CHESNAUGHT, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_CHESNAUGHT_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_CHESPIN + +#if P_FAMILY_FENNEKIN +static const u16 sDelphoxFormSpeciesIdTable[] = { + SPECIES_DELPHOX, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_DELPHOX_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_FENNEKIN + #if P_FAMILY_FROAKIE static const u16 sGreninjaFormSpeciesIdTable[] = { SPECIES_GRENINJA, SPECIES_GRENINJA_BATTLE_BOND, SPECIES_GRENINJA_ASH, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_GRENINJA_MEGA, +#endif FORM_SPECIES_END, }; #endif //P_FAMILY_FROAKIE @@ -1426,6 +1587,16 @@ static const u16 sVivillonFormSpeciesIdTable[] = { }; #endif //P_FAMILY_SCATTERBUG +#if P_FAMILY_LITLEO +static const u16 sPyroarFormSpeciesIdTable[] = { + SPECIES_PYROAR, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_PYROAR_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_LITLEO + #if P_FAMILY_FLABEBE static const u16 sFlabebeFormSpeciesIdTable[] = { SPECIES_FLABEBE_RED, @@ -1443,6 +1614,9 @@ static const u16 sFloetteFormSpeciesIdTable[] = { SPECIES_FLOETTE_BLUE, SPECIES_FLOETTE_WHITE, SPECIES_FLOETTE_ETERNAL, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_FLOETTE_MEGA, +#endif FORM_SPECIES_END, }; @@ -1488,6 +1662,46 @@ static const u16 sAegislashFormSpeciesIdTable[] = { }; #endif //P_FAMILY_HONEDGE +#if P_FAMILY_INKAY +static const u16 sMalamarFormSpeciesIdTable[] = { + SPECIES_MALAMAR, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_MALAMAR_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_INKAY + +#if P_FAMILY_BINACLE +static const u16 sBarbaracleFormSpeciesIdTable[] = { + SPECIES_BARBARACLE, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_BARBARACLE_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_BINACLE + +#if P_FAMILY_SKRELP +static const u16 sDragalgeFormSpeciesIdTable[] = { + SPECIES_DRAGALGE, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_DRAGALGE_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_SKRELP + +#if P_FAMILY_HAWLUCHA +static const u16 sHawluchaFormSpeciesIdTable[] = { + SPECIES_HAWLUCHA, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_HAWLUCHA_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_HAWLUCHA + #if P_FAMILY_GOOMY static const u16 sSliggooFormSpeciesIdTable[] = { SPECIES_SLIGGOO, @@ -1549,6 +1763,9 @@ static const u16 sZygardeFormSpeciesIdTable[] = { SPECIES_ZYGARDE_10_POWER_CONSTRUCT, SPECIES_ZYGARDE_50_POWER_CONSTRUCT, SPECIES_ZYGARDE_COMPLETE, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_ZYGARDE_MEGA, +#endif FORM_SPECIES_END, }; #endif //P_FAMILY_ZYGARDE @@ -1724,6 +1941,16 @@ static const u16 sMimikyuFormSpeciesIdTable[] = { }; #endif //P_FAMILY_MIMIKYU +#if P_FAMILY_DRAMPA +static const u16 sDrampaFormSpeciesIdTable[] = { + SPECIES_DRAMPA, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_DRAMPA_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_DRAMPA + #if P_FAMILY_JANGMO_O static const u16 sKommoOFormSpeciesIdTable[] = { SPECIES_KOMMO_O, @@ -1999,6 +2226,16 @@ static const u16 sAlcremieFormSpeciesIdTable[] = { }; #endif //P_FAMILY_MILCERY +#if P_FAMILY_FALINKS +static const u16 sFalinksFormSpeciesIdTable[] = { + SPECIES_FALINKS, +#if P_GEN_9_MEGA_EVOLUTIONS + SPECIES_FALINKS_MEGA, +#endif + FORM_SPECIES_END, +}; +#endif //P_FAMILY_FALINKS + #if P_FAMILY_EISCUE static const u16 sEiscueFormSpeciesIdTable[] = { SPECIES_EISCUE_ICE, diff --git a/src/data/pokemon/species_info/gen_1_families.h b/src/data/pokemon/species_info/gen_1_families.h index f42bf0f445..373721782b 100644 --- a/src/data/pokemon/species_info/gen_1_families.h +++ b/src/data/pokemon/species_info/gen_1_families.h @@ -5001,7 +5001,96 @@ const struct SpeciesInfo gSpeciesInfoGen1[] = ) .levelUpLearnset = sClefableLevelUpLearnset, .teachableLearnset = sClefableTeachableLearnset, + .formSpeciesIdTable = sClefableFormSpeciesIdTable, + .formChangeTable = sClefableFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_CLEFABLE_MEGA] = + { + .baseHP = 95, + .baseAttack = 80, + .baseDefense = 93, + .baseSpeed = 70, + .baseSpAttack = 135, + .baseSpDefense = 110, + .types = MON_TYPES(TYPE_FAIRY, TYPE_FLYING), + .catchRate = 25, + #if P_UPDATED_EXP_YIELDS >= GEN_8 + .expYield = 242, + #elif P_UPDATED_EXP_YIELDS >= GEN_7 + .expYield = 217, + #elif P_UPDATED_EXP_YIELDS >= GEN_5 + .expYield = 213, + #else + .expYield = 129, + #endif + .evYield_HP = 3, + .itemRare = ITEM_MOON_STONE, + .genderRatio = PERCENT_FEMALE(75), + .eggCycles = 10, + .friendship = 140, + .growthRate = GROWTH_FAST, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_FAIRY), + #if P_UPDATED_ABILITIES >= GEN_4 + .abilities = { ABILITY_CUTE_CHARM, ABILITY_MAGIC_GUARD, ABILITY_UNAWARE }, + #else + .abilities = { ABILITY_CUTE_CHARM, ABILITY_NONE, ABILITY_UNAWARE }, + #endif + .bodyColor = BODY_COLOR_PINK, + .speciesName = _("Clefable"), + .cryId = CRY_CLEFABLE, // CRY_CLEFABLE_MEGA, + .natDexNum = NATIONAL_DEX_CLEFABLE, + .categoryName = _("Fairy"), + .height = 17, + .weight = 423, + .description = COMPOUND_STRING( + "It flies by using the power of\n" + "moonlight to control gravity within\n" + "a radius of over 32 feet around it."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sClefableLevelUpLearnset, + .teachableLearnset = sClefableTeachableLearnset, + .formSpeciesIdTable = sClefableFormSpeciesIdTable, + .formChangeTable = sClefableFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_CLEFAIRY #if P_FAMILY_VULPIX @@ -9121,7 +9210,92 @@ const struct SpeciesInfo gSpeciesInfoGen1[] = ) .levelUpLearnset = sVictreebelLevelUpLearnset, .teachableLearnset = sVictreebelTeachableLearnset, + .formSpeciesIdTable = sVictreebelFormSpeciesIdTable, + .formChangeTable = sVictreebelFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_VICTREEBEL_MEGA] = + { + .baseHP = 80, + .baseAttack = 125, + .baseDefense = 85, + .baseSpeed = 70, + .baseSpAttack = 135, + .baseSpDefense = 95, + .types = MON_TYPES(TYPE_GRASS, TYPE_POISON), + .catchRate = 45, + #if P_UPDATED_EXP_YIELDS >= GEN_8 + .expYield = 245, + #elif P_UPDATED_EXP_YIELDS >= GEN_7 + .expYield = 221, + #elif P_UPDATED_EXP_YIELDS >= GEN_5 + .expYield = 216, + #else + .expYield = 191, + #endif + .evYield_Attack = 3, + .genderRatio = PERCENT_FEMALE(50), + .eggCycles = 20, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_MEDIUM_SLOW, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_GRASS), + .abilities = { ABILITY_CHLOROPHYLL, ABILITY_NONE, ABILITY_GLUTTONY }, + .bodyColor = BODY_COLOR_GREEN, + .speciesName = _("Victreebel"), + .cryId = CRY_VICTREEBEL, // CRY_VICTREEBEL_MEGA, + .natDexNum = NATIONAL_DEX_VICTREEBEL, + .categoryName = _("Flycatcher"), + .height = 45, + .weight = 1255, + .description = COMPOUND_STRING( + "The volume of this Pokémon's acid\n" + "has increased due to Mega Evolution,\n" + "filling its mouth. If not careful,\n" + "the acid will overflow and spill out."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sVictreebelLevelUpLearnset, + .teachableLearnset = sVictreebelTeachableLearnset, + .formSpeciesIdTable = sVictreebelFormSpeciesIdTable, + .formChangeTable = sVictreebelFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_BELLSPROUT #if P_FAMILY_TENTACOOL @@ -15473,7 +15647,86 @@ const struct SpeciesInfo gSpeciesInfoGen1[] = ) .levelUpLearnset = sStarmieLevelUpLearnset, .teachableLearnset = sStarmieTeachableLearnset, + .formSpeciesIdTable = sStarmieFormSpeciesIdTable, + .formChangeTable = sStarmieFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_STARMIE_MEGA] = + { + .baseHP = 60, + .baseAttack = 140, + .baseDefense = 105, + .baseSpeed = 120, + .baseSpAttack = 130, + .baseSpDefense = 105, + .types = MON_TYPES(TYPE_WATER, TYPE_PSYCHIC), + .catchRate = 60, + .expYield = (P_UPDATED_EXP_YIELDS >= GEN_5) ? 182 : 207, + .evYield_Speed = 2, + .itemCommon = ITEM_STARDUST, + .itemRare = ITEM_STAR_PIECE, + .genderRatio = MON_GENDERLESS, + .eggCycles = 20, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_SLOW, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_WATER_3), + .abilities = { ABILITY_ILLUMINATE, ABILITY_NATURAL_CURE, ABILITY_ANALYTIC }, + .bodyColor = BODY_COLOR_PURPLE, + .speciesName = _("Starmie"), + .cryId = CRY_STARMIE, // CRY_STARMIE_MEGA, + .natDexNum = NATIONAL_DEX_STARMIE, + .categoryName = _("Mysterious"), + .height = 23, + .weight = 800, + .description = COMPOUND_STRING( + "Its movements have become more\n" + "humanlike. Whether it's simply\n" + "trying to communicate or wants to\n" + "supplant humanity is unclear."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sStarmieLevelUpLearnset, + .teachableLearnset = sStarmieTeachableLearnset, + .formSpeciesIdTable = sStarmieFormSpeciesIdTable, + .formChangeTable = sStarmieFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_STARYU #if P_FAMILY_MR_MIME @@ -19936,7 +20189,91 @@ const struct SpeciesInfo gSpeciesInfoGen1[] = ) .levelUpLearnset = sDragoniteLevelUpLearnset, .teachableLearnset = sDragoniteTeachableLearnset, + .formSpeciesIdTable = sDragoniteFormSpeciesIdTable, + .formChangeTable = sDragoniteFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_DRAGONITE_MEGA] = + { + .baseHP = 91, + .baseAttack = 124, + .baseDefense = 115, + .baseSpeed = 100, + .baseSpAttack = 145, + .baseSpDefense = 125, + .types = MON_TYPES(TYPE_DRAGON, TYPE_FLYING), + .catchRate = 45, + #if P_UPDATED_EXP_YIELDS >= GEN_8 + .expYield = 300, + #elif P_UPDATED_EXP_YIELDS >= GEN_5 + .expYield = 270, + #else + .expYield = 218, + #endif + .evYield_Attack = 3, + .itemRare = ITEM_DRAGON_SCALE, + .genderRatio = PERCENT_FEMALE(50), + .eggCycles = 40, + .friendship = 35, + .growthRate = GROWTH_SLOW, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_WATER_1, EGG_GROUP_DRAGON), + .abilities = { ABILITY_INNER_FOCUS, ABILITY_NONE, ABILITY_MULTISCALE }, + .bodyColor = BODY_COLOR_BROWN, + .speciesName = _("Dragonite"), + .cryId = CRY_DRAGONITE, // CRY_DRAGONITE_MEGA, + .natDexNum = NATIONAL_DEX_DRAGONITE, + .categoryName = _("Dragon"), + .height = 22, + .weight = 2900, + .description = COMPOUND_STRING( + "Mega Evolution has excessively\n" + "powered up this Pokémon's feelings\n" + "of kindness. It finishes off its\n" + "opponents with mercy in its heart."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sDragoniteLevelUpLearnset, + .teachableLearnset = sDragoniteTeachableLearnset, + .formSpeciesIdTable = sDragoniteFormSpeciesIdTable, + .formChangeTable = sDragoniteFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_DRATINI #if P_FAMILY_MEWTWO diff --git a/src/data/pokemon/species_info/gen_2_families.h b/src/data/pokemon/species_info/gen_2_families.h index 98e856aae5..4f65e34a5e 100644 --- a/src/data/pokemon/species_info/gen_2_families.h +++ b/src/data/pokemon/species_info/gen_2_families.h @@ -225,7 +225,91 @@ const struct SpeciesInfo gSpeciesInfoGen2[] = ) .levelUpLearnset = sMeganiumLevelUpLearnset, .teachableLearnset = sMeganiumTeachableLearnset, + .formSpeciesIdTable = sMeganiumFormSpeciesIdTable, + .formChangeTable = sMeganiumFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_MEGANIUM_MEGA] = + { + .baseHP = 80, + .baseAttack = 92, + .baseDefense = 115, + .baseSpeed = 80, + .baseSpAttack = 143, + .baseSpDefense = 115, + .types = MON_TYPES(TYPE_GRASS, TYPE_FAIRY), + .catchRate = 45, + #if P_UPDATED_EXP_YIELDS >= GEN_8 + .expYield = 263, + #elif P_UPDATED_EXP_YIELDS >= GEN_5 + .expYield = 236, + #else + .expYield = 208, + #endif + .evYield_Defense = 1, + .evYield_SpDefense = 2, + .genderRatio = PERCENT_FEMALE(12.5), + .eggCycles = 20, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_MEDIUM_SLOW, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_MONSTER, EGG_GROUP_GRASS), + .abilities = { ABILITY_OVERGROW, ABILITY_NONE, ABILITY_LEAF_GUARD }, + .bodyColor = BODY_COLOR_GREEN, + .speciesName = _("Meganium"), + .cryId = CRY_MEGANIUM, // CRY_MEGANIUM_MEGA, + .natDexNum = NATIONAL_DEX_MEGANIUM, + .categoryName = _("Herb"), + .height = 24, + .weight = 2010, + .description = COMPOUND_STRING( + "This Pokémon can fire a tremendously\n" + "powerful Solar Beam from its four\n" + "flowers. Another name for this is\n" + "Mega Sol Cannon."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sMeganiumLevelUpLearnset, + .teachableLearnset = sMeganiumTeachableLearnset, + .formSpeciesIdTable = sMeganiumFormSpeciesIdTable, + .formChangeTable = sMeganiumFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_CHIKORITA #if P_FAMILY_CYNDAQUIL @@ -728,7 +812,91 @@ const struct SpeciesInfo gSpeciesInfoGen2[] = ) .levelUpLearnset = sFeraligatrLevelUpLearnset, .teachableLearnset = sFeraligatrTeachableLearnset, + .formSpeciesIdTable = sFeraligatrFormSpeciesIdTable, + .formChangeTable = sFeraligatrFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_FERALIGATR_MEGA] = + { + .baseHP = 85, + .baseAttack = 160, + .baseDefense = 125, + .baseSpeed = 78, + .baseSpAttack = 89, + .baseSpDefense = 93, + .types = MON_TYPES(TYPE_WATER, TYPE_DRAGON), + .catchRate = 45, + #if P_UPDATED_EXP_YIELDS >= GEN_8 + .expYield = 265, + #elif P_UPDATED_EXP_YIELDS >= GEN_5 + .expYield = 239, + #else + .expYield = 210, + #endif + .evYield_Attack = 2, + .evYield_Defense = 1, + .genderRatio = PERCENT_FEMALE(12.5), + .eggCycles = 20, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_MEDIUM_SLOW, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_MONSTER, EGG_GROUP_WATER_1), + .abilities = { ABILITY_TORRENT, ABILITY_NONE, ABILITY_SHEER_FORCE }, + .bodyColor = BODY_COLOR_BLUE, + .speciesName = _("Feraligatr"), + .cryId = CRY_FERALIGATR, // CRY_FERALIGATR_MEGA, + .natDexNum = NATIONAL_DEX_FERALIGATR, + .categoryName = _("Double Jaw"), + .height = 23, + .weight = 1088, + .description = COMPOUND_STRING( + "With its arms and hoodlike fin, this\n" + "Pokémon forms a gigantic set of jaws\n" + "with a bite 10 times as powerful\n" + "as Mega Feraligatr's actual jaws."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sFeraligatrLevelUpLearnset, + .teachableLearnset = sFeraligatrTeachableLearnset, + .formSpeciesIdTable = sFeraligatrFormSpeciesIdTable, + .formChangeTable = sFeraligatrFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_TOTODILE #if P_FAMILY_SENTRET @@ -7107,7 +7275,85 @@ const struct SpeciesInfo gSpeciesInfoGen2[] = .levelUpLearnset = sSkarmoryLevelUpLearnset, .teachableLearnset = sSkarmoryTeachableLearnset, .eggMoveLearnset = sSkarmoryEggMoveLearnset, + .formSpeciesIdTable = sSkarmoryFormSpeciesIdTable, + .formChangeTable = sSkarmoryFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_SKARMORY_MEGA] = + { + .baseHP = 65, + .baseAttack = 140, + .baseDefense = 110, + .baseSpeed = 110, + .baseSpAttack = 40, + .baseSpDefense = 100, + .types = MON_TYPES(TYPE_STEEL, TYPE_FLYING), + .catchRate = 25, + .expYield = (P_UPDATED_EXP_YIELDS >= GEN_5) ? 163 : 168, + .evYield_Defense = 2, + .itemRare = ITEM_METAL_COAT, + .genderRatio = PERCENT_FEMALE(50), + .eggCycles = 25, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_SLOW, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_FLYING), + .abilities = { ABILITY_KEEN_EYE, ABILITY_STURDY, ABILITY_WEAK_ARMOR }, + .bodyColor = BODY_COLOR_GRAY, + .speciesName = _("Skarmory"), + .cryId = CRY_SKARMORY, // CRY_SKARMORY_MEGA, + .natDexNum = NATIONAL_DEX_SKARMORY, + .categoryName = _("Armor Bird"), + .height = 17, + .weight = 404, + .description = COMPOUND_STRING( + "Due to the effects of Mega Evolution,\n" + "its pincers have taken a more\n" + "diabolical form, ripping anything\n" + "they pierce to shreds."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sSkarmoryLevelUpLearnset, + .teachableLearnset = sSkarmoryTeachableLearnset, + .formSpeciesIdTable = sSkarmoryFormSpeciesIdTable, + .formChangeTable = sSkarmoryFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_SKARMORY #if P_FAMILY_HOUNDOUR diff --git a/src/data/pokemon/species_info/gen_3_families.h b/src/data/pokemon/species_info/gen_3_families.h index 6ad30646cf..f2a21b9f2b 100644 --- a/src/data/pokemon/species_info/gen_3_families.h +++ b/src/data/pokemon/species_info/gen_3_families.h @@ -10688,7 +10688,84 @@ const struct SpeciesInfo gSpeciesInfoGen3[] = ) .levelUpLearnset = sFroslassLevelUpLearnset, .teachableLearnset = sFroslassTeachableLearnset, + .formSpeciesIdTable = sFroslassFormSpeciesIdTable, + .formChangeTable = sFroslassFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_FROSLASS_MEGA] = + { + .baseHP = 70, + .baseAttack = 80, + .baseDefense = 70, + .baseSpeed = 120, + .baseSpAttack = 140, + .baseSpDefense = 100, + .types = MON_TYPES(TYPE_ICE, TYPE_GHOST), + .catchRate = 75, + .expYield = (P_UPDATED_EXP_YIELDS >= GEN_5) ? 168 : 187, + .evYield_Speed = 2, + .genderRatio = MON_FEMALE, + .eggCycles = 20, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_MEDIUM_FAST, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_FAIRY, EGG_GROUP_MINERAL), + .abilities = { ABILITY_SNOW_CLOAK, ABILITY_NONE, ABILITY_CURSED_BODY }, + .bodyColor = BODY_COLOR_WHITE, + .speciesName = _("Froslass"), + .cryId = CRY_FROSLASS, // CRY_FROSLASS_MEGA, + .natDexNum = NATIONAL_DEX_FROSLASS, + .categoryName = _("Snow Land"), + .height = 26, + .weight = 296, + .description = COMPOUND_STRING( + "This Pokémon can use eerie cold\n" + "air imbued with ghost energy to\n" + "freeze even insubstantial things,\n" + "such as flames or the wind."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sFroslassLevelUpLearnset, + .teachableLearnset = sFroslassTeachableLearnset, + .formSpeciesIdTable = sFroslassFormSpeciesIdTable, + .formChangeTable = sFroslassFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_GEN_4_CROSS_EVOS #endif //P_FAMILY_SNORUNT diff --git a/src/data/pokemon/species_info/gen_5_families.h b/src/data/pokemon/species_info/gen_5_families.h index 1b5e484ab8..0acaeb8ec7 100644 --- a/src/data/pokemon/species_info/gen_5_families.h +++ b/src/data/pokemon/species_info/gen_5_families.h @@ -512,7 +512,85 @@ const struct SpeciesInfo gSpeciesInfoGen5[] = ) .levelUpLearnset = sEmboarLevelUpLearnset, .teachableLearnset = sEmboarTeachableLearnset, + .formSpeciesIdTable = sEmboarFormSpeciesIdTable, + .formChangeTable = sEmboarFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_EMBOAR_MEGA] = + { + .baseHP = 110, + .baseAttack = 148, + .baseDefense = 75, + .baseSpeed = 75, + .baseSpAttack = 110, + .baseSpDefense = 110, + .types = MON_TYPES(TYPE_FIRE, TYPE_FIGHTING), + .catchRate = 45, + .expYield = (P_UPDATED_EXP_YIELDS >= GEN_8) ? 264 : 238, + .evYield_Attack = 3, + .genderRatio = PERCENT_FEMALE(12.5), + .eggCycles = 20, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_MEDIUM_SLOW, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_FIELD), + .abilities = { ABILITY_BLAZE, ABILITY_NONE, ABILITY_RECKLESS }, + .bodyColor = BODY_COLOR_RED, + .noFlip = TRUE, + .speciesName = _("Emboar"), + .cryId = CRY_EMBOAR, // CRY_EMBOAR_MEGA, + .natDexNum = NATIONAL_DEX_EMBOAR, + .categoryName = _("Fire Pig"), + .height = 18, + .weight = 1803, + .description = COMPOUND_STRING( + "Brandishing a blazing flame\n" + "shaped like a serpentine spear,\n" + "it rushes in to save its\n" + "imperiled allies."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sEmboarLevelUpLearnset, + .teachableLearnset = sEmboarTeachableLearnset, + .formSpeciesIdTable = sEmboarFormSpeciesIdTable, + .formChangeTable = sEmboarFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_TEPIG #if P_FAMILY_OSHAWOTT @@ -2766,7 +2844,85 @@ const struct SpeciesInfo gSpeciesInfoGen5[] = ) .levelUpLearnset = sExcadrillLevelUpLearnset, .teachableLearnset = sExcadrillTeachableLearnset, + .formSpeciesIdTable = sExcadrillFormSpeciesIdTable, + .formChangeTable = sExcadrillFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_EXCADRILL_MEGA] = + { + .baseHP = 110, + .baseAttack = 165, + .baseDefense = 100, + .baseSpeed = 103, + .baseSpAttack = 65, + .baseSpDefense = 65, + .types = MON_TYPES(TYPE_GROUND, TYPE_STEEL), + .catchRate = 60, + .expYield = 178, + .evYield_Attack = 2, + .genderRatio = PERCENT_FEMALE(50), + .eggCycles = 20, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_MEDIUM_FAST, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_FIELD), + .abilities = { ABILITY_SAND_RUSH, ABILITY_SAND_FORCE, ABILITY_MOLD_BREAKER }, + .bodyColor = BODY_COLOR_GRAY, + .noFlip = TRUE, + .speciesName = _("Excadrill"), + .cryId = CRY_EXCADRILL, // CRY_EXCADRILL_MEGA, + .natDexNum = NATIONAL_DEX_EXCADRILL, + .categoryName = _("Subterrene"), + .height = 9, + .weight = 600, + .description = COMPOUND_STRING( + "If this Pokémon brings its arms and\n" + "head together to form a streamlined\n" + "shape and spins at high speeds,\n" + "it can destroy anything."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sExcadrillLevelUpLearnset, + .teachableLearnset = sExcadrillTeachableLearnset, + .formSpeciesIdTable = sExcadrillFormSpeciesIdTable, + .formChangeTable = sExcadrillFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_DRILBUR #if P_FAMILY_AUDINO @@ -3932,7 +4088,90 @@ const struct SpeciesInfo gSpeciesInfoGen5[] = ) .levelUpLearnset = sScolipedeLevelUpLearnset, .teachableLearnset = sScolipedeTeachableLearnset, + .formSpeciesIdTable = sScolipedeFormSpeciesIdTable, + .formChangeTable = sScolipedeFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_SCOLIPEDE_MEGA] = + { + .baseHP = 60, + .baseAttack = 140, + .baseDefense = 149, + .baseSpeed = 62, + .baseSpAttack = 75, + .baseSpDefense = 99, + .types = MON_TYPES(TYPE_BUG, TYPE_POISON), + .catchRate = 45, + #if P_UPDATED_EXP_YIELDS >= GEN_8 + .expYield = 243, + #elif P_UPDATED_EXP_YIELDS >= GEN_7 + .expYield = 218, + #else + .expYield = 214, + #endif + .evYield_Speed = 3, + .itemRare = ITEM_POISON_BARB, + .genderRatio = PERCENT_FEMALE(50), + .eggCycles = 20, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_MEDIUM_SLOW, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_BUG), + .abilities = { ABILITY_POISON_POINT, ABILITY_SWARM, ABILITY_SPEED_BOOST }, + .bodyColor = BODY_COLOR_RED, + .speciesName = _("Scolipede"), + .cryId = CRY_SCOLIPEDE, // CRY_SCOLIPEDE_MEGA, + .natDexNum = NATIONAL_DEX_SCOLIPEDE, + .categoryName = _("Megapede"), + .height = 32, + .weight = 2305, + .description = COMPOUND_STRING( + "Its deadly venom gives off a faint\n" + "glow. The venom affects Scolipede's\n" + "mind, honing its viciousness."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sScolipedeLevelUpLearnset, + .teachableLearnset = sScolipedeTeachableLearnset, + .formSpeciesIdTable = sScolipedeFormSpeciesIdTable, + .formChangeTable = sScolipedeFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_VENIPEDE #if P_FAMILY_COTTONEE @@ -5609,7 +5848,86 @@ const struct SpeciesInfo gSpeciesInfoGen5[] = ) .levelUpLearnset = sScraftyLevelUpLearnset, .teachableLearnset = sScraftyTeachableLearnset, + .formSpeciesIdTable = sScraftyFormSpeciesIdTable, + .formChangeTable = sScraftyFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_SCRAFTY_MEGA] = + { + .baseHP = 65, + .baseAttack = 130, + .baseDefense = 135, + .baseSpeed = 68, + .baseSpAttack = 55, + .baseSpDefense = 135, + .types = MON_TYPES(TYPE_DARK, TYPE_FIGHTING), + .catchRate = 90, + .expYield = 171, + .evYield_Defense = 1, + .evYield_SpDefense = 1, + .itemRare = ITEM_SHED_SHELL, + .genderRatio = PERCENT_FEMALE(50), + .eggCycles = 15, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_MEDIUM_FAST, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_FIELD, EGG_GROUP_DRAGON), + .abilities = { ABILITY_SHED_SKIN, ABILITY_MOXIE, ABILITY_INTIMIDATE }, + .bodyColor = BODY_COLOR_RED, + .speciesName = _("Scrafty"), + .cryId = CRY_SCRAFTY, + .natDexNum = NATIONAL_DEX_SCRAFTY, + .categoryName = _("Hoodlum"), + .height = 11, + .weight = 310, + .description = COMPOUND_STRING( + "Mega Evolution has caused Scrafty's\n" + "shed skin to turn white, growing\n" + "tough and supple. Of course, this\n" + "Pokémon is still as feisty as ever."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sScraftyLevelUpLearnset, + .teachableLearnset = sScraftyTeachableLearnset, + .formSpeciesIdTable = sScraftyFormSpeciesIdTable, + .formChangeTable = sScraftyFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_SCRAGGY #if P_FAMILY_SIGILYPH @@ -9540,7 +9858,84 @@ const struct SpeciesInfo gSpeciesInfoGen5[] = ) .levelUpLearnset = sEelektrossLevelUpLearnset, .teachableLearnset = sEelektrossTeachableLearnset, + .formSpeciesIdTable = sEelektrossFormSpeciesIdTable, + .formChangeTable = sEelektrossFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_EELEKTROSS_MEGA] = + { + .baseHP = 85, + .baseAttack = 145, + .baseDefense = 80, + .baseSpeed = 80, + .baseSpAttack = 135, + .baseSpDefense = 90, + .types = MON_TYPES(TYPE_ELECTRIC), + .catchRate = 30, + .expYield = (P_UPDATED_EXP_YIELDS >= GEN_8) ? 258 : 232, + .evYield_Attack = 3, + .genderRatio = PERCENT_FEMALE(50), + .eggCycles = 20, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_SLOW, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_AMORPHOUS), + .abilities = { ABILITY_LEVITATE, ABILITY_NONE, ABILITY_NONE }, + .bodyColor = BODY_COLOR_BLUE, + .speciesName = _("Eelektross"), + .cryId = CRY_EELEKTROSS, // CRY_EELEKTROSS_MEGA, + .natDexNum = NATIONAL_DEX_EELEKTROSS, + .categoryName = _("EleFish"), + .height = 30, + .weight = 1800, + .description = COMPOUND_STRING( + "It now generates 10 times the\n" + "electricity it did before Mega\n" + "Evolving. It discharges this energy\n" + "from its false Eelektrik made of mucus."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sEelektrossLevelUpLearnset, + .teachableLearnset = sEelektrossTeachableLearnset, + .formSpeciesIdTable = sEelektrossFormSpeciesIdTable, + .formChangeTable = sEelektrossFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_TYNAMO #if P_FAMILY_ELGYEM @@ -9905,7 +10300,84 @@ const struct SpeciesInfo gSpeciesInfoGen5[] = ) .levelUpLearnset = sChandelureLevelUpLearnset, .teachableLearnset = sChandelureTeachableLearnset, + .formSpeciesIdTable = sChandelureFormSpeciesIdTable, + .formChangeTable = sChandelureFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_CHANDELURE_MEGA] = + { + .baseHP = 60, + .baseAttack = 75, + .baseDefense = 110, + .baseSpeed = 90, + .baseSpAttack = 175, + .baseSpDefense = 110, + .types = MON_TYPES(TYPE_GHOST, TYPE_FIRE), + .catchRate = 45, + .expYield = (P_UPDATED_EXP_YIELDS >= GEN_8) ? 260 : 234, + .evYield_SpAttack = 3, + .genderRatio = PERCENT_FEMALE(50), + .eggCycles = 20, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_MEDIUM_SLOW, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_AMORPHOUS), + .abilities = { ABILITY_FLASH_FIRE, ABILITY_FLAME_BODY, ABILITY_INFILTRATOR }, + .bodyColor = BODY_COLOR_BLACK, + .speciesName = _("Chandelure"), + .cryId = CRY_CHANDELURE, // CRY_CHANDELURE_MEGA, + .natDexNum = NATIONAL_DEX_CHANDELURE, + .categoryName = _("Luring"), + .height = 25, + .weight = 696, + .description = COMPOUND_STRING( + "One of its eyes is a window linking\n" + "our world with the afterlife.\n" + "This Pokémon draws in hatred and\n" + "converts it into power."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sChandelureLevelUpLearnset, + .teachableLearnset = sChandelureTeachableLearnset, + .formSpeciesIdTable = sChandelureFormSpeciesIdTable, + .formChangeTable = sChandelureFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_LITWICK #if P_FAMILY_AXEW diff --git a/src/data/pokemon/species_info/gen_6_families.h b/src/data/pokemon/species_info/gen_6_families.h index 03bfc713f2..4290c47ca6 100644 --- a/src/data/pokemon/species_info/gen_6_families.h +++ b/src/data/pokemon/species_info/gen_6_families.h @@ -210,7 +210,83 @@ const struct SpeciesInfo gSpeciesInfoGen6[] = ) .levelUpLearnset = sChesnaughtLevelUpLearnset, .teachableLearnset = sChesnaughtTeachableLearnset, + .formSpeciesIdTable = sChesnaughtFormSpeciesIdTable, + .formChangeTable = sChesnaughtFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_CHESNAUGHT_MEGA] = + { + .baseHP = 88, + .baseAttack = 137, + .baseDefense = 172, + .baseSpeed = 44, + .baseSpAttack = 74, + .baseSpDefense = 115, + .types = MON_TYPES(TYPE_GRASS, TYPE_FIGHTING), + .catchRate = 45, + .expYield = (P_UPDATED_EXP_YIELDS >= GEN_8) ? 265 : 239, + .evYield_Defense = 3, + .genderRatio = PERCENT_FEMALE(12.5), + .eggCycles = 20, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_MEDIUM_SLOW, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_FIELD), + .abilities = { ABILITY_OVERGROW, ABILITY_NONE, ABILITY_BULLETPROOF }, + .bodyColor = BODY_COLOR_GREEN, + .speciesName = _("Chesnaught"), + .cryId = CRY_CHESNAUGHT, + .natDexNum = NATIONAL_DEX_CHESNAUGHT, + .categoryName = _("Spiny Armor"), + .height = 16, + .weight = 900, + .description = COMPOUND_STRING( + "It has fortified armor and a\n" + "will to defend at all costs.\n" + "Both are absurdly strong."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sChesnaughtLevelUpLearnset, + .teachableLearnset = sChesnaughtTeachableLearnset, + .formSpeciesIdTable = sChesnaughtFormSpeciesIdTable, + .formChangeTable = sChesnaughtFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_CHESPIN #if P_FAMILY_FENNEKIN @@ -424,7 +500,84 @@ const struct SpeciesInfo gSpeciesInfoGen6[] = ) .levelUpLearnset = sDelphoxLevelUpLearnset, .teachableLearnset = sDelphoxTeachableLearnset, + .formSpeciesIdTable = sDelphoxFormSpeciesIdTable, + .formChangeTable = sDelphoxFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_DELPHOX_MEGA] = + { + .baseHP = 75, + .baseAttack = 69, + .baseDefense = 72, + .baseSpeed = 134, + .baseSpAttack = 159, + .baseSpDefense = 125, + .types = MON_TYPES(TYPE_FIRE, TYPE_PSYCHIC), + .catchRate = 45, + .expYield = (P_UPDATED_EXP_YIELDS >= GEN_8) ? 267 : 240, + .evYield_SpAttack = 3, + .genderRatio = PERCENT_FEMALE(12.5), + .eggCycles = 20, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_MEDIUM_SLOW, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_FIELD), + .abilities = { ABILITY_BLAZE, ABILITY_NONE, ABILITY_MAGICIAN }, + .bodyColor = BODY_COLOR_RED, + .speciesName = _("Delphox"), + .cryId = CRY_DELPHOX, // CRY_DELPHOX_MEGA, + .natDexNum = NATIONAL_DEX_DELPHOX, + .categoryName = _("Fox"), + .height = 15, + .weight = 390, + .description = COMPOUND_STRING( + "It wields flaming branches to\n" + "dazzle its opponents before\n" + "incinerating them with a\n" + "huge fireball."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sDelphoxLevelUpLearnset, + .teachableLearnset = sDelphoxTeachableLearnset, + .formSpeciesIdTable = sDelphoxFormSpeciesIdTable, + .formChangeTable = sDelphoxFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_FENNEKIN #if P_FAMILY_FROAKIE @@ -627,6 +780,7 @@ const struct SpeciesInfo gSpeciesInfoGen6[] = .levelUpLearnset = sGreninjaLevelUpLearnset, .teachableLearnset = sGreninjaTeachableLearnset, .formSpeciesIdTable = sGreninjaFormSpeciesIdTable, + .formChangeTable = sGreninjaFormChangeTable, }, [SPECIES_GRENINJA_BATTLE_BOND] = @@ -760,6 +914,82 @@ const struct SpeciesInfo gSpeciesInfoGen6[] = .formSpeciesIdTable = sGreninjaFormSpeciesIdTable, .formChangeTable = sGreninjaBattleBondFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_GRENINJA_MEGA] = + { + .baseHP = 72, + .baseAttack = 125, + .baseDefense = 77, + .baseSpeed = 142, + .baseSpAttack = 133, + .baseSpDefense = 81, + .types = MON_TYPES(TYPE_WATER, TYPE_DARK), + .catchRate = 45, + .expYield = (P_UPDATED_EXP_YIELDS >= GEN_8) ? 265 : 239, + .evYield_Speed = 3, + .genderRatio = PERCENT_FEMALE(12.5), + .eggCycles = 20, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_MEDIUM_SLOW, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_WATER_1), + .abilities = { ABILITY_TORRENT, ABILITY_NONE, ABILITY_PROTEAN }, + .bodyColor = BODY_COLOR_BLUE, + .noFlip = TRUE, + .speciesName = _("Greninja"), + .cryId = CRY_GRENINJA, // CRY_GRENINJA_MEGA, + .natDexNum = NATIONAL_DEX_GRENINJA, + .categoryName = _("Ninja"), + .height = 15, + .weight = 400, + .description = COMPOUND_STRING( + "This Pokémon spins a giant\n" + "shuriken at high speed to make it\n" + "float, then clings to it upside\n" + "down to catch opponents unawares."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sGreninjaLevelUpLearnset, + .teachableLearnset = sGreninjaTeachableLearnset, + .formSpeciesIdTable = sGreninjaFormSpeciesIdTable, + .formChangeTable = sGreninjaFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_FROAKIE #if P_FAMILY_BUNNELBY @@ -1672,7 +1902,84 @@ const struct SpeciesInfo gSpeciesInfoGen6[] = ) .levelUpLearnset = sPyroarLevelUpLearnset, .teachableLearnset = sPyroarTeachableLearnset, + .formSpeciesIdTable = sPyroarFormSpeciesIdTable, + .formChangeTable = sPyroarFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_PYROAR_MEGA] = + { + .baseHP = 86, + .baseAttack = 88, + .baseDefense = 92, + .baseSpeed = 126, + .baseSpAttack = 129, + .baseSpDefense = 86, + .types = MON_TYPES(TYPE_FIRE, TYPE_NORMAL), + .catchRate = 65, + .expYield = 177, + .evYield_SpAttack = 2, + .genderRatio = PERCENT_FEMALE(87.5), + .eggCycles = 20, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_MEDIUM_SLOW, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_FIELD), + .abilities = { ABILITY_RIVALRY, ABILITY_UNNERVE, ABILITY_MOXIE }, + .bodyColor = BODY_COLOR_BROWN, + .speciesName = _("Pyroar"), + .cryId = CRY_PYROAR, // CRY_PYROAR_MEGA, + .natDexNum = NATIONAL_DEX_PYROAR, + .categoryName = _("Royal"), + .height = 15, + .weight = 933, + .description = COMPOUND_STRING( + "This Pokémon spews flames hotter\n" + "than 18,000 degrees Fahrenheit.\n" + "It swings around its grand, blazing\n" + "mane as it protects its allies."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sPyroarLevelUpLearnset, + .teachableLearnset = sPyroarTeachableLearnset, + .formSpeciesIdTable = sPyroarFormSpeciesIdTable, + .formChangeTable = sPyroarFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_LITLEO #if P_FAMILY_FLABEBE @@ -2018,6 +2325,81 @@ const struct SpeciesInfo gSpeciesInfoGen6[] = "decorated with flowering plants of\n" "many different colors."), }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_FLOETTE_MEGA] = + { + .baseHP = 74, + .baseAttack = 85, + .baseDefense = 87, + .baseSpeed = 102, + .baseSpAttack = 155, + .baseSpDefense = 148, + .types = MON_TYPES(TYPE_FAIRY), + .catchRate = 120, + .expYield = 1, + .evYield_SpDefense = 2, + .genderRatio = MON_FEMALE, + .eggCycles = 20, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_MEDIUM_FAST, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_NO_EGGS_DISCOVERED), + .abilities = { ABILITY_FLOWER_VEIL, ABILITY_NONE, ABILITY_SYMBIOSIS }, + .bodyColor = BODY_COLOR_WHITE, + .speciesName = _("Floette"), + .cryId = CRY_FLOETTE_ETERNAL, // CRY_FLOETTE_MEGA, + .natDexNum = NATIONAL_DEX_FLOETTE, + .categoryName = _("Single Bloom"), + // height + // weight + .description = COMPOUND_STRING( + "The Eternal Flower has absorbed\n" + "all the energy from Mega\n" + "Evolution. The flower now attacks\n" + "enemies on its own."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sFloetteEternalLevelUpLearnset, + .teachableLearnset = sFloetteEternalTeachableLearnset, + .formSpeciesIdTable = sFloetteFormSpeciesIdTable, + .formChangeTable = sFloetteEternalFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_FLABEBE #if P_FAMILY_SKIDDO @@ -3295,7 +3677,84 @@ const struct SpeciesInfo gSpeciesInfoGen6[] = ) .levelUpLearnset = sMalamarLevelUpLearnset, .teachableLearnset = sMalamarTeachableLearnset, + .formSpeciesIdTable = sMalamarFormSpeciesIdTable, + .formChangeTable = sMalamarFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_MALAMAR_MEGA] = + { + .baseHP = 86, + .baseAttack = 102, + .baseDefense = 88, + .baseSpeed = 88, + .baseSpAttack = 98, + .baseSpDefense = 120, + .types = MON_TYPES(TYPE_DARK, TYPE_PSYCHIC), + .catchRate = 80, + .expYield = 169, + .evYield_Attack = 2, + .genderRatio = PERCENT_FEMALE(50), + .eggCycles = 20, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_MEDIUM_FAST, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_WATER_1, EGG_GROUP_WATER_2), + .abilities = { ABILITY_CONTRARY, ABILITY_SUCTION_CUPS, ABILITY_INFILTRATOR }, + .bodyColor = BODY_COLOR_BLUE, + .speciesName = _("Malamar"), + .cryId = CRY_MALAMAR, // CRY_MALAMAR_MEGA, + .natDexNum = NATIONAL_DEX_MALAMAR, + .categoryName = _("Overturning"), + .height = 29, + .weight = 698, + .description = COMPOUND_STRING( + "It uses its colorful lights to\n" + "overwrite the personality and\n" + "memories of others-and to\n" + "control them."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sMalamarLevelUpLearnset, + .teachableLearnset = sMalamarTeachableLearnset, + .formSpeciesIdTable = sMalamarFormSpeciesIdTable, + .formChangeTable = sMalamarFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_INKAY #if P_FAMILY_BINACLE @@ -3436,7 +3895,84 @@ const struct SpeciesInfo gSpeciesInfoGen6[] = ) .levelUpLearnset = sBarbaracleLevelUpLearnset, .teachableLearnset = sBarbaracleTeachableLearnset, + .formSpeciesIdTable = sBarbaracleFormSpeciesIdTable, + .formChangeTable = sBarbaracleFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_BARBARACLE_MEGA] = + { + .baseHP = 72, + .baseAttack = 140, + .baseDefense = 130, + .baseSpeed = 88, + .baseSpAttack = 64, + .baseSpDefense = 106, + .types = MON_TYPES(TYPE_ROCK, TYPE_FIGHTING), + .catchRate = 45, + .expYield = 175, + .evYield_Attack = 2, + .genderRatio = PERCENT_FEMALE(50), + .eggCycles = 20, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_MEDIUM_FAST, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_WATER_3), + .abilities = { ABILITY_TOUGH_CLAWS, ABILITY_SNIPER, ABILITY_PICKPOCKET }, + .bodyColor = BODY_COLOR_BROWN, + .noFlip = TRUE, + .speciesName = _("Barbaracle"), + .cryId = CRY_BARBARACLE, // CRY_BARBARACLE_MEGA, + .natDexNum = NATIONAL_DEX_BARBARACLE, + .categoryName = _("Collective"), + .height = 22, + .weight = 1000, + .description = COMPOUND_STRING( + "It uses its many arms to toy\n" + "with its opponents. This\n" + "keeps the head extremely busy."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sBarbaracleLevelUpLearnset, + .teachableLearnset = sBarbaracleTeachableLearnset, + .formSpeciesIdTable = sBarbaracleFormSpeciesIdTable, + .formChangeTable = sBarbaracleFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_BINACLE #if P_FAMILY_SKRELP @@ -3580,7 +4116,84 @@ const struct SpeciesInfo gSpeciesInfoGen6[] = ) .levelUpLearnset = sDragalgeLevelUpLearnset, .teachableLearnset = sDragalgeTeachableLearnset, + .formSpeciesIdTable = sDragalgeFormSpeciesIdTable, + .formChangeTable = sDragalgeFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_DRAGALGE_MEGA] = + { + .baseHP = 65, + .baseAttack = 85, + .baseDefense = 105, + .baseSpeed = 44, + .baseSpAttack = 132, + .baseSpDefense = 163, + .types = MON_TYPES(TYPE_POISON, TYPE_DRAGON), + .catchRate = 55, + .expYield = 173, + .evYield_SpDefense = 2, + .genderRatio = PERCENT_FEMALE(50), + .eggCycles = 20, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_MEDIUM_FAST, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_WATER_1, EGG_GROUP_DRAGON), + .abilities = { ABILITY_POISON_POINT, ABILITY_POISON_TOUCH, ABILITY_ADAPTABILITY }, + .bodyColor = BODY_COLOR_BROWN, + .speciesName = _("Dragalge"), + .cryId = CRY_DRAGALGE, // CRY_DRAGALGE_MEGA, + .natDexNum = NATIONAL_DEX_DRAGALGE, + .categoryName = _("Mock Kelp"), + .height = 21, + .weight = 1003, + .description = COMPOUND_STRING( + "It spits a liquid that causes the\n" + "regenerative power of cells to run\n" + "wild. The liquid is deadly poison\n" + "to everything other than itself."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sDragalgeLevelUpLearnset, + .teachableLearnset = sDragalgeTeachableLearnset, + .formSpeciesIdTable = sDragalgeFormSpeciesIdTable, + .formChangeTable = sDragalgeFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_SKRELP #if P_FAMILY_CLAUNCHER @@ -4223,7 +4836,84 @@ const struct SpeciesInfo gSpeciesInfoGen6[] = .levelUpLearnset = sHawluchaLevelUpLearnset, .teachableLearnset = sHawluchaTeachableLearnset, .eggMoveLearnset = sHawluchaEggMoveLearnset, + .formSpeciesIdTable = sHawluchaFormSpeciesIdTable, + .formChangeTable = sHawluchaFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_HAWLUCHA_MEGA] = + { + .baseHP = 78, + .baseAttack = 137, + .baseDefense = 100, + .baseSpeed = 118, + .baseSpAttack = 74, + .baseSpDefense = 93, + .types = MON_TYPES(TYPE_FIGHTING, TYPE_FLYING), + .catchRate = 100, + .expYield = 175, + .evYield_Attack = 2, + .itemRare = ITEM_KINGS_ROCK, + .genderRatio = PERCENT_FEMALE(50), + .eggCycles = 20, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_MEDIUM_FAST, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_FLYING, EGG_GROUP_HUMAN_LIKE), + .abilities = { ABILITY_LIMBER, ABILITY_UNBURDEN, ABILITY_MOLD_BREAKER }, + .bodyColor = BODY_COLOR_GREEN, + .speciesName = _("Hawlucha"), + .cryId = CRY_HAWLUCHA, // CRY_HAWLUCHA_MEGA, + .natDexNum = NATIONAL_DEX_HAWLUCHA, + .categoryName = _("Wrestling"), + .height = 10, + .weight = 250, + .description = COMPOUND_STRING( + "Mega Evolution has pumped up all\n" + "its muscles. Hawlucha flexes to\n" + "show off its strength."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sHawluchaLevelUpLearnset, + .teachableLearnset = sHawluchaTeachableLearnset, + .formSpeciesIdTable = sHawluchaFormSpeciesIdTable, + .formChangeTable = sHawluchaFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_HAWLUCHA #if P_FAMILY_DEDENNE @@ -6372,6 +7062,82 @@ const struct SpeciesInfo gSpeciesInfoGen6[] = .formSpeciesIdTable = sZygardeFormSpeciesIdTable, .formChangeTable = sZygardeCompleteFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_ZYGARDE_MEGA] = + { + .baseHP = 216, + .baseAttack = 70, + .baseDefense = 91, + .baseSpeed = 100, + .baseSpAttack = 216, + .baseSpDefense = 85, + .types = MON_TYPES(TYPE_DRAGON, TYPE_GROUND), + .catchRate = 3, + .expYield = (P_UPDATED_EXP_YIELDS >= GEN_8) ? 354 : 319, + .evYield_HP = 3, + .genderRatio = MON_GENDERLESS, + .eggCycles = 120, + .friendship = 0, + .growthRate = GROWTH_SLOW, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_NO_EGGS_DISCOVERED), + .abilities = { ABILITY_AURA_BREAK, ABILITY_NONE, ABILITY_NONE }, + .bodyColor = BODY_COLOR_BLACK, + .noFlip = TRUE, + .speciesName = _("Zygarde"), + .cryId = CRY_ZYGARDE_COMPLETE, // CRY_ZYGARDE_MEGA, + .natDexNum = NATIONAL_DEX_ZYGARDE, + .categoryName = _("Order"), + .height = 77, + .weight = 6100, + .description = COMPOUND_STRING( + "In response to people's emotions\n" + "during an unprecedented crisis,\n" + "Zygarde Mega Evolves and calms the\n" + "situation with its unmatched power."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sZygardeLevelUpLearnset, + .teachableLearnset = sZygardeTeachableLearnset, + .formSpeciesIdTable = sZygardeFormSpeciesIdTable, + .formChangeTable = sZygardeCompleteFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_ZYGARDE #if P_FAMILY_DIANCIE diff --git a/src/data/pokemon/species_info/gen_7_families.h b/src/data/pokemon/species_info/gen_7_families.h index 3877ee2705..3b982f2c22 100644 --- a/src/data/pokemon/species_info/gen_7_families.h +++ b/src/data/pokemon/species_info/gen_7_families.h @@ -5203,7 +5203,85 @@ const struct SpeciesInfo gSpeciesInfoGen7[] = .levelUpLearnset = sDrampaLevelUpLearnset, .teachableLearnset = sDrampaTeachableLearnset, .eggMoveLearnset = sDrampaEggMoveLearnset, + .formSpeciesIdTable = sDrampaFormSpeciesIdTable, + .formChangeTable = sDrampaFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_DRAMPA_MEGA] = + { + .baseHP = 78, + .baseAttack = 85, + .baseDefense = 110, + .baseSpeed = 36, + .baseSpAttack = 160, + .baseSpDefense = 116, + .types = MON_TYPES(TYPE_NORMAL, TYPE_DRAGON), + .catchRate = 70, + .expYield = 170, + .evYield_SpAttack = 2, + .itemRare = ITEM_PERSIM_BERRY, + .genderRatio = PERCENT_FEMALE(50), + .eggCycles = 20, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_MEDIUM_FAST, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_MONSTER, EGG_GROUP_DRAGON), + .abilities = { ABILITY_BERSERK, ABILITY_SAP_SIPPER, ABILITY_CLOUD_NINE }, + .bodyColor = BODY_COLOR_WHITE, + .speciesName = _("Drampa"), + .cryId = CRY_DRAMPA, // CRY_DRAMPA_MEGA, + .natDexNum = NATIONAL_DEX_DRAMPA, + .categoryName = _("Imposing"), + .height = 3, + .weight = 2405, + .description = COMPOUND_STRING( + "Drampa's cells have been\n" + "invigorated, allowing it to regain\n" + "its youth. It manipulates the\n" + "atmosphere to summon storms."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sDrampaLevelUpLearnset, + .teachableLearnset = sDrampaTeachableLearnset, + .formSpeciesIdTable = sDrampaFormSpeciesIdTable, + .formChangeTable = sDrampaFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_DRAMPA #if P_FAMILY_DHELMISE diff --git a/src/data/pokemon/species_info/gen_8_families.h b/src/data/pokemon/species_info/gen_8_families.h index 6ba7fed676..04dc82f493 100644 --- a/src/data/pokemon/species_info/gen_8_families.h +++ b/src/data/pokemon/species_info/gen_8_families.h @@ -5241,7 +5241,85 @@ const struct SpeciesInfo gSpeciesInfoGen8[] = ) .levelUpLearnset = sFalinksLevelUpLearnset, .teachableLearnset = sFalinksTeachableLearnset, + .formSpeciesIdTable = sFalinksFormSpeciesIdTable, + .formChangeTable = sFalinksFormChangeTable, }, + +#if P_GEN_9_MEGA_EVOLUTIONS + [SPECIES_FALINKS_MEGA] = + { + .baseHP = 65, + .baseAttack = 135, + .baseDefense = 135, + .baseSpeed = 100, + .baseSpAttack = 70, + .baseSpDefense = 65, + .types = MON_TYPES(TYPE_FIGHTING), + .catchRate = 45, + .expYield = 165, + .evYield_Attack = 2, + .evYield_SpDefense = 1, + .genderRatio = MON_GENDERLESS, + .eggCycles = 25, + .friendship = STANDARD_FRIENDSHIP, + .growthRate = GROWTH_MEDIUM_FAST, + .eggGroups = MON_EGG_GROUPS(EGG_GROUP_FAIRY, EGG_GROUP_MINERAL), + .abilities = { ABILITY_BATTLE_ARMOR, ABILITY_NONE, ABILITY_DEFIANT }, + .bodyColor = BODY_COLOR_YELLOW, + .speciesName = _("Falinks"), + .cryId = CRY_FALINKS, + .natDexNum = NATIONAL_DEX_FALINKS, + .categoryName = _("Formation"), + .height = 16, + .weight = 990, + .description = COMPOUND_STRING( + "Mega Falinks has taken on the\n" + "ultimate battle formation, which\n" + "can be achieved only if the troopers\n" + "and brass have the strongest of bonds."), + .frontPic = gMonFrontPic_CircledQuestionMark, + .frontPicSize = MON_COORDS_SIZE(40, 40), + .frontPicYOffset = 12, + .frontAnimFrames = sAnims_TwoFramePlaceHolder, + .frontAnimId = ANIM_V_SQUISH_AND_BOUNCE, + .backPic = gMonBackPic_CircledQuestionMark, + .backPicSize = MON_COORDS_SIZE(40, 40), + .backPicYOffset = 12, + .backAnimId = BACK_ANIM_NONE, + .palette = gMonPalette_CircledQuestionMark, + .shinyPalette = gMonShinyPalette_CircledQuestionMark, + .iconSprite = gMonIcon_QuestionMark, + .iconPalIndex = 0, + .pokemonJumpType = PKMN_JUMP_TYPE_NONE, + FOOTPRINT(QuestionMark) + SHADOW(-1, 0, SHADOW_SIZE_M) + #if OW_BATTLE_ONLY_FORMS + .overworldData = { + .tileTag = TAG_NONE, + .paletteTag = OBJ_EVENT_PAL_TAG_SUBSTITUTE, + .reflectionPaletteTag = OBJ_EVENT_PAL_TAG_NONE, + .size = 512, + .width = 32, + .height = 32, + .paletteSlot = PALSLOT_NPC_1, + .shadowSize = SHADOW_SIZE_M, + .inanimate = FALSE, + .compressed = COMP, + .tracks = TRACKS_FOOT, + .oam = &gObjectEventBaseOam_32x32, + .subspriteTables = sOamTables_32x32, + .anims = sAnimTable_Following, + .images = sPicTable_Substitute, + .affineAnims = gDummySpriteAffineAnimTable, + }, + #endif //OW_BATTLE_ONLY_FORMS + .isMegaEvolution = TRUE, + .levelUpLearnset = sFalinksLevelUpLearnset, + .teachableLearnset = sFalinksTeachableLearnset, + .formSpeciesIdTable = sFalinksFormSpeciesIdTable, + .formChangeTable = sFalinksFormChangeTable, + }, +#endif //P_GEN_9_MEGA_EVOLUTIONS #endif //P_FAMILY_FALINKS #if P_FAMILY_PINCURCHIN diff --git a/src/data/pokemon/teachable_learnsets.h b/src/data/pokemon/teachable_learnsets.h index 8b400f5675..970cde222a 100644 --- a/src/data/pokemon/teachable_learnsets.h +++ b/src/data/pokemon/teachable_learnsets.h @@ -909,8 +909,10 @@ static const u16 sArbokTeachableLearnset[] = { static const u16 sPichuTeachableLearnset[] = { MOVE_ATTRACT, MOVE_BODY_SLAM, + MOVE_BRICK_BREAK, MOVE_COUNTER, MOVE_DEFENSE_CURL, + MOVE_DIG, MOVE_DOUBLE_EDGE, MOVE_DOUBLE_TEAM, MOVE_ENDURE, @@ -1501,6 +1503,7 @@ static const u16 sNidokingTeachableLearnset[] = { #if P_GEN_2_CROSS_EVOS static const u16 sCleffaTeachableLearnset[] = { MOVE_ATTRACT, + MOVE_BLIZZARD, MOVE_BODY_SLAM, MOVE_CALM_MIND, MOVE_COUNTER, @@ -1514,6 +1517,7 @@ static const u16 sCleffaTeachableLearnset[] = { MOVE_FIRE_BLAST, MOVE_FLAMETHROWER, MOVE_FLASH, + MOVE_ICE_BEAM, MOVE_ICY_WIND, MOVE_IRON_TAIL, MOVE_LIGHT_SCREEN, @@ -1539,6 +1543,8 @@ static const u16 sCleffaTeachableLearnset[] = { MOVE_SUNNY_DAY, MOVE_SWAGGER, MOVE_SWIFT, + MOVE_THUNDER, + MOVE_THUNDERBOLT, MOVE_THUNDER_WAVE, MOVE_TOXIC, MOVE_WATER_PULSE, @@ -4113,6 +4119,7 @@ static const u16 sSlowbroGalarTeachableLearnset[] = { MOVE_ENDURE, MOVE_FACADE, MOVE_FIRE_BLAST, + MOVE_FIRE_PUNCH, MOVE_FLAMETHROWER, MOVE_HAIL, MOVE_HYPER_BEAM, @@ -4139,6 +4146,7 @@ static const u16 sSlowbroGalarTeachableLearnset[] = { MOVE_SUNNY_DAY, MOVE_SURF, MOVE_SWIFT, + MOVE_THUNDER_PUNCH, MOVE_THUNDER_WAVE, MOVE_TOXIC, MOVE_WATERFALL, @@ -6401,6 +6409,7 @@ static const u16 sStaryuTeachableLearnset[] = { MOVE_REFLECT, MOVE_REST, MOVE_ROLLOUT, + MOVE_SAFEGUARD, MOVE_SLEEP_TALK, MOVE_SNORE, MOVE_SURF, @@ -6418,6 +6427,7 @@ static const u16 sStaryuTeachableLearnset[] = { static const u16 sStarmieTeachableLearnset[] = { MOVE_ATTRACT, MOVE_BLIZZARD, + MOVE_BULK_UP, MOVE_DIVE, MOVE_DOUBLE_EDGE, MOVE_DOUBLE_TEAM, @@ -6437,6 +6447,7 @@ static const u16 sStarmieTeachableLearnset[] = { MOVE_REFLECT, MOVE_REST, MOVE_ROLLOUT, + MOVE_SAFEGUARD, MOVE_SKILL_SWAP, MOVE_SLEEP_TALK, MOVE_SNORE, @@ -7073,6 +7084,7 @@ static const u16 sMagmortarTeachableLearnset[] = { #if P_FAMILY_PINSIR static const u16 sPinsirTeachableLearnset[] = { + MOVE_AERIAL_ACE, MOVE_ATTRACT, MOVE_BODY_SLAM, MOVE_BRICK_BREAK, @@ -7373,6 +7385,7 @@ static const u16 sVaporeonTeachableLearnset[] = { MOVE_SURF, MOVE_SWAGGER, MOVE_SWIFT, + MOVE_TAUNT, MOVE_TOXIC, MOVE_WATERFALL, MOVE_WATER_PULSE, @@ -7442,6 +7455,8 @@ static const u16 sFlareonTeachableLearnset[] = { MOVE_SUNNY_DAY, MOVE_SWAGGER, MOVE_SWIFT, + MOVE_SWORDS_DANCE, + MOVE_TAUNT, MOVE_TOXIC, MOVE_UNAVAILABLE, }; @@ -7471,6 +7486,7 @@ static const u16 sEspeonTeachableLearnset[] = { MOVE_REST, MOVE_ROAR, MOVE_ROCK_SMASH, + MOVE_SAFEGUARD, MOVE_SHADOW_BALL, MOVE_SKILL_SWAP, MOVE_SLEEP_TALK, @@ -7556,6 +7572,7 @@ static const u16 sLeafeonTeachableLearnset[] = { MOVE_SWAGGER, MOVE_SWIFT, MOVE_SWORDS_DANCE, + MOVE_TAUNT, MOVE_TOXIC, MOVE_UNAVAILABLE, }; @@ -7588,6 +7605,7 @@ static const u16 sGlaceonTeachableLearnset[] = { MOVE_SUNNY_DAY, MOVE_SWAGGER, MOVE_SWIFT, + MOVE_TAUNT, MOVE_TOXIC, MOVE_WATER_PULSE, MOVE_UNAVAILABLE, @@ -7626,6 +7644,7 @@ static const u16 sSylveonTeachableLearnset[] = { MOVE_SUNNY_DAY, MOVE_SWAGGER, MOVE_SWIFT, + MOVE_TAUNT, MOVE_TOXIC, MOVE_UNAVAILABLE, }; @@ -14445,6 +14464,7 @@ static const u16 sSableyeTeachableLearnset[] = { MOVE_REST, MOVE_ROCK_SMASH, MOVE_ROCK_TOMB, + MOVE_SAFEGUARD, MOVE_SEISMIC_TOSS, MOVE_SHADOW_BALL, MOVE_SHOCK_WAVE, @@ -14974,6 +14994,7 @@ static const u16 sIllumiseTeachableLearnset[] = { #if P_GEN_4_CROSS_EVOS static const u16 sBudewTeachableLearnset[] = { MOVE_ATTRACT, + MOVE_BODY_SLAM, MOVE_BULLET_SEED, MOVE_CUT, MOVE_DOUBLE_TEAM, @@ -16512,6 +16533,7 @@ static const u16 sShuppetTeachableLearnset[] = { MOVE_SNORE, MOVE_SUNNY_DAY, MOVE_SWAGGER, + MOVE_SWORDS_DANCE, MOVE_TAUNT, MOVE_THIEF, MOVE_THUNDER, @@ -19381,6 +19403,7 @@ static const u16 sBunearyTeachableLearnset[] = { MOVE_DIG, MOVE_DOUBLE_EDGE, MOVE_DOUBLE_TEAM, + MOVE_DYNAMIC_PUNCH, MOVE_ENDURE, MOVE_FACADE, MOVE_FIRE_PUNCH, @@ -19419,6 +19442,7 @@ static const u16 sLopunnyTeachableLearnset[] = { MOVE_DIG, MOVE_DOUBLE_EDGE, MOVE_DOUBLE_TEAM, + MOVE_DYNAMIC_PUNCH, MOVE_ENDURE, MOVE_FACADE, MOVE_FIRE_PUNCH, @@ -19444,6 +19468,7 @@ static const u16 sLopunnyTeachableLearnset[] = { MOVE_SUNNY_DAY, MOVE_SWAGGER, MOVE_SWIFT, + MOVE_SWORDS_DANCE, MOVE_THUNDER, MOVE_THUNDERBOLT, MOVE_THUNDER_PUNCH, @@ -19778,6 +19803,7 @@ static const u16 sGabiteTeachableLearnset[] = { MOVE_AERIAL_ACE, MOVE_ATTRACT, MOVE_BODY_SLAM, + MOVE_BRICK_BREAK, MOVE_CUT, MOVE_DIG, MOVE_DOUBLE_EDGE, @@ -21372,6 +21398,7 @@ static const u16 sPatratTeachableLearnset[] = { MOVE_CUT, MOVE_DIG, MOVE_DOUBLE_TEAM, + MOVE_ENDURE, MOVE_FACADE, MOVE_IRON_TAIL, MOVE_PROTECT, @@ -21394,8 +21421,10 @@ static const u16 sWatchogTeachableLearnset[] = { MOVE_BULLET_SEED, MOVE_CUT, MOVE_DIG, + MOVE_DOUBLE_EDGE, MOVE_DOUBLE_TEAM, MOVE_DREAM_EATER, + MOVE_ENDURE, MOVE_FACADE, MOVE_FIRE_PUNCH, MOVE_FLAMETHROWER, @@ -21417,6 +21446,7 @@ static const u16 sWatchogTeachableLearnset[] = { MOVE_STRENGTH, MOVE_SUNNY_DAY, MOVE_SWAGGER, + MOVE_SWIFT, MOVE_SWORDS_DANCE, MOVE_THUNDER, MOVE_THUNDERBOLT, @@ -21576,10 +21606,12 @@ static const u16 sLiepardTeachableLearnset[] = { #if P_FAMILY_PANSAGE static const u16 sPansageTeachableLearnset[] = { MOVE_ATTRACT, + MOVE_BRICK_BREAK, MOVE_BULLET_SEED, MOVE_CUT, MOVE_DIG, MOVE_DOUBLE_TEAM, + MOVE_ENDURE, MOVE_FACADE, MOVE_FLASH, MOVE_FOCUS_PUNCH, @@ -21587,6 +21619,7 @@ static const u16 sPansageTeachableLearnset[] = { MOVE_IRON_TAIL, MOVE_PROTECT, MOVE_REST, + MOVE_ROCK_SLIDE, MOVE_ROCK_SMASH, MOVE_ROCK_TOMB, MOVE_SLEEP_TALK, @@ -21594,6 +21627,7 @@ static const u16 sPansageTeachableLearnset[] = { MOVE_SOLAR_BEAM, MOVE_SUNNY_DAY, MOVE_SWAGGER, + MOVE_SWIFT, MOVE_TAUNT, MOVE_THIEF, MOVE_TORMENT, @@ -21608,6 +21642,7 @@ static const u16 sSimisageTeachableLearnset[] = { MOVE_CUT, MOVE_DIG, MOVE_DOUBLE_TEAM, + MOVE_ENDURE, MOVE_FACADE, MOVE_FLASH, MOVE_FOCUS_PUNCH, @@ -21624,6 +21659,7 @@ static const u16 sSimisageTeachableLearnset[] = { MOVE_SOLAR_BEAM, MOVE_SUNNY_DAY, MOVE_SWAGGER, + MOVE_SWIFT, MOVE_TAUNT, MOVE_THIEF, MOVE_TORMENT, @@ -21635,9 +21671,11 @@ static const u16 sSimisageTeachableLearnset[] = { #if P_FAMILY_PANSEAR static const u16 sPansearTeachableLearnset[] = { MOVE_ATTRACT, + MOVE_BRICK_BREAK, MOVE_CUT, MOVE_DIG, MOVE_DOUBLE_TEAM, + MOVE_ENDURE, MOVE_FACADE, MOVE_FIRE_BLAST, MOVE_FIRE_PUNCH, @@ -21647,6 +21685,7 @@ static const u16 sPansearTeachableLearnset[] = { MOVE_OVERHEAT, MOVE_PROTECT, MOVE_REST, + MOVE_ROCK_SLIDE, MOVE_ROCK_SMASH, MOVE_ROCK_TOMB, MOVE_SLEEP_TALK, @@ -21654,6 +21693,7 @@ static const u16 sPansearTeachableLearnset[] = { MOVE_SOLAR_BEAM, MOVE_SUNNY_DAY, MOVE_SWAGGER, + MOVE_SWIFT, MOVE_TAUNT, MOVE_THIEF, MOVE_TORMENT, @@ -21667,6 +21707,7 @@ static const u16 sSimisearTeachableLearnset[] = { MOVE_CUT, MOVE_DIG, MOVE_DOUBLE_TEAM, + MOVE_ENDURE, MOVE_FACADE, MOVE_FIRE_BLAST, MOVE_FIRE_PUNCH, @@ -21685,6 +21726,7 @@ static const u16 sSimisearTeachableLearnset[] = { MOVE_SOLAR_BEAM, MOVE_SUNNY_DAY, MOVE_SWAGGER, + MOVE_SWIFT, MOVE_TAUNT, MOVE_THIEF, MOVE_TORMENT, @@ -21697,10 +21739,12 @@ static const u16 sSimisearTeachableLearnset[] = { static const u16 sPanpourTeachableLearnset[] = { MOVE_ATTRACT, MOVE_BLIZZARD, + MOVE_BRICK_BREAK, MOVE_CUT, MOVE_DIG, MOVE_DIVE, MOVE_DOUBLE_TEAM, + MOVE_ENDURE, MOVE_FACADE, MOVE_FOCUS_PUNCH, MOVE_HAIL, @@ -21711,12 +21755,14 @@ static const u16 sPanpourTeachableLearnset[] = { MOVE_PROTECT, MOVE_RAIN_DANCE, MOVE_REST, + MOVE_ROCK_SLIDE, MOVE_ROCK_SMASH, MOVE_ROCK_TOMB, MOVE_SLEEP_TALK, MOVE_SNORE, MOVE_SURF, MOVE_SWAGGER, + MOVE_SWIFT, MOVE_TAUNT, MOVE_THIEF, MOVE_TORMENT, @@ -21734,6 +21780,7 @@ static const u16 sSimipourTeachableLearnset[] = { MOVE_DIG, MOVE_DIVE, MOVE_DOUBLE_TEAM, + MOVE_ENDURE, MOVE_FACADE, MOVE_FOCUS_PUNCH, MOVE_HAIL, @@ -21752,6 +21799,7 @@ static const u16 sSimipourTeachableLearnset[] = { MOVE_SNORE, MOVE_SURF, MOVE_SWAGGER, + MOVE_SWIFT, MOVE_TAUNT, MOVE_THIEF, MOVE_TORMENT, @@ -22558,6 +22606,7 @@ static const u16 sVenipedeTeachableLearnset[] = { MOVE_PROTECT, MOVE_REST, MOVE_ROCK_SMASH, + MOVE_ROCK_TOMB, MOVE_ROLLOUT, MOVE_SLEEP_TALK, MOVE_SLUDGE_BOMB, @@ -22580,6 +22629,7 @@ static const u16 sWhirlipedeTeachableLearnset[] = { MOVE_PROTECT, MOVE_REST, MOVE_ROCK_SMASH, + MOVE_ROCK_TOMB, MOVE_ROLLOUT, MOVE_SLEEP_TALK, MOVE_SLUDGE_BOMB, @@ -22823,6 +22873,7 @@ static const u16 sBasculegionTeachableLearnset[] = { #if P_FAMILY_SANDILE static const u16 sSandileTeachableLearnset[] = { + MOVE_AERIAL_ACE, MOVE_ATTRACT, MOVE_BODY_SLAM, MOVE_BRICK_BREAK, @@ -22831,6 +22882,7 @@ static const u16 sSandileTeachableLearnset[] = { MOVE_DIG, MOVE_DOUBLE_EDGE, MOVE_DOUBLE_TEAM, + MOVE_DRAGON_CLAW, MOVE_EARTHQUAKE, MOVE_ENDURE, MOVE_FACADE, @@ -23166,6 +23218,7 @@ static const u16 sScraggyTeachableLearnset[] = { MOVE_DOUBLE_EDGE, MOVE_DOUBLE_TEAM, MOVE_DRAGON_CLAW, + MOVE_DYNAMIC_PUNCH, MOVE_ENDURE, MOVE_FACADE, MOVE_FIRE_PUNCH, @@ -23206,6 +23259,7 @@ static const u16 sScraftyTeachableLearnset[] = { MOVE_DOUBLE_EDGE, MOVE_DOUBLE_TEAM, MOVE_DRAGON_CLAW, + MOVE_DYNAMIC_PUNCH, MOVE_ENDURE, MOVE_FACADE, MOVE_FIRE_PUNCH, @@ -23513,6 +23567,7 @@ static const u16 sArcheopsTeachableLearnset[] = { #if P_FAMILY_TRUBBISH static const u16 sTrubbishTeachableLearnset[] = { MOVE_ATTRACT, + MOVE_BULLET_SEED, MOVE_DOUBLE_TEAM, MOVE_ENDURE, MOVE_EXPLOSION, @@ -23535,6 +23590,7 @@ static const u16 sTrubbishTeachableLearnset[] = { static const u16 sGarbodorTeachableLearnset[] = { MOVE_ATTRACT, MOVE_BODY_SLAM, + MOVE_BULLET_SEED, MOVE_DOUBLE_TEAM, MOVE_ENDURE, MOVE_EXPLOSION, @@ -24568,6 +24624,7 @@ static const u16 sKlinklangTeachableLearnset[] = { #if P_FAMILY_TYNAMO static const u16 sTynamoTeachableLearnset[] = { + MOVE_PROTECT, MOVE_THUNDER_WAVE, MOVE_UNAVAILABLE, }; @@ -24633,6 +24690,7 @@ static const u16 sEelektrossTeachableLearnset[] = { MOVE_THUNDER_PUNCH, MOVE_THUNDER_WAVE, MOVE_TOXIC, + MOVE_WATERFALL, MOVE_UNAVAILABLE, }; #endif //P_FAMILY_TYNAMO @@ -25106,6 +25164,7 @@ static const u16 sStunfiskGalarTeachableLearnset[] = { MOVE_SNORE, MOVE_SURF, MOVE_THUNDER_WAVE, + MOVE_TOXIC, MOVE_UNAVAILABLE, }; #endif //P_GALARIAN_FORMS @@ -26523,6 +26582,7 @@ static const u16 sFrogadierTeachableLearnset[] = { MOVE_AERIAL_ACE, MOVE_ATTRACT, MOVE_BLIZZARD, + MOVE_BRICK_BREAK, MOVE_COUNTER, MOVE_CUT, MOVE_DIG, @@ -26762,6 +26822,7 @@ static const u16 sTalonflameTeachableLearnset[] = { #if P_FAMILY_SCATTERBUG static const u16 sScatterbugTeachableLearnset[] = { + MOVE_PROTECT, MOVE_UNAVAILABLE, }; @@ -26926,6 +26987,7 @@ static const u16 sFloetteEternalTeachableLearnset[] = { MOVE_FACADE, MOVE_FLASH, MOVE_GIGA_DRAIN, + MOVE_HYPER_BEAM, MOVE_LIGHT_SCREEN, MOVE_METRONOME, MOVE_PROTECT, @@ -27099,6 +27161,7 @@ static const u16 sPangoroTeachableLearnset[] = { MOVE_FACADE, MOVE_FIRE_PUNCH, MOVE_FOCUS_PUNCH, + MOVE_GIGA_DRAIN, MOVE_HYPER_BEAM, MOVE_ICE_PUNCH, MOVE_MEGA_KICK, @@ -27133,9 +27196,12 @@ static const u16 sPangoroTeachableLearnset[] = { static const u16 sFurfrouTeachableLearnset[] = { MOVE_ATTRACT, MOVE_DIG, + MOVE_DOUBLE_EDGE, MOVE_DOUBLE_TEAM, + MOVE_ENDURE, MOVE_FACADE, MOVE_FLASH, + MOVE_HYPER_BEAM, MOVE_IRON_TAIL, MOVE_PROTECT, MOVE_RAIN_DANCE, @@ -27217,6 +27283,7 @@ static const u16 sMeowsticMTeachableLearnset[] = { MOVE_SUNNY_DAY, MOVE_SWAGGER, MOVE_SWIFT, + MOVE_TAUNT, MOVE_THUNDERBOLT, MOVE_THUNDER_WAVE, MOVE_TORMENT, @@ -27257,6 +27324,7 @@ static const u16 sMeowsticFTeachableLearnset[] = { MOVE_THUNDER_WAVE, MOVE_TORMENT, MOVE_TOXIC, + MOVE_WATER_PULSE, MOVE_UNAVAILABLE, }; #endif //P_FAMILY_ESPURR @@ -27417,6 +27485,7 @@ static const u16 sSwirlixTeachableLearnset[] = { MOVE_SUNNY_DAY, MOVE_SURF, MOVE_SWAGGER, + MOVE_SWORDS_DANCE, MOVE_THIEF, MOVE_THUNDERBOLT, MOVE_TOXIC, @@ -27446,6 +27515,7 @@ static const u16 sSlurpuffTeachableLearnset[] = { MOVE_SUNNY_DAY, MOVE_SURF, MOVE_SWAGGER, + MOVE_SWORDS_DANCE, MOVE_THIEF, MOVE_THUNDER, MOVE_THUNDERBOLT, @@ -27491,6 +27561,7 @@ static const u16 sInkayTeachableLearnset[] = { static const u16 sMalamarTeachableLearnset[] = { MOVE_AERIAL_ACE, MOVE_ATTRACT, + MOVE_BULK_UP, MOVE_CALM_MIND, MOVE_CUT, MOVE_DOUBLE_TEAM, @@ -27558,6 +27629,7 @@ static const u16 sBinacleTeachableLearnset[] = { MOVE_THIEF, MOVE_TORMENT, MOVE_TOXIC, + MOVE_WATERFALL, MOVE_WATER_PULSE, MOVE_UNAVAILABLE, }; @@ -27600,6 +27672,7 @@ static const u16 sBarbaracleTeachableLearnset[] = { MOVE_THIEF, MOVE_TORMENT, MOVE_TOXIC, + MOVE_WATERFALL, MOVE_WATER_PULSE, MOVE_UNAVAILABLE, }; @@ -28061,6 +28134,7 @@ static const u16 sGoomyTeachableLearnset[] = { MOVE_SLUDGE_BOMB, MOVE_SNORE, MOVE_SUNNY_DAY, + MOVE_SURF, MOVE_SWAGGER, MOVE_THUNDERBOLT, MOVE_TOXIC, @@ -28087,6 +28161,7 @@ static const u16 sSliggooTeachableLearnset[] = { MOVE_SLUDGE_BOMB, MOVE_SNORE, MOVE_SUNNY_DAY, + MOVE_SURF, MOVE_SWAGGER, MOVE_THUNDER, MOVE_THUNDERBOLT, @@ -28109,6 +28184,7 @@ static const u16 sGoodraTeachableLearnset[] = { MOVE_FIRE_PUNCH, MOVE_FLAMETHROWER, MOVE_FOCUS_PUNCH, + MOVE_GIGA_DRAIN, MOVE_HAIL, MOVE_HYPER_BEAM, MOVE_ICE_BEAM, @@ -28154,8 +28230,10 @@ static const u16 sSliggooHisuiTeachableLearnset[] = { MOVE_SLEEP_TALK, MOVE_SLUDGE_BOMB, MOVE_SUNNY_DAY, + MOVE_SURF, MOVE_THUNDER, MOVE_THUNDERBOLT, + MOVE_TOXIC, MOVE_WATER_PULSE, MOVE_UNAVAILABLE, }; @@ -28188,6 +28266,7 @@ static const u16 sGoodraHisuiTeachableLearnset[] = { MOVE_THUNDER, MOVE_THUNDERBOLT, MOVE_THUNDER_PUNCH, + MOVE_TOXIC, MOVE_WATER_PULSE, MOVE_UNAVAILABLE, }; @@ -28441,6 +28520,7 @@ static const u16 sAvaluggHisuiTeachableLearnset[] = { MOVE_ROCK_TOMB, MOVE_SANDSTORM, MOVE_SLEEP_TALK, + MOVE_SURF, MOVE_WATER_PULSE, MOVE_UNAVAILABLE, }; @@ -30524,6 +30604,7 @@ static const u16 sBruxishTeachableLearnset[] = { static const u16 sDrampaTeachableLearnset[] = { MOVE_ATTRACT, MOVE_BLIZZARD, + MOVE_BODY_SLAM, MOVE_CALM_MIND, MOVE_DOUBLE_TEAM, MOVE_DRAGON_CLAW, diff --git a/tools/learnset_helpers/porymoves_files/za.json b/tools/learnset_helpers/porymoves_files/za.json new file mode 100644 index 0000000000..cda070084f --- /dev/null +++ b/tools/learnset_helpers/porymoves_files/za.json @@ -0,0 +1,19086 @@ +{ + "BULBASAUR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "3", + "Move": "MOVE_VINE_WHIP" + }, + { + "Level": "6", + "Move": "MOVE_GROWTH" + }, + { + "Level": "9", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "12", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "15", + "Move": "MOVE_POISON_POWDER" + }, + { + "Level": "15", + "Move": "MOVE_SLEEP_POWDER" + }, + { + "Level": "25", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "30", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "35", + "Move": "MOVE_SYNTHESIS" + }, + { + "Level": "40", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "42", + "Move": "MOVE_SLUDGE_WAVE" + }, + { + "Level": "45", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "55", + "Move": "MOVE_SOLAR_BEAM" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BULLET_SEED", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_DRAIN", + "MOVE_LIGHT_SCREEN", + "MOVE_PROTECT", + "MOVE_SAFEGUARD", + "MOVE_SLUDGE_BOMB", + "MOVE_SUBSTITUTE", + "MOVE_SWORDS_DANCE", + "MOVE_TOXIC", + "MOVE_WORK_UP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "IVYSAUR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "3", + "Move": "MOVE_VINE_WHIP" + }, + { + "Level": "6", + "Move": "MOVE_GROWTH" + }, + { + "Level": "9", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "12", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "15", + "Move": "MOVE_POISON_POWDER" + }, + { + "Level": "15", + "Move": "MOVE_SLEEP_POWDER" + }, + { + "Level": "25", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "30", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "35", + "Move": "MOVE_SYNTHESIS" + }, + { + "Level": "40", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "42", + "Move": "MOVE_SLUDGE_WAVE" + }, + { + "Level": "45", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "55", + "Move": "MOVE_SOLAR_BEAM" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BULLET_SEED", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_DRAIN", + "MOVE_LIGHT_SCREEN", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_SAFEGUARD", + "MOVE_SLUDGE_BOMB", + "MOVE_SUBSTITUTE", + "MOVE_SWORDS_DANCE", + "MOVE_TOXIC", + "MOVE_WORK_UP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "VENUSAUR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "3", + "Move": "MOVE_VINE_WHIP" + }, + { + "Level": "6", + "Move": "MOVE_GROWTH" + }, + { + "Level": "9", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "12", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "15", + "Move": "MOVE_POISON_POWDER" + }, + { + "Level": "15", + "Move": "MOVE_SLEEP_POWDER" + }, + { + "Level": "25", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "30", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "35", + "Move": "MOVE_SYNTHESIS" + }, + { + "Level": "40", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "42", + "Move": "MOVE_SLUDGE_WAVE" + }, + { + "Level": "45", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "55", + "Move": "MOVE_SOLAR_BEAM" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BULLET_SEED", + "MOVE_EARTHQUAKE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_DRAIN", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_LIGHT_SCREEN", + "MOVE_OUTRAGE", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_SAFEGUARD", + "MOVE_SLUDGE_BOMB", + "MOVE_SUBSTITUTE", + "MOVE_SWORDS_DANCE", + "MOVE_TOXIC", + "MOVE_WORK_UP" + ], + "TutorMoves": [ + "MOVE_POWER_WHIP" + ], + "EggMoves": [] + }, + "CHARMANDER": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "4", + "Move": "MOVE_EMBER" + }, + { + "Level": "8", + "Move": "MOVE_SMOKESCREEN" + }, + { + "Level": "12", + "Move": "MOVE_DRAGON_BREATH" + }, + { + "Level": "17", + "Move": "MOVE_FIRE_FANG" + }, + { + "Level": "20", + "Move": "MOVE_FIRE_SPIN" + }, + { + "Level": "24", + "Move": "MOVE_SLASH" + }, + { + "Level": "30", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "42", + "Move": "MOVE_DRAGON_RUSH" + }, + { + "Level": "54", + "Move": "MOVE_FLARE_BLITZ" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_CRUNCH", + "MOVE_DIG", + "MOVE_DRAGON_CLAW", + "MOVE_DRAGON_PULSE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_PUNCH", + "MOVE_FOCUS_BLAST", + "MOVE_HEAT_WAVE", + "MOVE_IRON_TAIL", + "MOVE_OUTRAGE", + "MOVE_OVERHEAT", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_SWORDS_DANCE", + "MOVE_THUNDER_PUNCH", + "MOVE_WILL_O_WISP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "CHARMELEON": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "4", + "Move": "MOVE_EMBER" + }, + { + "Level": "8", + "Move": "MOVE_SMOKESCREEN" + }, + { + "Level": "12", + "Move": "MOVE_DRAGON_BREATH" + }, + { + "Level": "17", + "Move": "MOVE_FIRE_FANG" + }, + { + "Level": "20", + "Move": "MOVE_FIRE_SPIN" + }, + { + "Level": "24", + "Move": "MOVE_SLASH" + }, + { + "Level": "30", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "42", + "Move": "MOVE_DRAGON_RUSH" + }, + { + "Level": "54", + "Move": "MOVE_FLARE_BLITZ" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_CRUNCH", + "MOVE_DIG", + "MOVE_DRAGON_CLAW", + "MOVE_DRAGON_PULSE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_PUNCH", + "MOVE_FOCUS_BLAST", + "MOVE_HEAT_WAVE", + "MOVE_IRON_TAIL", + "MOVE_OUTRAGE", + "MOVE_OVERHEAT", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_SWORDS_DANCE", + "MOVE_THUNDER_PUNCH", + "MOVE_WILL_O_WISP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "CHARIZARD": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "1", + "Move": "MOVE_DRAGON_CLAW" + }, + { + "Level": "4", + "Move": "MOVE_EMBER" + }, + { + "Level": "8", + "Move": "MOVE_SMOKESCREEN" + }, + { + "Level": "12", + "Move": "MOVE_DRAGON_BREATH" + }, + { + "Level": "17", + "Move": "MOVE_FIRE_FANG" + }, + { + "Level": "20", + "Move": "MOVE_FIRE_SPIN" + }, + { + "Level": "24", + "Move": "MOVE_SLASH" + }, + { + "Level": "30", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "42", + "Move": "MOVE_DRAGON_RUSH" + }, + { + "Level": "54", + "Move": "MOVE_FLARE_BLITZ" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_CRUNCH", + "MOVE_DIG", + "MOVE_DOUBLE_EDGE", + "MOVE_DRAGON_PULSE", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FIRE_PUNCH", + "MOVE_FLY", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HEAT_WAVE", + "MOVE_HURRICANE", + "MOVE_HYPER_BEAM", + "MOVE_IRON_TAIL", + "MOVE_OUTRAGE", + "MOVE_OVERHEAT", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_SWORDS_DANCE", + "MOVE_THUNDER_PUNCH", + "MOVE_WILL_O_WISP" + ], + "TutorMoves": [ + "MOVE_AIR_SLASH", + "MOVE_FIRE_BLAST" + ], + "EggMoves": [] + }, + "SQUIRTLE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "3", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "12", + "Move": "MOVE_BITE" + }, + { + "Level": "15", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "20", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "30", + "Move": "MOVE_AQUA_RING" + }, + { + "Level": "35", + "Move": "MOVE_AQUA_JET" + }, + { + "Level": "40", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "45", + "Move": "MOVE_LIQUIDATION" + } + ], + "TMMoves": [ + "MOVE_AURA_SPHERE", + "MOVE_BLIZZARD", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_DIG", + "MOVE_DOUBLE_EDGE", + "MOVE_DRAGON_PULSE", + "MOVE_ENDURE", + "MOVE_FLIP_TURN", + "MOVE_HEADBUTT", + "MOVE_HYDRO_PUMP", + "MOVE_ICE_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_IRON_HEAD", + "MOVE_IRON_TAIL", + "MOVE_MUD_SHOT", + "MOVE_PROTECT", + "MOVE_ROCK_TOMB", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_WATERFALL", + "MOVE_WATER_PULSE", + "MOVE_WHIRLPOOL", + "MOVE_WORK_UP", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "WARTORTLE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "3", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "12", + "Move": "MOVE_BITE" + }, + { + "Level": "15", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "20", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "30", + "Move": "MOVE_AQUA_RING" + }, + { + "Level": "35", + "Move": "MOVE_AQUA_JET" + }, + { + "Level": "40", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "45", + "Move": "MOVE_LIQUIDATION" + } + ], + "TMMoves": [ + "MOVE_AURA_SPHERE", + "MOVE_BLIZZARD", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_DIG", + "MOVE_DOUBLE_EDGE", + "MOVE_DRAGON_PULSE", + "MOVE_ENDURE", + "MOVE_FLIP_TURN", + "MOVE_HEADBUTT", + "MOVE_HYDRO_PUMP", + "MOVE_ICE_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_IRON_HEAD", + "MOVE_IRON_TAIL", + "MOVE_MUD_SHOT", + "MOVE_PROTECT", + "MOVE_ROCK_TOMB", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_WATERFALL", + "MOVE_WATER_PULSE", + "MOVE_WHIRLPOOL", + "MOVE_WORK_UP", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "BLASTOISE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "3", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "12", + "Move": "MOVE_BITE" + }, + { + "Level": "15", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "20", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "30", + "Move": "MOVE_AQUA_RING" + }, + { + "Level": "35", + "Move": "MOVE_AQUA_JET" + }, + { + "Level": "40", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "45", + "Move": "MOVE_LIQUIDATION" + } + ], + "TMMoves": [ + "MOVE_AURA_SPHERE", + "MOVE_BLIZZARD", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_CRUNCH", + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_DOUBLE_EDGE", + "MOVE_DRAGON_PULSE", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FLIP_TURN", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HEADBUTT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_IRON_HEAD", + "MOVE_IRON_TAIL", + "MOVE_MUD_SHOT", + "MOVE_OUTRAGE", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_WATERFALL", + "MOVE_WATER_PULSE", + "MOVE_WHIRLPOOL", + "MOVE_WORK_UP", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [ + "MOVE_FLASH_CANNON", + "MOVE_HYDRO_PUMP" + ], + "EggMoves": [] + }, + "WEEDLE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_POISON_STING" + }, + { + "Level": "1", + "Move": "MOVE_STRING_SHOT" + } + ], + "TMMoves": [ + "MOVE_ELECTROWEB" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "KAKUNA": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_POISON_STING" + }, + { + "Level": "1", + "Move": "MOVE_STRING_SHOT" + }, + { + "Level": "7", + "Move": "MOVE_HARDEN" + } + ], + "TMMoves": [ + "MOVE_ELECTROWEB", + "MOVE_IRON_DEFENSE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "BEEDRILL": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_POISON_STING" + }, + { + "Level": "1", + "Move": "MOVE_STRING_SHOT" + }, + { + "Level": "7", + "Move": "MOVE_HARDEN" + }, + { + "Level": "15", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "20", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "25", + "Move": "MOVE_X_SCISSOR" + }, + { + "Level": "27", + "Move": "MOVE_BUG_BUZZ" + }, + { + "Level": "29", + "Move": "MOVE_TOXIC_SPIKES" + }, + { + "Level": "33", + "Move": "MOVE_LUNGE" + }, + { + "Level": "35", + "Move": "MOVE_POISON_JAB" + }, + { + "Level": "40", + "Move": "MOVE_DRILL_RUN" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_AGILITY", + "MOVE_BRICK_BREAK", + "MOVE_ELECTROWEB", + "MOVE_ENDURE", + "MOVE_GIGA_DRAIN", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_IRON_DEFENSE", + "MOVE_OUTRAGE", + "MOVE_PROTECT", + "MOVE_ROCK_SMASH", + "MOVE_SLUDGE_BOMB", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWORDS_DANCE", + "MOVE_TOXIC", + "MOVE_U_TURN" + ], + "TutorMoves": [ + "MOVE_PIN_MISSILE" + ], + "EggMoves": [] + }, + "PIDGEY": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "9", + "Move": "MOVE_GUST" + }, + { + "Level": "13", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "17", + "Move": "MOVE_TWISTER" + }, + { + "Level": "21", + "Move": "MOVE_WING_ATTACK" + }, + { + "Level": "25", + "Move": "MOVE_WHIRLWIND" + }, + { + "Level": "29", + "Move": "MOVE_AGILITY" + }, + { + "Level": "33", + "Move": "MOVE_AIR_SLASH" + }, + { + "Level": "40", + "Move": "MOVE_FEATHER_DANCE" + }, + { + "Level": "45", + "Move": "MOVE_HURRICANE" + }, + { + "Level": "50", + "Move": "MOVE_BRAVE_BIRD" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_FLY", + "MOVE_HEADBUTT", + "MOVE_HEAT_WAVE", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_SUBSTITUTE", + "MOVE_U_TURN", + "MOVE_WORK_UP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "PIDGEOTTO": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "9", + "Move": "MOVE_GUST" + }, + { + "Level": "13", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "17", + "Move": "MOVE_TWISTER" + }, + { + "Level": "21", + "Move": "MOVE_WING_ATTACK" + }, + { + "Level": "25", + "Move": "MOVE_WHIRLWIND" + }, + { + "Level": "29", + "Move": "MOVE_AGILITY" + }, + { + "Level": "33", + "Move": "MOVE_AIR_SLASH" + }, + { + "Level": "40", + "Move": "MOVE_FEATHER_DANCE" + }, + { + "Level": "45", + "Move": "MOVE_HURRICANE" + }, + { + "Level": "50", + "Move": "MOVE_BRAVE_BIRD" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_FLY", + "MOVE_HEADBUTT", + "MOVE_HEAT_WAVE", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_SUBSTITUTE", + "MOVE_U_TURN", + "MOVE_WORK_UP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "PIDGEOT": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "9", + "Move": "MOVE_GUST" + }, + { + "Level": "13", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "17", + "Move": "MOVE_TWISTER" + }, + { + "Level": "21", + "Move": "MOVE_WING_ATTACK" + }, + { + "Level": "25", + "Move": "MOVE_WHIRLWIND" + }, + { + "Level": "29", + "Move": "MOVE_AGILITY" + }, + { + "Level": "33", + "Move": "MOVE_AIR_SLASH" + }, + { + "Level": "40", + "Move": "MOVE_FEATHER_DANCE" + }, + { + "Level": "45", + "Move": "MOVE_HURRICANE" + }, + { + "Level": "50", + "Move": "MOVE_BRAVE_BIRD" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_FLY", + "MOVE_GIGA_IMPACT", + "MOVE_HEADBUTT", + "MOVE_HEAT_WAVE", + "MOVE_HYPER_BEAM", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_SUBSTITUTE", + "MOVE_U_TURN", + "MOVE_WORK_UP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "EKANS": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "4", + "Move": "MOVE_POISON_STING" + }, + { + "Level": "9", + "Move": "MOVE_BITE" + }, + { + "Level": "12", + "Move": "MOVE_GLARE" + }, + { + "Level": "15", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "17", + "Move": "MOVE_SCREECH" + }, + { + "Level": "25", + "Move": "MOVE_TOXIC" + }, + { + "Level": "33", + "Move": "MOVE_LEECH_LIFE" + }, + { + "Level": "36", + "Move": "MOVE_POISON_JAB" + }, + { + "Level": "41", + "Move": "MOVE_HAZE" + }, + { + "Level": "49", + "Move": "MOVE_GUNK_SHOT" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BULLDOZE", + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FIRE_FANG", + "MOVE_GIGA_DRAIN", + "MOVE_ICE_FANG", + "MOVE_IRON_TAIL", + "MOVE_KNOCK_OFF", + "MOVE_MUD_SHOT", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SLUDGE_BOMB", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER_FANG" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "ARBOK": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "4", + "Move": "MOVE_POISON_STING" + }, + { + "Level": "9", + "Move": "MOVE_BITE" + }, + { + "Level": "12", + "Move": "MOVE_GLARE" + }, + { + "Level": "15", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "17", + "Move": "MOVE_SCREECH" + }, + { + "Level": "25", + "Move": "MOVE_TOXIC" + }, + { + "Level": "33", + "Move": "MOVE_LEECH_LIFE" + }, + { + "Level": "36", + "Move": "MOVE_POISON_JAB" + }, + { + "Level": "41", + "Move": "MOVE_HAZE" + }, + { + "Level": "49", + "Move": "MOVE_GUNK_SHOT" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BULLDOZE", + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_DOUBLE_EDGE", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FIRE_FANG", + "MOVE_GIGA_DRAIN", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_FANG", + "MOVE_IRON_TAIL", + "MOVE_KNOCK_OFF", + "MOVE_MUD_SHOT", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SLUDGE_BOMB", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER_FANG" + ], + "TutorMoves": [ + "MOVE_CRUNCH" + ], + "EggMoves": [] + }, + "PIKACHU": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "1", + "Move": "MOVE_THUNDER_SHOCK" + }, + { + "Level": "1", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "4", + "Move": "MOVE_THUNDER_WAVE" + }, + { + "Level": "12", + "Move": "MOVE_NUZZLE" + }, + { + "Level": "16", + "Move": "MOVE_SPARK" + }, + { + "Level": "20", + "Move": "MOVE_CHARM" + }, + { + "Level": "25", + "Move": "MOVE_THUNDERBOLT" + }, + { + "Level": "30", + "Move": "MOVE_CHARGE" + }, + { + "Level": "35", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "40", + "Move": "MOVE_THUNDER" + }, + { + "Level": "99", + "Move": "MOVE_VOLT_TACKLE" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_DIG", + "MOVE_DISCHARGE", + "MOVE_DOUBLE_TEAM", + "MOVE_ELECTROWEB", + "MOVE_ENDURE", + "MOVE_IRON_TAIL", + "MOVE_NASTY_PLOT", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWIFT", + "MOVE_THUNDER_PUNCH", + "MOVE_VOLT_SWITCH", + "MOVE_WILD_CHARGE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "RAICHU": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "1", + "Move": "MOVE_THUNDER_SHOCK" + }, + { + "Level": "1", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "4", + "Move": "MOVE_THUNDER_WAVE" + }, + { + "Level": "12", + "Move": "MOVE_NUZZLE" + }, + { + "Level": "16", + "Move": "MOVE_SPARK" + }, + { + "Level": "20", + "Move": "MOVE_CHARM" + }, + { + "Level": "25", + "Move": "MOVE_THUNDERBOLT" + }, + { + "Level": "30", + "Move": "MOVE_CHARGE" + }, + { + "Level": "35", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "40", + "Move": "MOVE_THUNDER" + }, + { + "Level": "99", + "Move": "MOVE_VOLT_TACKLE" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_DIG", + "MOVE_DISCHARGE", + "MOVE_DOUBLE_TEAM", + "MOVE_ELECTROWEB", + "MOVE_ENDURE", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_IRON_TAIL", + "MOVE_NASTY_PLOT", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWIFT", + "MOVE_VOLT_SWITCH", + "MOVE_WILD_CHARGE" + ], + "TutorMoves": [ + "MOVE_EERIE_IMPULSE", + "MOVE_THUNDER_PUNCH" + ], + "EggMoves": [] + }, + "RAICHU_ALOLA": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "1", + "Move": "MOVE_THUNDER_SHOCK" + }, + { + "Level": "1", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "4", + "Move": "MOVE_THUNDER_WAVE" + }, + { + "Level": "12", + "Move": "MOVE_NUZZLE" + }, + { + "Level": "16", + "Move": "MOVE_SPARK" + }, + { + "Level": "20", + "Move": "MOVE_CHARM" + }, + { + "Level": "25", + "Move": "MOVE_THUNDERBOLT" + }, + { + "Level": "30", + "Move": "MOVE_CHARGE" + }, + { + "Level": "35", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "40", + "Move": "MOVE_THUNDER" + }, + { + "Level": "99", + "Move": "MOVE_VOLT_TACKLE" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_CALM_MIND", + "MOVE_DIG", + "MOVE_DISCHARGE", + "MOVE_DOUBLE_TEAM", + "MOVE_ELECTROWEB", + "MOVE_ENDURE", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_IRON_TAIL", + "MOVE_NASTY_PLOT", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWIFT", + "MOVE_THUNDER_PUNCH", + "MOVE_VOLT_SWITCH", + "MOVE_WILD_CHARGE" + ], + "TutorMoves": [ + "MOVE_EERIE_IMPULSE", + "MOVE_PSYCHIC" + ], + "EggMoves": [] + }, + "CLEFAIRY": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_SPLASH" + }, + { + "Level": "5", + "Move": "MOVE_FAIRY_WIND" + }, + { + "Level": "8", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "13", + "Move": "MOVE_CHARM" + }, + { + "Level": "16", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "18", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "20", + "Move": "MOVE_METRONOME" + }, + { + "Level": "22", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "24", + "Move": "MOVE_MOONLIGHT" + }, + { + "Level": "28", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "32", + "Move": "MOVE_DAZZLING_GLEAM" + }, + { + "Level": "42", + "Move": "MOVE_MYSTICAL_FIRE" + }, + { + "Level": "48", + "Move": "MOVE_MOONBLAST" + }, + { + "Level": "55", + "Move": "MOVE_DOUBLE_EDGE" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_PUNCH", + "MOVE_FLAMETHROWER", + "MOVE_HEADBUTT", + "MOVE_HEAL_BLOCK", + "MOVE_HYPER_VOICE", + "MOVE_ICE_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_IRON_TAIL", + "MOVE_LIGHT_SCREEN", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_SAFEGUARD", + "MOVE_SHADOW_BALL", + "MOVE_SOLAR_BEAM", + "MOVE_STEALTH_ROCK", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_WORK_UP", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "CLEFABLE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_SPLASH" + }, + { + "Level": "5", + "Move": "MOVE_FAIRY_WIND" + }, + { + "Level": "8", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "13", + "Move": "MOVE_CHARM" + }, + { + "Level": "16", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "18", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "20", + "Move": "MOVE_METRONOME" + }, + { + "Level": "22", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "24", + "Move": "MOVE_MOONLIGHT" + }, + { + "Level": "28", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "32", + "Move": "MOVE_DAZZLING_GLEAM" + }, + { + "Level": "42", + "Move": "MOVE_MYSTICAL_FIRE" + }, + { + "Level": "48", + "Move": "MOVE_MOONBLAST" + }, + { + "Level": "52", + "Move": "MOVE_AIR_SLASH" + }, + { + "Level": "55", + "Move": "MOVE_DOUBLE_EDGE" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_PUNCH", + "MOVE_FLAMETHROWER", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HEADBUTT", + "MOVE_HEAL_BLOCK", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_ICE_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_IRON_TAIL", + "MOVE_LIGHT_SCREEN", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_SAFEGUARD", + "MOVE_SHADOW_BALL", + "MOVE_SOLAR_BEAM", + "MOVE_STEALTH_ROCK", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_WORK_UP", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "ABRA": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TELEPORT" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DAZZLING_GLEAM", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FIRE_PUNCH", + "MOVE_ICE_PUNCH", + "MOVE_IRON_TAIL", + "MOVE_LIGHT_SCREEN", + "MOVE_METRONOME", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_REFLECT", + "MOVE_SAFEGUARD", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "KADABRA": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "1", + "Move": "MOVE_TELEPORT" + }, + { + "Level": "10", + "Move": "MOVE_REFLECT" + }, + { + "Level": "20", + "Move": "MOVE_PSYCHO_CUT" + }, + { + "Level": "25", + "Move": "MOVE_RECOVER" + }, + { + "Level": "30", + "Move": "MOVE_PSYSHOCK" + }, + { + "Level": "35", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "40", + "Move": "MOVE_SAFEGUARD" + }, + { + "Level": "45", + "Move": "MOVE_FUTURE_SIGHT" + }, + { + "Level": "50", + "Move": "MOVE_CALM_MIND" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_DAZZLING_GLEAM", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FIRE_PUNCH", + "MOVE_ICE_PUNCH", + "MOVE_IRON_TAIL", + "MOVE_LIGHT_SCREEN", + "MOVE_METRONOME", + "MOVE_PROTECT", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [ + "MOVE_CONFUSION" + ], + "EggMoves": [] + }, + "ALAKAZAM": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "1", + "Move": "MOVE_TELEPORT" + }, + { + "Level": "10", + "Move": "MOVE_REFLECT" + }, + { + "Level": "20", + "Move": "MOVE_PSYCHO_CUT" + }, + { + "Level": "25", + "Move": "MOVE_RECOVER" + }, + { + "Level": "30", + "Move": "MOVE_PSYSHOCK" + }, + { + "Level": "35", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "40", + "Move": "MOVE_SAFEGUARD" + }, + { + "Level": "45", + "Move": "MOVE_FUTURE_SIGHT" + }, + { + "Level": "50", + "Move": "MOVE_CALM_MIND" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_DAZZLING_GLEAM", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FIRE_PUNCH", + "MOVE_FOCUS_BLAST", + "MOVE_HYPER_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_IRON_TAIL", + "MOVE_LIGHT_SCREEN", + "MOVE_METRONOME", + "MOVE_NASTY_PLOT", + "MOVE_PROTECT", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [ + "MOVE_CONFUSION" + ], + "EggMoves": [] + }, + "MACHOP": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_ROCK_SMASH" + }, + { + "Level": "4", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "12", + "Move": "MOVE_POWER_UP_PUNCH" + }, + { + "Level": "14", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "16", + "Move": "MOVE_BULLET_PUNCH" + }, + { + "Level": "18", + "Move": "MOVE_KNOCK_OFF" + }, + { + "Level": "20", + "Move": "MOVE_BULK_UP" + }, + { + "Level": "25", + "Move": "MOVE_BRICK_BREAK" + }, + { + "Level": "30", + "Move": "MOVE_BULLDOZE" + }, + { + "Level": "36", + "Move": "MOVE_DETECT" + }, + { + "Level": "44", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "54", + "Move": "MOVE_DYNAMIC_PUNCH" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_CLOSE_COMBAT", + "MOVE_DIG", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_PUNCH", + "MOVE_FLAMETHROWER", + "MOVE_FOCUS_BLAST", + "MOVE_ICE_PUNCH", + "MOVE_LIGHT_SCREEN", + "MOVE_METRONOME", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER_PUNCH", + "MOVE_WORK_UP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "MACHOKE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_ROCK_SMASH" + }, + { + "Level": "4", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "12", + "Move": "MOVE_POWER_UP_PUNCH" + }, + { + "Level": "14", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "16", + "Move": "MOVE_BULLET_PUNCH" + }, + { + "Level": "18", + "Move": "MOVE_KNOCK_OFF" + }, + { + "Level": "20", + "Move": "MOVE_BULK_UP" + }, + { + "Level": "25", + "Move": "MOVE_BRICK_BREAK" + }, + { + "Level": "30", + "Move": "MOVE_BULLDOZE" + }, + { + "Level": "36", + "Move": "MOVE_DETECT" + }, + { + "Level": "44", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "54", + "Move": "MOVE_DYNAMIC_PUNCH" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_CLOSE_COMBAT", + "MOVE_DIG", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_PUNCH", + "MOVE_FLAMETHROWER", + "MOVE_FOCUS_BLAST", + "MOVE_ICE_PUNCH", + "MOVE_LIGHT_SCREEN", + "MOVE_METRONOME", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER_PUNCH", + "MOVE_WORK_UP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "MACHAMP": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_ROCK_SMASH" + }, + { + "Level": "4", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "12", + "Move": "MOVE_POWER_UP_PUNCH" + }, + { + "Level": "14", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "16", + "Move": "MOVE_BULLET_PUNCH" + }, + { + "Level": "18", + "Move": "MOVE_KNOCK_OFF" + }, + { + "Level": "20", + "Move": "MOVE_BULK_UP" + }, + { + "Level": "25", + "Move": "MOVE_BRICK_BREAK" + }, + { + "Level": "30", + "Move": "MOVE_BULLDOZE" + }, + { + "Level": "36", + "Move": "MOVE_DETECT" + }, + { + "Level": "40", + "Move": "MOVE_HEAVY_SLAM" + }, + { + "Level": "44", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "54", + "Move": "MOVE_DYNAMIC_PUNCH" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_CLOSE_COMBAT", + "MOVE_DIG", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_PUNCH", + "MOVE_FLAMETHROWER", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_LIGHT_SCREEN", + "MOVE_METRONOME", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER_PUNCH", + "MOVE_WORK_UP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "BELLSPROUT": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_VINE_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_GROWTH" + }, + { + "Level": "8", + "Move": "MOVE_INFESTATION" + }, + { + "Level": "10", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "13", + "Move": "MOVE_SLEEP_POWDER" + }, + { + "Level": "15", + "Move": "MOVE_POISON_POWDER" + }, + { + "Level": "17", + "Move": "MOVE_STUN_SPORE" + }, + { + "Level": "19", + "Move": "MOVE_KNOCK_OFF" + }, + { + "Level": "23", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "26", + "Move": "MOVE_TOXIC_SPIKES" + }, + { + "Level": "30", + "Move": "MOVE_POISON_JAB" + }, + { + "Level": "33", + "Move": "MOVE_LEECH_LIFE" + }, + { + "Level": "40", + "Move": "MOVE_SLUDGE_WAVE" + }, + { + "Level": "44", + "Move": "MOVE_POWER_WHIP" + }, + { + "Level": "48", + "Move": "MOVE_LEAF_STORM" + } + ], + "TMMoves": [ + "MOVE_BULLET_SEED", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_DRAIN", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWORDS_DANCE", + "MOVE_TOXIC" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "WEEPINBELL": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_VINE_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_GROWTH" + }, + { + "Level": "8", + "Move": "MOVE_INFESTATION" + }, + { + "Level": "10", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "13", + "Move": "MOVE_SLEEP_POWDER" + }, + { + "Level": "15", + "Move": "MOVE_POISON_POWDER" + }, + { + "Level": "17", + "Move": "MOVE_STUN_SPORE" + }, + { + "Level": "19", + "Move": "MOVE_KNOCK_OFF" + }, + { + "Level": "23", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "26", + "Move": "MOVE_TOXIC_SPIKES" + }, + { + "Level": "30", + "Move": "MOVE_POISON_JAB" + }, + { + "Level": "33", + "Move": "MOVE_LEECH_LIFE" + }, + { + "Level": "40", + "Move": "MOVE_SLUDGE_WAVE" + }, + { + "Level": "44", + "Move": "MOVE_POWER_WHIP" + }, + { + "Level": "48", + "Move": "MOVE_LEAF_STORM" + } + ], + "TMMoves": [ + "MOVE_BULLET_SEED", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_DRAIN", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWORDS_DANCE", + "MOVE_TOXIC" + ], + "TutorMoves": [ + "MOVE_LUNGE" + ], + "EggMoves": [] + }, + "VICTREEBEL": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_VINE_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_GROWTH" + }, + { + "Level": "1", + "Move": "MOVE_LUNGE" + }, + { + "Level": "8", + "Move": "MOVE_INFESTATION" + }, + { + "Level": "10", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "13", + "Move": "MOVE_SLEEP_POWDER" + }, + { + "Level": "15", + "Move": "MOVE_POISON_POWDER" + }, + { + "Level": "17", + "Move": "MOVE_STUN_SPORE" + }, + { + "Level": "19", + "Move": "MOVE_KNOCK_OFF" + }, + { + "Level": "23", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "26", + "Move": "MOVE_TOXIC_SPIKES" + }, + { + "Level": "30", + "Move": "MOVE_POISON_JAB" + }, + { + "Level": "33", + "Move": "MOVE_LEECH_LIFE" + }, + { + "Level": "40", + "Move": "MOVE_SLUDGE_WAVE" + }, + { + "Level": "44", + "Move": "MOVE_POWER_WHIP" + }, + { + "Level": "48", + "Move": "MOVE_LEAF_STORM" + } + ], + "TMMoves": [ + "MOVE_BULLET_SEED", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_DRAIN", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWORDS_DANCE", + "MOVE_TOXIC" + ], + "TutorMoves": [ + "MOVE_SLUDGE_BOMB" + ], + "EggMoves": [] + }, + "SLOWPOKE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_CONFUSION" + }, + { + "Level": "1", + "Move": "MOVE_CURSE" + }, + { + "Level": "3", + "Move": "MOVE_GROWL" + }, + { + "Level": "6", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "14", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "18", + "Move": "MOVE_WATER_PULSE" + }, + { + "Level": "21", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "24", + "Move": "MOVE_ZEN_HEADBUTT" + }, + { + "Level": "27", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "36", + "Move": "MOVE_SURF" + }, + { + "Level": "42", + "Move": "MOVE_PSYCHIC" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DIG", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FLAMETHROWER", + "MOVE_HYDRO_PUMP", + "MOVE_ICE_BEAM", + "MOVE_ICY_WIND", + "MOVE_IRON_TAIL", + "MOVE_LIGHT_SCREEN", + "MOVE_LIQUIDATION", + "MOVE_MUD_SHOT", + "MOVE_PROTECT", + "MOVE_PSYSHOCK", + "MOVE_SAFEGUARD", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER_WAVE", + "MOVE_WATERFALL", + "MOVE_WHIRLPOOL" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SLOWBRO": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_CONFUSION" + }, + { + "Level": "1", + "Move": "MOVE_CURSE" + }, + { + "Level": "3", + "Move": "MOVE_GROWL" + }, + { + "Level": "6", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "14", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "18", + "Move": "MOVE_WATER_PULSE" + }, + { + "Level": "21", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "24", + "Move": "MOVE_ZEN_HEADBUTT" + }, + { + "Level": "27", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "36", + "Move": "MOVE_SURF" + }, + { + "Level": "42", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "45", + "Move": "MOVE_FUTURE_SIGHT" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DIG", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FLAMETHROWER", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HEAL_BLOCK", + "MOVE_HYDRO_PUMP", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_ICY_WIND", + "MOVE_IRON_TAIL", + "MOVE_LIGHT_SCREEN", + "MOVE_LIQUIDATION", + "MOVE_METRONOME", + "MOVE_MUD_SHOT", + "MOVE_NASTY_PLOT", + "MOVE_POWER_GEM", + "MOVE_PROTECT", + "MOVE_PSYSHOCK", + "MOVE_SAFEGUARD", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER_WAVE", + "MOVE_WATERFALL", + "MOVE_WHIRLPOOL" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SLOWBRO_GALAR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_CONFUSION" + }, + { + "Level": "1", + "Move": "MOVE_CURSE" + }, + { + "Level": "3", + "Move": "MOVE_GROWL" + }, + { + "Level": "6", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "14", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "18", + "Move": "MOVE_WATER_PULSE" + }, + { + "Level": "21", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "24", + "Move": "MOVE_ZEN_HEADBUTT" + }, + { + "Level": "27", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "33", + "Move": "MOVE_POISON_JAB" + }, + { + "Level": "36", + "Move": "MOVE_SURF" + }, + { + "Level": "40", + "Move": "MOVE_SLUDGE_BOMB" + }, + { + "Level": "42", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "45", + "Move": "MOVE_FUTURE_SIGHT" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DIG", + "MOVE_DOUBLE_EDGE", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_PUNCH", + "MOVE_FLAMETHROWER", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_GUNK_SHOT", + "MOVE_HEAL_BLOCK", + "MOVE_HYDRO_PUMP", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_ICY_WIND", + "MOVE_IRON_TAIL", + "MOVE_LIGHT_SCREEN", + "MOVE_LIQUIDATION", + "MOVE_METRONOME", + "MOVE_MUD_SHOT", + "MOVE_NASTY_PLOT", + "MOVE_PROTECT", + "MOVE_PSYSHOCK", + "MOVE_SAFEGUARD", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_TOXIC", + "MOVE_TOXIC_SPIKES", + "MOVE_WATERFALL", + "MOVE_WHIRLPOOL" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "GASTLY": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "1", + "Move": "MOVE_LICK" + }, + { + "Level": "4", + "Move": "MOVE_HYPNOSIS" + }, + { + "Level": "8", + "Move": "MOVE_CONFUSION" + }, + { + "Level": "12", + "Move": "MOVE_SHADOW_SNEAK" + }, + { + "Level": "20", + "Move": "MOVE_CURSE" + }, + { + "Level": "24", + "Move": "MOVE_HAZE" + }, + { + "Level": "28", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "36", + "Move": "MOVE_DARK_PULSE" + }, + { + "Level": "40", + "Move": "MOVE_SHADOW_BALL" + }, + { + "Level": "50", + "Move": "MOVE_PERISH_SONG" + } + ], + "TMMoves": [ + "MOVE_DAZZLING_GLEAM", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_DRAIN", + "MOVE_GUNK_SHOT", + "MOVE_NASTY_PLOT", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_SELF_DESTRUCT", + "MOVE_SLUDGE_BOMB", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_TOXIC", + "MOVE_WILL_O_WISP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "HAUNTER": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "1", + "Move": "MOVE_LICK" + }, + { + "Level": "4", + "Move": "MOVE_HYPNOSIS" + }, + { + "Level": "8", + "Move": "MOVE_CONFUSION" + }, + { + "Level": "12", + "Move": "MOVE_SHADOW_SNEAK" + }, + { + "Level": "16", + "Move": "MOVE_SHADOW_CLAW" + }, + { + "Level": "20", + "Move": "MOVE_CURSE" + }, + { + "Level": "24", + "Move": "MOVE_HAZE" + }, + { + "Level": "28", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "36", + "Move": "MOVE_DARK_PULSE" + }, + { + "Level": "40", + "Move": "MOVE_SHADOW_BALL" + }, + { + "Level": "48", + "Move": "MOVE_SLUDGE_WAVE" + }, + { + "Level": "50", + "Move": "MOVE_PERISH_SONG" + }, + { + "Level": "55", + "Move": "MOVE_PHANTOM_FORCE" + } + ], + "TMMoves": [ + "MOVE_DAZZLING_GLEAM", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FIRE_PUNCH", + "MOVE_GIGA_DRAIN", + "MOVE_GUNK_SHOT", + "MOVE_ICE_PUNCH", + "MOVE_METRONOME", + "MOVE_NASTY_PLOT", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_SELF_DESTRUCT", + "MOVE_SLUDGE_BOMB", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_PUNCH", + "MOVE_TOXIC", + "MOVE_TOXIC_SPIKES", + "MOVE_WILL_O_WISP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "GENGAR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "1", + "Move": "MOVE_LICK" + }, + { + "Level": "4", + "Move": "MOVE_HYPNOSIS" + }, + { + "Level": "8", + "Move": "MOVE_CONFUSION" + }, + { + "Level": "12", + "Move": "MOVE_SHADOW_SNEAK" + }, + { + "Level": "16", + "Move": "MOVE_SHADOW_CLAW" + }, + { + "Level": "20", + "Move": "MOVE_CURSE" + }, + { + "Level": "24", + "Move": "MOVE_HAZE" + }, + { + "Level": "28", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "36", + "Move": "MOVE_DARK_PULSE" + }, + { + "Level": "40", + "Move": "MOVE_SHADOW_BALL" + }, + { + "Level": "48", + "Move": "MOVE_SLUDGE_WAVE" + }, + { + "Level": "50", + "Move": "MOVE_PERISH_SONG" + }, + { + "Level": "55", + "Move": "MOVE_PHANTOM_FORCE" + } + ], + "TMMoves": [ + "MOVE_DAZZLING_GLEAM", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FIRE_PUNCH", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_DRAIN", + "MOVE_GIGA_IMPACT", + "MOVE_GUNK_SHOT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_METRONOME", + "MOVE_NASTY_PLOT", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_SELF_DESTRUCT", + "MOVE_SLUDGE_BOMB", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_TOXIC", + "MOVE_TOXIC_SPIKES", + "MOVE_WILL_O_WISP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "ONIX": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_ROCK_THROW" + }, + { + "Level": "1", + "Move": "MOVE_HARDEN" + }, + { + "Level": "12", + "Move": "MOVE_DRAGON_BREATH" + }, + { + "Level": "16", + "Move": "MOVE_CURSE" + }, + { + "Level": "20", + "Move": "MOVE_ROCK_SLIDE" + }, + { + "Level": "22", + "Move": "MOVE_BREAKING_SWIPE" + }, + { + "Level": "24", + "Move": "MOVE_SCREECH" + }, + { + "Level": "28", + "Move": "MOVE_SAND_TOMB" + }, + { + "Level": "32", + "Move": "MOVE_STEALTH_ROCK" + }, + { + "Level": "44", + "Move": "MOVE_DIG" + }, + { + "Level": "48", + "Move": "MOVE_IRON_TAIL" + }, + { + "Level": "52", + "Move": "MOVE_STONE_EDGE" + }, + { + "Level": "56", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "62", + "Move": "MOVE_HEAD_SMASH" + } + ], + "TMMoves": [ + "MOVE_DRAGON_PULSE", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_IRON_HEAD", + "MOVE_PROTECT", + "MOVE_ROCK_BLAST", + "MOVE_ROCK_TOMB", + "MOVE_SELF_DESTRUCT", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "KANGASKHAN": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "4", + "Move": "MOVE_GROWL" + }, + { + "Level": "12", + "Move": "MOVE_BITE" + }, + { + "Level": "20", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "24", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "32", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "36", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "40", + "Move": "MOVE_ENDURE" + }, + { + "Level": "48", + "Move": "MOVE_OUTRAGE" + }, + { + "Level": "54", + "Move": "MOVE_DYNAMIC_PUNCH" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_BLIZZARD", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_BULLDOZE", + "MOVE_DIG", + "MOVE_DOUBLE_EDGE", + "MOVE_EARTHQUAKE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_PUNCH", + "MOVE_FLAMETHROWER", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HYDRO_PUMP", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_IRON_TAIL", + "MOVE_POWER_UP_PUNCH", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SAFEGUARD", + "MOVE_SHADOW_BALL", + "MOVE_SHADOW_CLAW", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_PUNCH", + "MOVE_WHIRLPOOL", + "MOVE_WORK_UP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "STARYU": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_HARDEN" + }, + { + "Level": "4", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "8", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "12", + "Move": "MOVE_AQUA_JET" + }, + { + "Level": "16", + "Move": "MOVE_SWIFT" + }, + { + "Level": "20", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "24", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "32", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "36", + "Move": "MOVE_POWER_GEM" + }, + { + "Level": "40", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "44", + "Move": "MOVE_SURF" + }, + { + "Level": "48", + "Move": "MOVE_RECOVER" + }, + { + "Level": "56", + "Move": "MOVE_HYDRO_PUMP" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_DAZZLING_GLEAM", + "MOVE_ENDURE", + "MOVE_FLASH_CANNON", + "MOVE_FLIP_TURN", + "MOVE_ICE_BEAM", + "MOVE_ICY_WIND", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_SAFEGUARD", + "MOVE_SELF_DESTRUCT", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_WAVE", + "MOVE_WATERFALL", + "MOVE_WATER_PULSE", + "MOVE_WHIRLPOOL" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "STARMIE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "1", + "Move": "MOVE_HARDEN" + }, + { + "Level": "4", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "8", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "12", + "Move": "MOVE_AQUA_JET" + }, + { + "Level": "16", + "Move": "MOVE_SWIFT" + }, + { + "Level": "20", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "24", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "32", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "36", + "Move": "MOVE_POWER_GEM" + }, + { + "Level": "40", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "42", + "Move": "MOVE_LIQUIDATION" + }, + { + "Level": "44", + "Move": "MOVE_SURF" + }, + { + "Level": "48", + "Move": "MOVE_RECOVER" + }, + { + "Level": "56", + "Move": "MOVE_HYDRO_PUMP" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BLIZZARD", + "MOVE_BULK_UP", + "MOVE_DAZZLING_GLEAM", + "MOVE_DOUBLE_EDGE", + "MOVE_ENDURE", + "MOVE_FLASH_CANNON", + "MOVE_FLIP_TURN", + "MOVE_GIGA_IMPACT", + "MOVE_HEADBUTT", + "MOVE_HEAL_BLOCK", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_ICY_WIND", + "MOVE_PROTECT", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_SAFEGUARD", + "MOVE_SELF_DESTRUCT", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_WAVE", + "MOVE_WATERFALL", + "MOVE_WATER_PULSE", + "MOVE_WHIRLPOOL", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SCYTHER": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "12", + "Move": "MOVE_WING_ATTACK" + }, + { + "Level": "16", + "Move": "MOVE_DOUBLE_TEAM" + }, + { + "Level": "20", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "24", + "Move": "MOVE_SLASH" + }, + { + "Level": "28", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "32", + "Move": "MOVE_X_SCISSOR" + }, + { + "Level": "34", + "Move": "MOVE_BUG_BUZZ" + }, + { + "Level": "36", + "Move": "MOVE_AIR_SLASH" + }, + { + "Level": "42", + "Move": "MOVE_SWORDS_DANCE" + }, + { + "Level": "46", + "Move": "MOVE_LUNGE" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_AGILITY", + "MOVE_BRICK_BREAK", + "MOVE_CLOSE_COMBAT", + "MOVE_DOUBLE_EDGE", + "MOVE_ENDURE", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_KNOCK_OFF", + "MOVE_LIGHT_SCREEN", + "MOVE_NIGHT_SLASH", + "MOVE_PROTECT", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_U_TURN" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "PINSIR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_HARDEN" + }, + { + "Level": "4", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "8", + "Move": "MOVE_ROCK_SMASH" + }, + { + "Level": "16", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "20", + "Move": "MOVE_DETECT" + }, + { + "Level": "24", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "32", + "Move": "MOVE_X_SCISSOR" + }, + { + "Level": "36", + "Move": "MOVE_LUNGE" + }, + { + "Level": "40", + "Move": "MOVE_SWORDS_DANCE" + }, + { + "Level": "50", + "Move": "MOVE_CLOSE_COMBAT" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_BRICK_BREAK", + "MOVE_BULK_UP", + "MOVE_DIG", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_IRON_DEFENSE", + "MOVE_OUTRAGE", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_STEALTH_ROCK", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "MAGIKARP": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_SPLASH" + }, + { + "Level": "15", + "Move": "MOVE_TACKLE" + } + ], + "TMMoves": [ + "MOVE_HYDRO_PUMP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "GYARADOS": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_SPLASH" + }, + { + "Level": "1", + "Move": "MOVE_TWISTER" + }, + { + "Level": "24", + "Move": "MOVE_WATERFALL" + }, + { + "Level": "30", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "33", + "Move": "MOVE_IRON_HEAD" + }, + { + "Level": "40", + "Move": "MOVE_BOUNCE" + }, + { + "Level": "44", + "Move": "MOVE_HURRICANE" + }, + { + "Level": "45", + "Move": "MOVE_DRAGON_RUSH" + }, + { + "Level": "50", + "Move": "MOVE_HYDRO_PUMP" + }, + { + "Level": "55", + "Move": "MOVE_HYPER_BEAM" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BODY_SLAM", + "MOVE_BULLDOZE", + "MOVE_DARK_PULSE", + "MOVE_DOUBLE_EDGE", + "MOVE_DRAGON_PULSE", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FLAMETHROWER", + "MOVE_GIGA_IMPACT", + "MOVE_ICE_BEAM", + "MOVE_ICE_FANG", + "MOVE_ICY_WIND", + "MOVE_IRON_TAIL", + "MOVE_OUTRAGE", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_TAUNT", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_WAVE", + "MOVE_WATER_PULSE" + ], + "TutorMoves": [ + "MOVE_BITE", + "MOVE_WATER_GUN", + "MOVE_WHIRLPOOL" + ], + "EggMoves": [] + }, + "EEVEE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "10", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "15", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "20", + "Move": "MOVE_SWIFT" + }, + { + "Level": "25", + "Move": "MOVE_BITE" + }, + { + "Level": "30", + "Move": "MOVE_WISH" + }, + { + "Level": "40", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "45", + "Move": "MOVE_CHARM" + }, + { + "Level": "50", + "Move": "MOVE_DOUBLE_EDGE" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_HYPER_VOICE", + "MOVE_IRON_TAIL", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "VAPOREON": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_BITE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "10", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "15", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "20", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "25", + "Move": "MOVE_HAZE" + }, + { + "Level": "30", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "35", + "Move": "MOVE_AQUA_RING" + }, + { + "Level": "40", + "Move": "MOVE_SURF" + }, + { + "Level": "45", + "Move": "MOVE_ACID_ARMOR" + }, + { + "Level": "50", + "Move": "MOVE_HYDRO_PUMP" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_FLIP_TURN", + "MOVE_GIGA_IMPACT", + "MOVE_HEADBUTT", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_ICE_BEAM", + "MOVE_IRON_TAIL", + "MOVE_LIQUIDATION", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_WATERFALL", + "MOVE_WATER_PULSE", + "MOVE_WHIRLPOOL" + ], + "TutorMoves": [ + "MOVE_CHARM", + "MOVE_DOUBLE_EDGE", + "MOVE_SWIFT", + "MOVE_TAKE_DOWN", + "MOVE_WATER_GUN", + "MOVE_WISH" + ], + "EggMoves": [] + }, + "JOLTEON": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_BITE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "10", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "15", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "20", + "Move": "MOVE_THUNDER_WAVE" + }, + { + "Level": "25", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "30", + "Move": "MOVE_THUNDER_FANG" + }, + { + "Level": "35", + "Move": "MOVE_PIN_MISSILE" + }, + { + "Level": "40", + "Move": "MOVE_THUNDERBOLT" + }, + { + "Level": "45", + "Move": "MOVE_FAKE_TEARS" + }, + { + "Level": "50", + "Move": "MOVE_THUNDER" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DIG", + "MOVE_DISCHARGE", + "MOVE_ELECTROWEB", + "MOVE_ENDURE", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_IRON_TAIL", + "MOVE_LIGHT_SCREEN", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_VOLT_SWITCH", + "MOVE_WILD_CHARGE" + ], + "TutorMoves": [ + "MOVE_CHARM", + "MOVE_DOUBLE_EDGE", + "MOVE_EERIE_IMPULSE", + "MOVE_SWIFT", + "MOVE_TAKE_DOWN", + "MOVE_THUNDER_SHOCK", + "MOVE_WISH" + ], + "EggMoves": [] + }, + "FLAREON": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_BITE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "10", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "15", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "20", + "Move": "MOVE_SMOKESCREEN" + }, + { + "Level": "25", + "Move": "MOVE_FLAME_WHEEL" + }, + { + "Level": "30", + "Move": "MOVE_FIRE_SPIN" + }, + { + "Level": "35", + "Move": "MOVE_FIRE_FANG" + }, + { + "Level": "40", + "Move": "MOVE_LAVA_PLUME" + }, + { + "Level": "50", + "Move": "MOVE_FLARE_BLITZ" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FLAMETHROWER", + "MOVE_GIGA_IMPACT", + "MOVE_HEADBUTT", + "MOVE_HEAT_WAVE", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_IRON_TAIL", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_SWORDS_DANCE", + "MOVE_TAUNT", + "MOVE_WILL_O_WISP" + ], + "TutorMoves": [ + "MOVE_CHARM", + "MOVE_DOUBLE_EDGE", + "MOVE_EMBER", + "MOVE_SWIFT", + "MOVE_TAKE_DOWN", + "MOVE_WISH" + ], + "EggMoves": [] + }, + "AERODACTYL": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_BITE" + }, + { + "Level": "1", + "Move": "MOVE_STEEL_WING" + }, + { + "Level": "5", + "Move": "MOVE_SUPERSONIC" + }, + { + "Level": "10", + "Move": "MOVE_WING_ATTACK" + }, + { + "Level": "15", + "Move": "MOVE_ROCK_BLAST" + }, + { + "Level": "20", + "Move": "MOVE_ROCK_SLIDE" + }, + { + "Level": "25", + "Move": "MOVE_ROAR" + }, + { + "Level": "30", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "35", + "Move": "MOVE_IRON_HEAD" + }, + { + "Level": "40", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "45", + "Move": "MOVE_STONE_EDGE" + }, + { + "Level": "55", + "Move": "MOVE_HYPER_BEAM" + }, + { + "Level": "60", + "Move": "MOVE_GIGA_IMPACT" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_DRAGON_CLAW", + "MOVE_DRAGON_PULSE", + "MOVE_EARTHQUAKE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_FANG", + "MOVE_FLAMETHROWER", + "MOVE_FLY", + "MOVE_HEAT_WAVE", + "MOVE_HURRICANE", + "MOVE_ICE_FANG", + "MOVE_IRON_TAIL", + "MOVE_PROTECT", + "MOVE_ROCK_TOMB", + "MOVE_STEALTH_ROCK", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_THUNDER_FANG", + "MOVE_WHIRLWIND" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "DRATINI": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "5", + "Move": "MOVE_TWISTER" + }, + { + "Level": "10", + "Move": "MOVE_THUNDER_WAVE" + }, + { + "Level": "15", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "20", + "Move": "MOVE_BREAKING_SWIPE" + }, + { + "Level": "25", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "30", + "Move": "MOVE_DRAGON_RUSH" + }, + { + "Level": "40", + "Move": "MOVE_SAFEGUARD" + }, + { + "Level": "50", + "Move": "MOVE_EXTREME_SPEED" + }, + { + "Level": "55", + "Move": "MOVE_OUTRAGE" + }, + { + "Level": "60", + "Move": "MOVE_HYPER_BEAM" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BLIZZARD", + "MOVE_DRACO_METEOR", + "MOVE_DRAGON_PULSE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_SPIN", + "MOVE_FLAMETHROWER", + "MOVE_GIGA_IMPACT", + "MOVE_HYDRO_PUMP", + "MOVE_ICE_BEAM", + "MOVE_IRON_HEAD", + "MOVE_LIGHT_SCREEN", + "MOVE_PROTECT", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWIFT", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_WATERFALL", + "MOVE_WATER_PULSE", + "MOVE_WHIRLPOOL" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "DRAGONAIR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "5", + "Move": "MOVE_TWISTER" + }, + { + "Level": "10", + "Move": "MOVE_THUNDER_WAVE" + }, + { + "Level": "15", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "20", + "Move": "MOVE_BREAKING_SWIPE" + }, + { + "Level": "25", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "30", + "Move": "MOVE_DRAGON_RUSH" + }, + { + "Level": "40", + "Move": "MOVE_SAFEGUARD" + }, + { + "Level": "50", + "Move": "MOVE_EXTREME_SPEED" + }, + { + "Level": "55", + "Move": "MOVE_OUTRAGE" + }, + { + "Level": "60", + "Move": "MOVE_HYPER_BEAM" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BLIZZARD", + "MOVE_DRACO_METEOR", + "MOVE_DRAGON_PULSE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_SPIN", + "MOVE_FLAMETHROWER", + "MOVE_GIGA_IMPACT", + "MOVE_HYDRO_PUMP", + "MOVE_ICE_BEAM", + "MOVE_IRON_HEAD", + "MOVE_LIGHT_SCREEN", + "MOVE_PROTECT", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWIFT", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_WATERFALL", + "MOVE_WATER_PULSE", + "MOVE_WHIRLPOOL" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "DRAGONITE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_AIR_SLASH" + }, + { + "Level": "5", + "Move": "MOVE_TWISTER" + }, + { + "Level": "10", + "Move": "MOVE_THUNDER_WAVE" + }, + { + "Level": "15", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "20", + "Move": "MOVE_BREAKING_SWIPE" + }, + { + "Level": "25", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "30", + "Move": "MOVE_DRAGON_RUSH" + }, + { + "Level": "40", + "Move": "MOVE_SAFEGUARD" + }, + { + "Level": "50", + "Move": "MOVE_EXTREME_SPEED" + }, + { + "Level": "55", + "Move": "MOVE_OUTRAGE" + }, + { + "Level": "60", + "Move": "MOVE_HYPER_BEAM" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_AGILITY", + "MOVE_BLIZZARD", + "MOVE_BRICK_BREAK", + "MOVE_DRACO_METEOR", + "MOVE_DRAGON_CLAW", + "MOVE_DRAGON_PULSE", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_SPIN", + "MOVE_FLAMETHROWER", + "MOVE_FLY", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HEAT_WAVE", + "MOVE_HYDRO_PUMP", + "MOVE_ICE_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_IRON_HEAD", + "MOVE_LIGHT_SCREEN", + "MOVE_METRONOME", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWIFT", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_WATERFALL", + "MOVE_WATER_PULSE", + "MOVE_WHIRLPOOL", + "MOVE_WHIRLWIND" + ], + "TutorMoves": [ + "MOVE_FIRE_PUNCH", + "MOVE_HURRICANE", + "MOVE_THUNDER_PUNCH", + "MOVE_WING_ATTACK" + ], + "EggMoves": [] + }, + "MEWTWO": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_CONFUSION" + }, + { + "Level": "1", + "Move": "MOVE_SWIFT" + }, + { + "Level": "12", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "16", + "Move": "MOVE_PSYCHO_CUT" + }, + { + "Level": "24", + "Move": "MOVE_SAFEGUARD" + }, + { + "Level": "32", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "40", + "Move": "MOVE_AURA_SPHERE" + }, + { + "Level": "48", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "64", + "Move": "MOVE_MIST" + }, + { + "Level": "72", + "Move": "MOVE_PSYSTRIKE" + }, + { + "Level": "80", + "Move": "MOVE_RECOVER" + }, + { + "Level": "88", + "Move": "MOVE_FUTURE_SIGHT" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_AGILITY", + "MOVE_BLIZZARD", + "MOVE_BRICK_BREAK", + "MOVE_BULK_UP", + "MOVE_CALM_MIND", + "MOVE_DARK_PULSE", + "MOVE_DISCHARGE", + "MOVE_DOUBLE_EDGE", + "MOVE_EARTHQUAKE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_PUNCH", + "MOVE_FLAMETHROWER", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HEAL_BLOCK", + "MOVE_HURRICANE", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_IRON_TAIL", + "MOVE_LIGHT_SCREEN", + "MOVE_METRONOME", + "MOVE_NASTY_PLOT", + "MOVE_POISON_JAB", + "MOVE_POWER_GEM", + "MOVE_PROTECT", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SELF_DESTRUCT", + "MOVE_SHADOW_BALL", + "MOVE_SOLAR_BEAM", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_TAKE_DOWN", + "MOVE_TAUNT", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_TOXIC", + "MOVE_WILL_O_WISP", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "CHIKORITA": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "6", + "Move": "MOVE_LEAFAGE" + }, + { + "Level": "9", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "12", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "14", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "22", + "Move": "MOVE_BODY_SLAM" + }, + { + "Level": "27", + "Move": "MOVE_REFLECT" + }, + { + "Level": "36", + "Move": "MOVE_SAFEGUARD" + }, + { + "Level": "40", + "Move": "MOVE_SYNTHESIS" + }, + { + "Level": "45", + "Move": "MOVE_SOLAR_BEAM" + }, + { + "Level": "50", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "56", + "Move": "MOVE_LEAF_STORM" + } + ], + "TMMoves": [ + "MOVE_BULLDOZE", + "MOVE_BULLET_SEED", + "MOVE_CURSE", + "MOVE_DAZZLING_GLEAM", + "MOVE_DOUBLE_EDGE", + "MOVE_DOUBLE_TEAM", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_HEADBUTT", + "MOVE_IRON_TAIL", + "MOVE_KNOCK_OFF", + "MOVE_PROTECT", + "MOVE_SUBSTITUTE", + "MOVE_SWORDS_DANCE", + "MOVE_WORK_UP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "BAYLEEF": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "6", + "Move": "MOVE_LEAFAGE" + }, + { + "Level": "9", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "12", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "14", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "22", + "Move": "MOVE_BODY_SLAM" + }, + { + "Level": "27", + "Move": "MOVE_REFLECT" + }, + { + "Level": "36", + "Move": "MOVE_SAFEGUARD" + }, + { + "Level": "40", + "Move": "MOVE_SYNTHESIS" + }, + { + "Level": "45", + "Move": "MOVE_SOLAR_BEAM" + }, + { + "Level": "50", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "56", + "Move": "MOVE_LEAF_STORM" + } + ], + "TMMoves": [ + "MOVE_BULLDOZE", + "MOVE_BULLET_SEED", + "MOVE_CURSE", + "MOVE_DAZZLING_GLEAM", + "MOVE_DOUBLE_EDGE", + "MOVE_DOUBLE_TEAM", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_HEADBUTT", + "MOVE_IRON_TAIL", + "MOVE_KNOCK_OFF", + "MOVE_PROTECT", + "MOVE_ROCK_SMASH", + "MOVE_SUBSTITUTE", + "MOVE_SWORDS_DANCE", + "MOVE_WORK_UP" + ], + "TutorMoves": [ + "MOVE_GIGA_DRAIN" + ], + "EggMoves": [] + }, + "MEGANIUM": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "6", + "Move": "MOVE_LEAFAGE" + }, + { + "Level": "9", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "12", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "14", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "22", + "Move": "MOVE_BODY_SLAM" + }, + { + "Level": "27", + "Move": "MOVE_REFLECT" + }, + { + "Level": "36", + "Move": "MOVE_SAFEGUARD" + }, + { + "Level": "40", + "Move": "MOVE_SYNTHESIS" + }, + { + "Level": "45", + "Move": "MOVE_SOLAR_BEAM" + }, + { + "Level": "50", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "56", + "Move": "MOVE_LEAF_STORM" + } + ], + "TMMoves": [ + "MOVE_BULLDOZE", + "MOVE_BULLET_SEED", + "MOVE_CURSE", + "MOVE_DAZZLING_GLEAM", + "MOVE_DOUBLE_EDGE", + "MOVE_DOUBLE_TEAM", + "MOVE_EARTHQUAKE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_IMPACT", + "MOVE_HEADBUTT", + "MOVE_HYPER_BEAM", + "MOVE_IRON_TAIL", + "MOVE_KNOCK_OFF", + "MOVE_OUTRAGE", + "MOVE_PROTECT", + "MOVE_ROCK_SMASH", + "MOVE_SUBSTITUTE", + "MOVE_SWORDS_DANCE", + "MOVE_WORK_UP" + ], + "TutorMoves": [ + "MOVE_GIGA_DRAIN", + "MOVE_LEAF_BLADE" + ], + "EggMoves": [] + }, + "TOTODILE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "6", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "10", + "Move": "MOVE_BITE" + }, + { + "Level": "15", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "21", + "Move": "MOVE_AQUA_JET" + }, + { + "Level": "26", + "Move": "MOVE_BREAKING_SWIPE" + }, + { + "Level": "35", + "Move": "MOVE_SCREECH" + }, + { + "Level": "40", + "Move": "MOVE_LIQUIDATION" + }, + { + "Level": "50", + "Move": "MOVE_HYDRO_PUMP" + }, + { + "Level": "56", + "Move": "MOVE_OUTRAGE" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BRICK_BREAK", + "MOVE_BULLDOZE", + "MOVE_CURSE", + "MOVE_DIG", + "MOVE_DOUBLE_TEAM", + "MOVE_DRAGON_CLAW", + "MOVE_ENDURE", + "MOVE_FLIP_TURN", + "MOVE_ICE_BEAM", + "MOVE_ICE_FANG", + "MOVE_ICY_WIND", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWORDS_DANCE", + "MOVE_WATERFALL", + "MOVE_WATER_PULSE", + "MOVE_WHIRLPOOL", + "MOVE_WORK_UP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "CROCONAW": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "6", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "10", + "Move": "MOVE_BITE" + }, + { + "Level": "15", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "21", + "Move": "MOVE_AQUA_JET" + }, + { + "Level": "26", + "Move": "MOVE_BREAKING_SWIPE" + }, + { + "Level": "35", + "Move": "MOVE_SCREECH" + }, + { + "Level": "40", + "Move": "MOVE_LIQUIDATION" + }, + { + "Level": "50", + "Move": "MOVE_HYDRO_PUMP" + }, + { + "Level": "56", + "Move": "MOVE_OUTRAGE" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BRICK_BREAK", + "MOVE_BULLDOZE", + "MOVE_CURSE", + "MOVE_DIG", + "MOVE_DOUBLE_TEAM", + "MOVE_DRAGON_CLAW", + "MOVE_ENDURE", + "MOVE_FLIP_TURN", + "MOVE_ICE_BEAM", + "MOVE_ICE_FANG", + "MOVE_ICY_WIND", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_SMASH", + "MOVE_ROCK_TOMB", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWORDS_DANCE", + "MOVE_WATERFALL", + "MOVE_WATER_PULSE", + "MOVE_WHIRLPOOL", + "MOVE_WORK_UP" + ], + "TutorMoves": [ + "MOVE_SLASH" + ], + "EggMoves": [] + }, + "FERALIGATR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_SLASH" + }, + { + "Level": "6", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "10", + "Move": "MOVE_BITE" + }, + { + "Level": "15", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "21", + "Move": "MOVE_AQUA_JET" + }, + { + "Level": "26", + "Move": "MOVE_BREAKING_SWIPE" + }, + { + "Level": "35", + "Move": "MOVE_SCREECH" + }, + { + "Level": "40", + "Move": "MOVE_LIQUIDATION" + }, + { + "Level": "50", + "Move": "MOVE_HYDRO_PUMP" + }, + { + "Level": "56", + "Move": "MOVE_OUTRAGE" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BLIZZARD", + "MOVE_BRICK_BREAK", + "MOVE_BULLDOZE", + "MOVE_CURSE", + "MOVE_DIG", + "MOVE_DOUBLE_EDGE", + "MOVE_DOUBLE_TEAM", + "MOVE_DRAGON_CLAW", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FLIP_TURN", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_ICE_FANG", + "MOVE_ICY_WIND", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_SMASH", + "MOVE_ROCK_TOMB", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWORDS_DANCE", + "MOVE_WATERFALL", + "MOVE_WATER_PULSE", + "MOVE_WHIRLPOOL", + "MOVE_WORK_UP" + ], + "TutorMoves": [ + "MOVE_CRUNCH" + ], + "EggMoves": [] + }, + "SPINARAK": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_POISON_STING" + }, + { + "Level": "1", + "Move": "MOVE_STRING_SHOT" + }, + { + "Level": "5", + "Move": "MOVE_ABSORB" + }, + { + "Level": "8", + "Move": "MOVE_INFESTATION" + }, + { + "Level": "12", + "Move": "MOVE_SHADOW_SNEAK" + }, + { + "Level": "16", + "Move": "MOVE_X_SCISSOR" + }, + { + "Level": "21", + "Move": "MOVE_SCREECH" + }, + { + "Level": "24", + "Move": "MOVE_STICKY_WEB" + }, + { + "Level": "27", + "Move": "MOVE_PIN_MISSILE" + }, + { + "Level": "30", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "33", + "Move": "MOVE_POISON_JAB" + }, + { + "Level": "35", + "Move": "MOVE_BUG_BUZZ" + }, + { + "Level": "37", + "Move": "MOVE_LEECH_LIFE" + }, + { + "Level": "40", + "Move": "MOVE_LUNGE" + }, + { + "Level": "44", + "Move": "MOVE_MEGAHORN" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BODY_SLAM", + "MOVE_DIG", + "MOVE_ELECTROWEB", + "MOVE_ENDURE", + "MOVE_GIGA_DRAIN", + "MOVE_HEADBUTT", + "MOVE_KNOCK_OFF", + "MOVE_PROTECT", + "MOVE_SLUDGE_BOMB", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_TOXIC", + "MOVE_TOXIC_SPIKES" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "ARIADOS": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_POISON_STING" + }, + { + "Level": "1", + "Move": "MOVE_STRING_SHOT" + }, + { + "Level": "1", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "5", + "Move": "MOVE_ABSORB" + }, + { + "Level": "8", + "Move": "MOVE_INFESTATION" + }, + { + "Level": "12", + "Move": "MOVE_SHADOW_SNEAK" + }, + { + "Level": "16", + "Move": "MOVE_X_SCISSOR" + }, + { + "Level": "21", + "Move": "MOVE_SCREECH" + }, + { + "Level": "24", + "Move": "MOVE_STICKY_WEB" + }, + { + "Level": "27", + "Move": "MOVE_PIN_MISSILE" + }, + { + "Level": "30", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "33", + "Move": "MOVE_POISON_JAB" + }, + { + "Level": "35", + "Move": "MOVE_BUG_BUZZ" + }, + { + "Level": "37", + "Move": "MOVE_LEECH_LIFE" + }, + { + "Level": "40", + "Move": "MOVE_LUNGE" + }, + { + "Level": "44", + "Move": "MOVE_MEGAHORN" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BODY_SLAM", + "MOVE_DIG", + "MOVE_ELECTROWEB", + "MOVE_ENDURE", + "MOVE_GIGA_DRAIN", + "MOVE_GIGA_IMPACT", + "MOVE_HEADBUTT", + "MOVE_HYPER_BEAM", + "MOVE_KNOCK_OFF", + "MOVE_PROTECT", + "MOVE_SLUDGE_BOMB", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_TOXIC", + "MOVE_TOXIC_SPIKES" + ], + "TutorMoves": [ + "MOVE_SWORDS_DANCE" + ], + "EggMoves": [] + }, + "PICHU": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "1", + "Move": "MOVE_THUNDER_SHOCK" + }, + { + "Level": "1", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "4", + "Move": "MOVE_THUNDER_WAVE" + }, + { + "Level": "12", + "Move": "MOVE_NUZZLE" + }, + { + "Level": "16", + "Move": "MOVE_SPARK" + }, + { + "Level": "20", + "Move": "MOVE_CHARM" + }, + { + "Level": "25", + "Move": "MOVE_THUNDERBOLT" + }, + { + "Level": "30", + "Move": "MOVE_CHARGE" + }, + { + "Level": "35", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "40", + "Move": "MOVE_THUNDER" + }, + { + "Level": "99", + "Move": "MOVE_VOLT_TACKLE" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_DIG", + "MOVE_DISCHARGE", + "MOVE_DOUBLE_TEAM", + "MOVE_ELECTROWEB", + "MOVE_ENDURE", + "MOVE_IRON_TAIL", + "MOVE_NASTY_PLOT", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWIFT", + "MOVE_THUNDER_PUNCH", + "MOVE_VOLT_SWITCH", + "MOVE_WILD_CHARGE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "CLEFFA": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_SPLASH" + }, + { + "Level": "5", + "Move": "MOVE_FAIRY_WIND" + }, + { + "Level": "8", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "13", + "Move": "MOVE_CHARM" + }, + { + "Level": "16", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "18", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "20", + "Move": "MOVE_METRONOME" + }, + { + "Level": "22", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "24", + "Move": "MOVE_MOONLIGHT" + }, + { + "Level": "28", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "42", + "Move": "MOVE_MYSTICAL_FIRE" + }, + { + "Level": "48", + "Move": "MOVE_MOONBLAST" + }, + { + "Level": "55", + "Move": "MOVE_DOUBLE_EDGE" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DAZZLING_GLEAM", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FLAMETHROWER", + "MOVE_HEADBUTT", + "MOVE_HYPER_VOICE", + "MOVE_ICE_BEAM", + "MOVE_IRON_TAIL", + "MOVE_LIGHT_SCREEN", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_SAFEGUARD", + "MOVE_SHADOW_BALL", + "MOVE_SOLAR_BEAM", + "MOVE_STEALTH_ROCK", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_WAVE", + "MOVE_WORK_UP", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "MAREEP": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "4", + "Move": "MOVE_THUNDER_SHOCK" + }, + { + "Level": "8", + "Move": "MOVE_THUNDER_WAVE" + }, + { + "Level": "15", + "Move": "MOVE_CHARGE" + }, + { + "Level": "17", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "28", + "Move": "MOVE_COTTON_GUARD" + }, + { + "Level": "32", + "Move": "MOVE_POWER_GEM" + }, + { + "Level": "36", + "Move": "MOVE_THUNDERBOLT" + }, + { + "Level": "40", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "45", + "Move": "MOVE_THUNDER" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_DAZZLING_GLEAM", + "MOVE_DIG", + "MOVE_DISCHARGE", + "MOVE_ELECTROWEB", + "MOVE_ENDURE", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_VOLT_SWITCH", + "MOVE_WILD_CHARGE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "FLAAFFY": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "4", + "Move": "MOVE_THUNDER_SHOCK" + }, + { + "Level": "8", + "Move": "MOVE_THUNDER_WAVE" + }, + { + "Level": "15", + "Move": "MOVE_CHARGE" + }, + { + "Level": "17", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "28", + "Move": "MOVE_COTTON_GUARD" + }, + { + "Level": "32", + "Move": "MOVE_POWER_GEM" + }, + { + "Level": "36", + "Move": "MOVE_THUNDERBOLT" + }, + { + "Level": "40", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "45", + "Move": "MOVE_THUNDER" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BODY_SLAM", + "MOVE_DAZZLING_GLEAM", + "MOVE_DIG", + "MOVE_DISCHARGE", + "MOVE_ELECTROWEB", + "MOVE_ENDURE", + "MOVE_FIRE_PUNCH", + "MOVE_ICE_PUNCH", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_ROAR", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_VOLT_SWITCH", + "MOVE_WILD_CHARGE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "AMPHAROS": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "4", + "Move": "MOVE_THUNDER_SHOCK" + }, + { + "Level": "8", + "Move": "MOVE_THUNDER_WAVE" + }, + { + "Level": "15", + "Move": "MOVE_CHARGE" + }, + { + "Level": "17", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "28", + "Move": "MOVE_COTTON_GUARD" + }, + { + "Level": "32", + "Move": "MOVE_POWER_GEM" + }, + { + "Level": "36", + "Move": "MOVE_THUNDERBOLT" + }, + { + "Level": "40", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "42", + "Move": "MOVE_BREAKING_SWIPE" + }, + { + "Level": "45", + "Move": "MOVE_THUNDER" + }, + { + "Level": "50", + "Move": "MOVE_ZAP_CANNON" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_DAZZLING_GLEAM", + "MOVE_DIG", + "MOVE_DISCHARGE", + "MOVE_DOUBLE_EDGE", + "MOVE_DRAGON_PULSE", + "MOVE_ELECTROWEB", + "MOVE_ENDURE", + "MOVE_FIRE_PUNCH", + "MOVE_FLASH_CANNON", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_OUTRAGE", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_ROAR", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_VOLT_SWITCH", + "MOVE_WILD_CHARGE" + ], + "TutorMoves": [ + "MOVE_EERIE_IMPULSE", + "MOVE_THUNDER_PUNCH" + ], + "EggMoves": [] + }, + "ESPEON": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_BITE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "10", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "15", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "25", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "30", + "Move": "MOVE_MORNING_SUN" + }, + { + "Level": "35", + "Move": "MOVE_HEAL_BLOCK" + }, + { + "Level": "40", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "45", + "Move": "MOVE_FAKE_TEARS" + }, + { + "Level": "55", + "Move": "MOVE_FUTURE_SIGHT" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DAZZLING_GLEAM", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_IRON_TAIL", + "MOVE_LIGHT_SCREEN", + "MOVE_POWER_GEM", + "MOVE_PROTECT", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_ROAR", + "MOVE_SAFEGUARD", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER_WAVE" + ], + "TutorMoves": [ + "MOVE_CHARM", + "MOVE_CONFUSION", + "MOVE_DOUBLE_EDGE", + "MOVE_SWIFT", + "MOVE_TAKE_DOWN", + "MOVE_WISH" + ], + "EggMoves": [] + }, + "UMBREON": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_BITE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "10", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "15", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "20", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "30", + "Move": "MOVE_MOONLIGHT" + }, + { + "Level": "35", + "Move": "MOVE_KNOCK_OFF" + }, + { + "Level": "40", + "Move": "MOVE_DARK_PULSE" + }, + { + "Level": "45", + "Move": "MOVE_SCREECH" + }, + { + "Level": "50", + "Move": "MOVE_CRUNCH" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_CURSE", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_IRON_TAIL", + "MOVE_LIGHT_SCREEN", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_REFLECT", + "MOVE_ROAR", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_THUNDER_WAVE", + "MOVE_TOXIC" + ], + "TutorMoves": [ + "MOVE_CHARM", + "MOVE_DOUBLE_EDGE", + "MOVE_SNARL", + "MOVE_SWIFT", + "MOVE_TAKE_DOWN", + "MOVE_WISH" + ], + "EggMoves": [] + }, + "SLOWKING": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_CURSE" + }, + { + "Level": "1", + "Move": "MOVE_POWER_GEM" + }, + { + "Level": "1", + "Move": "MOVE_NASTY_PLOT" + }, + { + "Level": "3", + "Move": "MOVE_GROWL" + }, + { + "Level": "6", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "14", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "18", + "Move": "MOVE_WATER_PULSE" + }, + { + "Level": "21", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "24", + "Move": "MOVE_ZEN_HEADBUTT" + }, + { + "Level": "27", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "36", + "Move": "MOVE_SURF" + }, + { + "Level": "42", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "45", + "Move": "MOVE_FUTURE_SIGHT" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DIG", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FLAMETHROWER", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HEAL_BLOCK", + "MOVE_HYDRO_PUMP", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_ICY_WIND", + "MOVE_IRON_TAIL", + "MOVE_LIGHT_SCREEN", + "MOVE_LIQUIDATION", + "MOVE_METRONOME", + "MOVE_MUD_SHOT", + "MOVE_PROTECT", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_SAFEGUARD", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER_WAVE", + "MOVE_WATERFALL", + "MOVE_WHIRLPOOL" + ], + "TutorMoves": [ + "MOVE_CONFUSION" + ], + "EggMoves": [] + }, + "SLOWKING_GALAR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_CURSE" + }, + { + "Level": "1", + "Move": "MOVE_POWER_GEM" + }, + { + "Level": "1", + "Move": "MOVE_NASTY_PLOT" + }, + { + "Level": "3", + "Move": "MOVE_GROWL" + }, + { + "Level": "6", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "14", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "18", + "Move": "MOVE_WATER_PULSE" + }, + { + "Level": "21", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "24", + "Move": "MOVE_ZEN_HEADBUTT" + }, + { + "Level": "27", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "36", + "Move": "MOVE_SURF" + }, + { + "Level": "36", + "Move": "MOVE_SLUDGE_WAVE" + }, + { + "Level": "42", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "45", + "Move": "MOVE_FUTURE_SIGHT" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DIG", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_PUNCH", + "MOVE_FLAMETHROWER", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_GUNK_SHOT", + "MOVE_HEAL_BLOCK", + "MOVE_HYDRO_PUMP", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_ICY_WIND", + "MOVE_IRON_TAIL", + "MOVE_LIGHT_SCREEN", + "MOVE_LIQUIDATION", + "MOVE_METRONOME", + "MOVE_MUD_SHOT", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_PSYSHOCK", + "MOVE_SAFEGUARD", + "MOVE_SHADOW_BALL", + "MOVE_SLUDGE_BOMB", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_TOXIC_SPIKES", + "MOVE_WATERFALL", + "MOVE_WHIRLPOOL" + ], + "TutorMoves": [ + "MOVE_CONFUSION", + "MOVE_TOXIC" + ], + "EggMoves": [] + }, + "STEELIX": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_ROCK_THROW" + }, + { + "Level": "1", + "Move": "MOVE_HARDEN" + }, + { + "Level": "1", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "12", + "Move": "MOVE_DRAGON_BREATH" + }, + { + "Level": "16", + "Move": "MOVE_CURSE" + }, + { + "Level": "20", + "Move": "MOVE_ROCK_SLIDE" + }, + { + "Level": "22", + "Move": "MOVE_BREAKING_SWIPE" + }, + { + "Level": "24", + "Move": "MOVE_SCREECH" + }, + { + "Level": "28", + "Move": "MOVE_SAND_TOMB" + }, + { + "Level": "32", + "Move": "MOVE_STEALTH_ROCK" + }, + { + "Level": "36", + "Move": "MOVE_HEAVY_SLAM" + }, + { + "Level": "44", + "Move": "MOVE_DIG" + }, + { + "Level": "52", + "Move": "MOVE_STONE_EDGE" + }, + { + "Level": "56", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "62", + "Move": "MOVE_HEAD_SMASH" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_DARK_PULSE", + "MOVE_DRAGON_PULSE", + "MOVE_EARTHQUAKE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FIRE_FANG", + "MOVE_FLASH_CANNON", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_FANG", + "MOVE_IRON_DEFENSE", + "MOVE_IRON_HEAD", + "MOVE_PROTECT", + "MOVE_ROCK_BLAST", + "MOVE_ROCK_TOMB", + "MOVE_SELF_DESTRUCT", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_THUNDER_FANG" + ], + "TutorMoves": [ + "MOVE_IRON_TAIL" + ], + "EggMoves": [] + }, + "SCIZOR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "12", + "Move": "MOVE_WING_ATTACK" + }, + { + "Level": "16", + "Move": "MOVE_DOUBLE_TEAM" + }, + { + "Level": "18", + "Move": "MOVE_STEEL_WING" + }, + { + "Level": "20", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "24", + "Move": "MOVE_SLASH" + }, + { + "Level": "28", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "32", + "Move": "MOVE_X_SCISSOR" + }, + { + "Level": "34", + "Move": "MOVE_BUG_BUZZ" + }, + { + "Level": "36", + "Move": "MOVE_AIR_SLASH" + }, + { + "Level": "40", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "42", + "Move": "MOVE_SWORDS_DANCE" + }, + { + "Level": "46", + "Move": "MOVE_LUNGE" + }, + { + "Level": "48", + "Move": "MOVE_IRON_HEAD" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_AGILITY", + "MOVE_BRICK_BREAK", + "MOVE_CLOSE_COMBAT", + "MOVE_CURSE", + "MOVE_DOUBLE_EDGE", + "MOVE_ENDURE", + "MOVE_FLASH_CANNON", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_KNOCK_OFF", + "MOVE_LIGHT_SCREEN", + "MOVE_NIGHT_SLASH", + "MOVE_PROTECT", + "MOVE_SAFEGUARD", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_U_TURN" + ], + "TutorMoves": [ + "MOVE_BULLET_PUNCH" + ], + "EggMoves": [] + }, + "HERACROSS": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "5", + "Move": "MOVE_ENDURE" + }, + { + "Level": "10", + "Move": "MOVE_PIN_MISSILE" + }, + { + "Level": "13", + "Move": "MOVE_DETECT" + }, + { + "Level": "15", + "Move": "MOVE_AERIAL_ACE" + }, + { + "Level": "20", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "24", + "Move": "MOVE_BRICK_BREAK" + }, + { + "Level": "28", + "Move": "MOVE_ROCK_BLAST" + }, + { + "Level": "30", + "Move": "MOVE_BUG_BUZZ" + }, + { + "Level": "32", + "Move": "MOVE_LUNGE" + }, + { + "Level": "38", + "Move": "MOVE_SWORDS_DANCE" + }, + { + "Level": "45", + "Move": "MOVE_MEGAHORN" + }, + { + "Level": "50", + "Move": "MOVE_CLOSE_COMBAT" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BULK_UP", + "MOVE_BULLDOZE", + "MOVE_BULLET_SEED", + "MOVE_CURSE", + "MOVE_DIG", + "MOVE_EARTHQUAKE", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HEADBUTT", + "MOVE_HYPER_BEAM", + "MOVE_IRON_DEFENSE", + "MOVE_KNOCK_OFF", + "MOVE_MUD_SHOT", + "MOVE_NIGHT_SLASH", + "MOVE_OUTRAGE", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_SMASH", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SPIKES", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_WORK_UP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "DELIBIRD": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_PECK" + }, + { + "Level": "15", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "18", + "Move": "MOVE_AERIAL_ACE" + }, + { + "Level": "25", + "Move": "MOVE_ICE_SHARD" + }, + { + "Level": "28", + "Move": "MOVE_AIR_SLASH" + }, + { + "Level": "32", + "Move": "MOVE_FEATHER_DANCE" + }, + { + "Level": "35", + "Move": "MOVE_ICE_PUNCH" + }, + { + "Level": "37", + "Move": "MOVE_FREEZE_DRY" + }, + { + "Level": "40", + "Move": "MOVE_BLIZZARD" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_ENDURE", + "MOVE_FLY", + "MOVE_GIGA_IMPACT", + "MOVE_GUNK_SHOT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_PROTECT", + "MOVE_SPIKES", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_WATER_PULSE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SKARMORY": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_PECK" + }, + { + "Level": "12", + "Move": "MOVE_METAL_CLAW" + }, + { + "Level": "16", + "Move": "MOVE_SAND_TOMB" + }, + { + "Level": "20", + "Move": "MOVE_WING_ATTACK" + }, + { + "Level": "24", + "Move": "MOVE_SLASH" + }, + { + "Level": "28", + "Move": "MOVE_STEEL_WING" + }, + { + "Level": "34", + "Move": "MOVE_NIGHT_SLASH" + }, + { + "Level": "38", + "Move": "MOVE_DRILL_RUN" + }, + { + "Level": "42", + "Move": "MOVE_METAL_SOUND" + }, + { + "Level": "46", + "Move": "MOVE_SPIKES" + }, + { + "Level": "50", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "56", + "Move": "MOVE_BRAVE_BIRD" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_AGILITY", + "MOVE_CURSE", + "MOVE_DARK_PULSE", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_FLASH_CANNON", + "MOVE_FLY", + "MOVE_GIGA_IMPACT", + "MOVE_HURRICANE", + "MOVE_HYPER_BEAM", + "MOVE_IRON_HEAD", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_STEALTH_ROCK", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_SWORDS_DANCE", + "MOVE_TAUNT", + "MOVE_WHIRLWIND", + "MOVE_X_SCISSOR" + ], + "TutorMoves": [ + "MOVE_AIR_SLASH" + ], + "EggMoves": [] + }, + "HOUNDOUR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_EMBER" + }, + { + "Level": "6", + "Move": "MOVE_TACKLE" + }, + { + "Level": "13", + "Move": "MOVE_ROAR" + }, + { + "Level": "16", + "Move": "MOVE_BITE" + }, + { + "Level": "24", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "28", + "Move": "MOVE_FIRE_FANG" + }, + { + "Level": "44", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "49", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "52", + "Move": "MOVE_NASTY_PLOT" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_DARK_PULSE", + "MOVE_DOUBLE_EDGE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_SPIN", + "MOVE_FLARE_BLITZ", + "MOVE_HEADBUTT", + "MOVE_HEAT_WAVE", + "MOVE_HYPER_VOICE", + "MOVE_MUD_SHOT", + "MOVE_OVERHEAT", + "MOVE_PROTECT", + "MOVE_SHADOW_BALL", + "MOVE_SLUDGE_BOMB", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_WILL_O_WISP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "HOUNDOOM": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_EMBER" + }, + { + "Level": "1", + "Move": "MOVE_NASTY_PLOT" + }, + { + "Level": "6", + "Move": "MOVE_TACKLE" + }, + { + "Level": "13", + "Move": "MOVE_ROAR" + }, + { + "Level": "16", + "Move": "MOVE_BITE" + }, + { + "Level": "21", + "Move": "MOVE_SNARL" + }, + { + "Level": "24", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "28", + "Move": "MOVE_FIRE_FANG" + }, + { + "Level": "34", + "Move": "MOVE_DARK_PULSE" + }, + { + "Level": "44", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "49", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "55", + "Move": "MOVE_OVERHEAT" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_DOUBLE_EDGE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_SPIN", + "MOVE_FLARE_BLITZ", + "MOVE_GIGA_IMPACT", + "MOVE_HEADBUTT", + "MOVE_HEAT_WAVE", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_MUD_SHOT", + "MOVE_PROTECT", + "MOVE_SHADOW_BALL", + "MOVE_SLUDGE_BOMB", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_THUNDER_FANG", + "MOVE_TOXIC", + "MOVE_WILL_O_WISP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "LARVITAR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "3", + "Move": "MOVE_ROCK_THROW" + }, + { + "Level": "9", + "Move": "MOVE_BITE" + }, + { + "Level": "12", + "Move": "MOVE_SAND_TOMB" + }, + { + "Level": "15", + "Move": "MOVE_ROCK_SLIDE" + }, + { + "Level": "21", + "Move": "MOVE_SCREECH" + }, + { + "Level": "27", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "33", + "Move": "MOVE_EARTHQUAKE" + }, + { + "Level": "37", + "Move": "MOVE_STONE_EDGE" + }, + { + "Level": "40", + "Move": "MOVE_ROCK_BLAST" + }, + { + "Level": "48", + "Move": "MOVE_HYPER_BEAM" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_BULLDOZE", + "MOVE_CURSE", + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_DOUBLE_EDGE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_GIGA_IMPACT", + "MOVE_HEADBUTT", + "MOVE_IRON_DEFENSE", + "MOVE_IRON_HEAD", + "MOVE_MUD_SHOT", + "MOVE_OUTRAGE", + "MOVE_PROTECT", + "MOVE_ROCK_TOMB", + "MOVE_STEALTH_ROCK", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "PUPITAR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "3", + "Move": "MOVE_ROCK_THROW" + }, + { + "Level": "9", + "Move": "MOVE_BITE" + }, + { + "Level": "12", + "Move": "MOVE_SAND_TOMB" + }, + { + "Level": "15", + "Move": "MOVE_ROCK_SLIDE" + }, + { + "Level": "21", + "Move": "MOVE_SCREECH" + }, + { + "Level": "27", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "33", + "Move": "MOVE_EARTHQUAKE" + }, + { + "Level": "37", + "Move": "MOVE_STONE_EDGE" + }, + { + "Level": "40", + "Move": "MOVE_ROCK_BLAST" + }, + { + "Level": "48", + "Move": "MOVE_HYPER_BEAM" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_BULLDOZE", + "MOVE_CURSE", + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_DOUBLE_EDGE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_GIGA_IMPACT", + "MOVE_HEADBUTT", + "MOVE_IRON_HEAD", + "MOVE_MUD_SHOT", + "MOVE_OUTRAGE", + "MOVE_PROTECT", + "MOVE_ROCK_TOMB", + "MOVE_STEALTH_ROCK", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT" + ], + "TutorMoves": [ + "MOVE_IRON_DEFENSE" + ], + "EggMoves": [] + }, + "TYRANITAR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "3", + "Move": "MOVE_ROCK_THROW" + }, + { + "Level": "9", + "Move": "MOVE_BITE" + }, + { + "Level": "12", + "Move": "MOVE_SAND_TOMB" + }, + { + "Level": "15", + "Move": "MOVE_ROCK_SLIDE" + }, + { + "Level": "21", + "Move": "MOVE_SCREECH" + }, + { + "Level": "27", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "33", + "Move": "MOVE_EARTHQUAKE" + }, + { + "Level": "37", + "Move": "MOVE_STONE_EDGE" + }, + { + "Level": "40", + "Move": "MOVE_ROCK_BLAST" + }, + { + "Level": "48", + "Move": "MOVE_HYPER_BEAM" + }, + { + "Level": "53", + "Move": "MOVE_HEAVY_SLAM" + }, + { + "Level": "56", + "Move": "MOVE_GIGA_IMPACT" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_BLIZZARD", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_BULLDOZE", + "MOVE_CURSE", + "MOVE_DIG", + "MOVE_DOUBLE_EDGE", + "MOVE_DRAGON_CLAW", + "MOVE_DRAGON_PULSE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_FANG", + "MOVE_FIRE_PUNCH", + "MOVE_FLAMETHROWER", + "MOVE_HEADBUTT", + "MOVE_HYDRO_PUMP", + "MOVE_ICE_BEAM", + "MOVE_ICE_FANG", + "MOVE_ICE_PUNCH", + "MOVE_IRON_HEAD", + "MOVE_KNOCK_OFF", + "MOVE_MUD_SHOT", + "MOVE_OUTRAGE", + "MOVE_POWER_GEM", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_STEALTH_ROCK", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_FANG", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE" + ], + "TutorMoves": [ + "MOVE_DARK_PULSE", + "MOVE_IRON_DEFENSE" + ], + "EggMoves": [] + }, + "RALTS": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "1", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "6", + "Move": "MOVE_CONFUSION" + }, + { + "Level": "9", + "Move": "MOVE_HYPNOSIS" + }, + { + "Level": "12", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "15", + "Move": "MOVE_TELEPORT" + }, + { + "Level": "18", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "20", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "24", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "28", + "Move": "MOVE_CHARM" + }, + { + "Level": "30", + "Move": "MOVE_DOUBLE_TEAM" + }, + { + "Level": "35", + "Move": "MOVE_CALM_MIND" + }, + { + "Level": "38", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "44", + "Move": "MOVE_MYSTICAL_FIRE" + }, + { + "Level": "58", + "Move": "MOVE_FUTURE_SIGHT" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_ENDURE", + "MOVE_FIRE_PUNCH", + "MOVE_HYPER_VOICE", + "MOVE_ICE_PUNCH", + "MOVE_ICY_WIND", + "MOVE_LIGHT_SCREEN", + "MOVE_METRONOME", + "MOVE_PROTECT", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_WILL_O_WISP", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "KIRLIA": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "1", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "6", + "Move": "MOVE_CONFUSION" + }, + { + "Level": "9", + "Move": "MOVE_HYPNOSIS" + }, + { + "Level": "12", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "15", + "Move": "MOVE_TELEPORT" + }, + { + "Level": "18", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "20", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "24", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "28", + "Move": "MOVE_CHARM" + }, + { + "Level": "30", + "Move": "MOVE_DOUBLE_TEAM" + }, + { + "Level": "35", + "Move": "MOVE_CALM_MIND" + }, + { + "Level": "38", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "44", + "Move": "MOVE_MYSTICAL_FIRE" + }, + { + "Level": "58", + "Move": "MOVE_FUTURE_SIGHT" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_ENDURE", + "MOVE_FIRE_PUNCH", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_ICE_PUNCH", + "MOVE_ICY_WIND", + "MOVE_LIGHT_SCREEN", + "MOVE_METRONOME", + "MOVE_PROTECT", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_WILL_O_WISP", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "GARDEVOIR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "1", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "6", + "Move": "MOVE_CONFUSION" + }, + { + "Level": "9", + "Move": "MOVE_HYPNOSIS" + }, + { + "Level": "12", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "15", + "Move": "MOVE_TELEPORT" + }, + { + "Level": "18", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "20", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "24", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "28", + "Move": "MOVE_CHARM" + }, + { + "Level": "30", + "Move": "MOVE_DOUBLE_TEAM" + }, + { + "Level": "32", + "Move": "MOVE_WISH" + }, + { + "Level": "35", + "Move": "MOVE_CALM_MIND" + }, + { + "Level": "38", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "44", + "Move": "MOVE_MYSTICAL_FIRE" + }, + { + "Level": "49", + "Move": "MOVE_MOONBLAST" + }, + { + "Level": "58", + "Move": "MOVE_FUTURE_SIGHT" + } + ], + "TMMoves": [ + "MOVE_AURA_SPHERE", + "MOVE_BODY_SLAM", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FIRE_PUNCH", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_ICE_PUNCH", + "MOVE_ICY_WIND", + "MOVE_LIGHT_SCREEN", + "MOVE_METRONOME", + "MOVE_PROTECT", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_SAFEGUARD", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_WILL_O_WISP", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [ + "MOVE_DAZZLING_GLEAM" + ], + "EggMoves": [] + }, + "SABLEYE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "9", + "Move": "MOVE_SHADOW_SNEAK" + }, + { + "Level": "15", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "18", + "Move": "MOVE_DETECT" + }, + { + "Level": "20", + "Move": "MOVE_SHADOW_CLAW" + }, + { + "Level": "22", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "25", + "Move": "MOVE_KNOCK_OFF" + }, + { + "Level": "28", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "33", + "Move": "MOVE_NIGHT_SLASH" + }, + { + "Level": "39", + "Move": "MOVE_POWER_GEM" + }, + { + "Level": "42", + "Move": "MOVE_ZEN_HEADBUTT" + }, + { + "Level": "45", + "Move": "MOVE_SHADOW_BALL" + }, + { + "Level": "50", + "Move": "MOVE_RECOVER" + }, + { + "Level": "53", + "Move": "MOVE_PARTING_SHOT" + }, + { + "Level": "56", + "Move": "MOVE_PHANTOM_FORCE" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_BULK_UP", + "MOVE_CALM_MIND", + "MOVE_DARK_PULSE", + "MOVE_DAZZLING_GLEAM", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FIRE_PUNCH", + "MOVE_GIGA_DRAIN", + "MOVE_GIGA_IMPACT", + "MOVE_HEAL_BLOCK", + "MOVE_HYPER_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_LIGHT_SCREEN", + "MOVE_METRONOME", + "MOVE_MUD_SHOT", + "MOVE_NASTY_PLOT", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_REFLECT", + "MOVE_ROCK_TOMB", + "MOVE_SAFEGUARD", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_WILL_O_WISP", + "MOVE_X_SCISSOR" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "MAWILE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_BITE" + }, + { + "Level": "1", + "Move": "MOVE_FAIRY_WIND" + }, + { + "Level": "5", + "Move": "MOVE_FAKE_TEARS" + }, + { + "Level": "16", + "Move": "MOVE_KNOCK_OFF" + }, + { + "Level": "20", + "Move": "MOVE_CHARM" + }, + { + "Level": "22", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "24", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "28", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "36", + "Move": "MOVE_IRON_HEAD" + }, + { + "Level": "40", + "Move": "MOVE_TAUNT" + }, + { + "Level": "48", + "Move": "MOVE_PLAY_ROUGH" + }, + { + "Level": "55", + "Move": "MOVE_DYNAMIC_PUNCH" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_DARK_PULSE", + "MOVE_DAZZLING_GLEAM", + "MOVE_DOUBLE_EDGE", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_FANG", + "MOVE_FLAMETHROWER", + "MOVE_FLASH_CANNON", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HEADBUTT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_ICE_FANG", + "MOVE_ICE_PUNCH", + "MOVE_POWER_UP_PUNCH", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_SMASH", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_BALL", + "MOVE_SLUDGE_BOMB", + "MOVE_SOLAR_BEAM", + "MOVE_STEALTH_ROCK", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SWORDS_DANCE", + "MOVE_THUNDER_FANG", + "MOVE_THUNDER_PUNCH" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "ARON": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_SCREECH" + }, + { + "Level": "1", + "Move": "MOVE_HARDEN" + }, + { + "Level": "4", + "Move": "MOVE_METAL_CLAW" + }, + { + "Level": "8", + "Move": "MOVE_ROCK_TOMB" + }, + { + "Level": "12", + "Move": "MOVE_ROAR" + }, + { + "Level": "16", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "20", + "Move": "MOVE_PROTECT" + }, + { + "Level": "24", + "Move": "MOVE_ROCK_SLIDE" + }, + { + "Level": "28", + "Move": "MOVE_IRON_HEAD" + }, + { + "Level": "33", + "Move": "MOVE_METAL_SOUND" + }, + { + "Level": "36", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "44", + "Move": "MOVE_IRON_TAIL" + }, + { + "Level": "48", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "52", + "Move": "MOVE_HEAVY_SLAM" + }, + { + "Level": "56", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "66", + "Move": "MOVE_HEAD_SMASH" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BULLDOZE", + "MOVE_DIG", + "MOVE_EARTHQUAKE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_MUD_SHOT", + "MOVE_SHADOW_CLAW", + "MOVE_STEALTH_ROCK", + "MOVE_SUBSTITUTE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "LAIRON": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_SCREECH" + }, + { + "Level": "1", + "Move": "MOVE_HARDEN" + }, + { + "Level": "4", + "Move": "MOVE_METAL_CLAW" + }, + { + "Level": "8", + "Move": "MOVE_ROCK_TOMB" + }, + { + "Level": "12", + "Move": "MOVE_ROAR" + }, + { + "Level": "16", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "20", + "Move": "MOVE_PROTECT" + }, + { + "Level": "24", + "Move": "MOVE_ROCK_SLIDE" + }, + { + "Level": "28", + "Move": "MOVE_IRON_HEAD" + }, + { + "Level": "33", + "Move": "MOVE_METAL_SOUND" + }, + { + "Level": "36", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "44", + "Move": "MOVE_IRON_TAIL" + }, + { + "Level": "48", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "52", + "Move": "MOVE_HEAVY_SLAM" + }, + { + "Level": "56", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "66", + "Move": "MOVE_HEAD_SMASH" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BULLDOZE", + "MOVE_DIG", + "MOVE_EARTHQUAKE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_MUD_SHOT", + "MOVE_SHADOW_CLAW", + "MOVE_STEALTH_ROCK", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "AGGRON": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_SCREECH" + }, + { + "Level": "1", + "Move": "MOVE_HARDEN" + }, + { + "Level": "4", + "Move": "MOVE_METAL_CLAW" + }, + { + "Level": "8", + "Move": "MOVE_ROCK_TOMB" + }, + { + "Level": "12", + "Move": "MOVE_ROAR" + }, + { + "Level": "16", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "20", + "Move": "MOVE_PROTECT" + }, + { + "Level": "24", + "Move": "MOVE_ROCK_SLIDE" + }, + { + "Level": "28", + "Move": "MOVE_IRON_HEAD" + }, + { + "Level": "33", + "Move": "MOVE_METAL_SOUND" + }, + { + "Level": "36", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "44", + "Move": "MOVE_IRON_TAIL" + }, + { + "Level": "48", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "52", + "Move": "MOVE_HEAVY_SLAM" + }, + { + "Level": "56", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "66", + "Move": "MOVE_HEAD_SMASH" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_BULLDOZE", + "MOVE_CRUNCH", + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_DRAGON_CLAW", + "MOVE_DRAGON_PULSE", + "MOVE_EARTHQUAKE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_PUNCH", + "MOVE_FLAMETHROWER", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HYDRO_PUMP", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_MUD_SHOT", + "MOVE_OUTRAGE", + "MOVE_SHADOW_CLAW", + "MOVE_SOLAR_BEAM", + "MOVE_STEALTH_ROCK", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_WHIRLPOOL" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "MEDITITE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_CONFUSION" + }, + { + "Level": "1", + "Move": "MOVE_WORK_UP" + }, + { + "Level": "9", + "Move": "MOVE_DETECT" + }, + { + "Level": "12", + "Move": "MOVE_ENDURE" + }, + { + "Level": "14", + "Move": "MOVE_ROCK_SMASH" + }, + { + "Level": "16", + "Move": "MOVE_BULLET_PUNCH" + }, + { + "Level": "20", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "23", + "Move": "MOVE_CALM_MIND" + }, + { + "Level": "25", + "Move": "MOVE_ZEN_HEADBUTT" + }, + { + "Level": "30", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "41", + "Move": "MOVE_RECOVER" + }, + { + "Level": "52", + "Move": "MOVE_DYNAMIC_PUNCH" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_BULK_UP", + "MOVE_CLOSE_COMBAT", + "MOVE_FIRE_PUNCH", + "MOVE_FOCUS_BLAST", + "MOVE_ICE_PUNCH", + "MOVE_LIGHT_SCREEN", + "MOVE_METRONOME", + "MOVE_POISON_JAB", + "MOVE_POWER_UP_PUNCH", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_THUNDER_PUNCH" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "MEDICHAM": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_CONFUSION" + }, + { + "Level": "1", + "Move": "MOVE_WORK_UP" + }, + { + "Level": "9", + "Move": "MOVE_DETECT" + }, + { + "Level": "12", + "Move": "MOVE_ENDURE" + }, + { + "Level": "14", + "Move": "MOVE_ROCK_SMASH" + }, + { + "Level": "16", + "Move": "MOVE_BULLET_PUNCH" + }, + { + "Level": "20", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "23", + "Move": "MOVE_CALM_MIND" + }, + { + "Level": "25", + "Move": "MOVE_ZEN_HEADBUTT" + }, + { + "Level": "30", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "34", + "Move": "MOVE_AGILITY" + }, + { + "Level": "41", + "Move": "MOVE_RECOVER" + }, + { + "Level": "52", + "Move": "MOVE_DYNAMIC_PUNCH" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_BULK_UP", + "MOVE_CLOSE_COMBAT", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_LIGHT_SCREEN", + "MOVE_METRONOME", + "MOVE_POISON_JAB", + "MOVE_POWER_UP_PUNCH", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAUNT" + ], + "TutorMoves": [ + "MOVE_FIRE_PUNCH", + "MOVE_ICE_PUNCH", + "MOVE_THUNDER_PUNCH" + ], + "EggMoves": [] + }, + "ELECTRIKE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "8", + "Move": "MOVE_THUNDER_SHOCK" + }, + { + "Level": "12", + "Move": "MOVE_THUNDER_WAVE" + }, + { + "Level": "16", + "Move": "MOVE_SPARK" + }, + { + "Level": "20", + "Move": "MOVE_BITE" + }, + { + "Level": "22", + "Move": "MOVE_EERIE_IMPULSE" + }, + { + "Level": "24", + "Move": "MOVE_THUNDER_FANG" + }, + { + "Level": "28", + "Move": "MOVE_ROAR" + }, + { + "Level": "30", + "Move": "MOVE_SNARL" + }, + { + "Level": "36", + "Move": "MOVE_CHARGE" + }, + { + "Level": "40", + "Move": "MOVE_THUNDERBOLT" + }, + { + "Level": "44", + "Move": "MOVE_WILD_CHARGE" + }, + { + "Level": "50", + "Move": "MOVE_THUNDER" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BODY_SLAM", + "MOVE_CRUNCH", + "MOVE_CURSE", + "MOVE_DISCHARGE", + "MOVE_ENDURE", + "MOVE_FIRE_FANG", + "MOVE_FLAMETHROWER", + "MOVE_HEADBUTT", + "MOVE_ICE_FANG", + "MOVE_LIGHT_SCREEN", + "MOVE_PROTECT", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_VOLT_SWITCH" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "MANECTRIC": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "1", + "Move": "MOVE_FIRE_FANG" + }, + { + "Level": "8", + "Move": "MOVE_THUNDER_SHOCK" + }, + { + "Level": "12", + "Move": "MOVE_THUNDER_WAVE" + }, + { + "Level": "16", + "Move": "MOVE_SPARK" + }, + { + "Level": "20", + "Move": "MOVE_BITE" + }, + { + "Level": "22", + "Move": "MOVE_EERIE_IMPULSE" + }, + { + "Level": "24", + "Move": "MOVE_THUNDER_FANG" + }, + { + "Level": "28", + "Move": "MOVE_ROAR" + }, + { + "Level": "30", + "Move": "MOVE_SNARL" + }, + { + "Level": "36", + "Move": "MOVE_CHARGE" + }, + { + "Level": "40", + "Move": "MOVE_THUNDERBOLT" + }, + { + "Level": "44", + "Move": "MOVE_WILD_CHARGE" + }, + { + "Level": "50", + "Move": "MOVE_THUNDER" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BODY_SLAM", + "MOVE_CRUNCH", + "MOVE_CURSE", + "MOVE_DISCHARGE", + "MOVE_ENDURE", + "MOVE_FLAMETHROWER", + "MOVE_GIGA_IMPACT", + "MOVE_HEADBUTT", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_ICE_FANG", + "MOVE_LIGHT_SCREEN", + "MOVE_OVERHEAT", + "MOVE_PROTECT", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_VOLT_SWITCH" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "ROSELIA": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_ABSORB" + }, + { + "Level": "1", + "Move": "MOVE_GROWTH" + }, + { + "Level": "1", + "Move": "MOVE_STUN_SPORE" + }, + { + "Level": "1", + "Move": "MOVE_CHARM" + }, + { + "Level": "5", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "8", + "Move": "MOVE_PIN_MISSILE" + }, + { + "Level": "10", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "15", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "18", + "Move": "MOVE_SLEEP_POWDER" + }, + { + "Level": "22", + "Move": "MOVE_TOXIC_SPIKES" + }, + { + "Level": "30", + "Move": "MOVE_GIGA_DRAIN" + }, + { + "Level": "33", + "Move": "MOVE_POISON_JAB" + }, + { + "Level": "37", + "Move": "MOVE_SYNTHESIS" + }, + { + "Level": "44", + "Move": "MOVE_TOXIC" + }, + { + "Level": "55", + "Move": "MOVE_LEAF_STORM" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BULLET_SEED", + "MOVE_DAZZLING_GLEAM", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_MUD_SHOT", + "MOVE_PROTECT", + "MOVE_SHADOW_BALL", + "MOVE_SLUDGE_BOMB", + "MOVE_SOLAR_BEAM", + "MOVE_SPIKES", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_SWORDS_DANCE" + ], + "TutorMoves": [ + "MOVE_POISON_STING" + ], + "EggMoves": [] + }, + "CARVANHA": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_AQUA_JET" + }, + { + "Level": "8", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "16", + "Move": "MOVE_BITE" + }, + { + "Level": "20", + "Move": "MOVE_FLIP_TURN" + }, + { + "Level": "24", + "Move": "MOVE_SCREECH" + }, + { + "Level": "32", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "40", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "44", + "Move": "MOVE_LIQUIDATION" + }, + { + "Level": "51", + "Move": "MOVE_BOUNCE" + }, + { + "Level": "54", + "Move": "MOVE_DOUBLE_EDGE" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BLIZZARD", + "MOVE_DARK_PULSE", + "MOVE_ENDURE", + "MOVE_HYDRO_PUMP", + "MOVE_ICE_BEAM", + "MOVE_ICE_FANG", + "MOVE_ICY_WIND", + "MOVE_PROTECT", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_WATERFALL", + "MOVE_WHIRLPOOL", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SHARPEDO": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_NIGHT_SLASH" + }, + { + "Level": "1", + "Move": "MOVE_AQUA_JET" + }, + { + "Level": "8", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "16", + "Move": "MOVE_BITE" + }, + { + "Level": "20", + "Move": "MOVE_FLIP_TURN" + }, + { + "Level": "24", + "Move": "MOVE_SCREECH" + }, + { + "Level": "32", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "36", + "Move": "MOVE_AGILITY" + }, + { + "Level": "40", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "44", + "Move": "MOVE_LIQUIDATION" + }, + { + "Level": "51", + "Move": "MOVE_BOUNCE" + }, + { + "Level": "54", + "Move": "MOVE_DOUBLE_EDGE" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_CLOSE_COMBAT", + "MOVE_DARK_PULSE", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_GIGA_IMPACT", + "MOVE_HYDRO_PUMP", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_ICE_FANG", + "MOVE_ICY_WIND", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_ROCK_TOMB", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_WATERFALL", + "MOVE_WHIRLPOOL", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [ + "MOVE_SLASH" + ], + "EggMoves": [] + }, + "NUMEL": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "5", + "Move": "MOVE_EMBER" + }, + { + "Level": "8", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "12", + "Move": "MOVE_BULLDOZE" + }, + { + "Level": "19", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "22", + "Move": "MOVE_LAVA_PLUME" + }, + { + "Level": "26", + "Move": "MOVE_EARTH_POWER" + }, + { + "Level": "29", + "Move": "MOVE_CURSE" + }, + { + "Level": "31", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "40", + "Move": "MOVE_EARTHQUAKE" + }, + { + "Level": "46", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "51", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "55", + "Move": "MOVE_HEAT_CRASH" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_SPIN", + "MOVE_FLARE_BLITZ", + "MOVE_FLASH_CANNON", + "MOVE_HEADBUTT", + "MOVE_HEAT_WAVE", + "MOVE_IRON_HEAD", + "MOVE_OVERHEAT", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_STEALTH_ROCK", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_WILL_O_WISP", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "CAMERUPT": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "5", + "Move": "MOVE_EMBER" + }, + { + "Level": "8", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "12", + "Move": "MOVE_BULLDOZE" + }, + { + "Level": "19", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "22", + "Move": "MOVE_LAVA_PLUME" + }, + { + "Level": "26", + "Move": "MOVE_EARTH_POWER" + }, + { + "Level": "29", + "Move": "MOVE_CURSE" + }, + { + "Level": "31", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "40", + "Move": "MOVE_EARTHQUAKE" + }, + { + "Level": "46", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "51", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "55", + "Move": "MOVE_HEAT_CRASH" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_SPIN", + "MOVE_FLARE_BLITZ", + "MOVE_FLASH_CANNON", + "MOVE_GIGA_IMPACT", + "MOVE_HEADBUTT", + "MOVE_HEAT_WAVE", + "MOVE_HYPER_BEAM", + "MOVE_IRON_HEAD", + "MOVE_OVERHEAT", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_TOMB", + "MOVE_SELF_DESTRUCT", + "MOVE_STEALTH_ROCK", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_WILL_O_WISP", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [ + "MOVE_ROCK_SLIDE" + ], + "EggMoves": [] + }, + "SWABLU": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "1", + "Move": "MOVE_PECK" + }, + { + "Level": "4", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "8", + "Move": "MOVE_MIST" + }, + { + "Level": "20", + "Move": "MOVE_DRAGON_BREATH" + }, + { + "Level": "24", + "Move": "MOVE_SAFEGUARD" + }, + { + "Level": "32", + "Move": "MOVE_COTTON_GUARD" + }, + { + "Level": "35", + "Move": "MOVE_TWISTER" + }, + { + "Level": "37", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "40", + "Move": "MOVE_MOONBLAST" + }, + { + "Level": "44", + "Move": "MOVE_FEATHER_DANCE" + }, + { + "Level": "50", + "Move": "MOVE_BRAVE_BIRD" + }, + { + "Level": "55", + "Move": "MOVE_DRAGON_RUSH" + }, + { + "Level": "60", + "Move": "MOVE_PERISH_SONG" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_AGILITY", + "MOVE_BODY_SLAM", + "MOVE_DAZZLING_GLEAM", + "MOVE_DRAGON_PULSE", + "MOVE_ENDURE", + "MOVE_FLY", + "MOVE_HEAT_WAVE", + "MOVE_HURRICANE", + "MOVE_HYPER_VOICE", + "MOVE_ICE_BEAM", + "MOVE_OUTRAGE", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "ALTARIA": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "1", + "Move": "MOVE_PECK" + }, + { + "Level": "4", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "8", + "Move": "MOVE_MIST" + }, + { + "Level": "20", + "Move": "MOVE_DRAGON_BREATH" + }, + { + "Level": "24", + "Move": "MOVE_SAFEGUARD" + }, + { + "Level": "32", + "Move": "MOVE_COTTON_GUARD" + }, + { + "Level": "35", + "Move": "MOVE_TWISTER" + }, + { + "Level": "37", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "40", + "Move": "MOVE_MOONBLAST" + }, + { + "Level": "44", + "Move": "MOVE_FEATHER_DANCE" + }, + { + "Level": "50", + "Move": "MOVE_BRAVE_BIRD" + }, + { + "Level": "55", + "Move": "MOVE_DRAGON_RUSH" + }, + { + "Level": "60", + "Move": "MOVE_PERISH_SONG" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_AGILITY", + "MOVE_BODY_SLAM", + "MOVE_BULLDOZE", + "MOVE_DAZZLING_GLEAM", + "MOVE_DRACO_METEOR", + "MOVE_DRAGON_CLAW", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FIRE_SPIN", + "MOVE_FLAMETHROWER", + "MOVE_FLY", + "MOVE_GIGA_IMPACT", + "MOVE_HEAT_WAVE", + "MOVE_HURRICANE", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_ICE_BEAM", + "MOVE_OUTRAGE", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_WILL_O_WISP" + ], + "TutorMoves": [ + "MOVE_DRAGON_PULSE" + ], + "EggMoves": [] + }, + "SHUPPET": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_SCREECH" + }, + { + "Level": "1", + "Move": "MOVE_LICK" + }, + { + "Level": "8", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "12", + "Move": "MOVE_KNOCK_OFF" + }, + { + "Level": "16", + "Move": "MOVE_WILL_O_WISP" + }, + { + "Level": "19", + "Move": "MOVE_SHADOW_SNEAK" + }, + { + "Level": "23", + "Move": "MOVE_SHADOW_CLAW" + }, + { + "Level": "26", + "Move": "MOVE_CURSE" + }, + { + "Level": "30", + "Move": "MOVE_SHADOW_BALL" + }, + { + "Level": "34", + "Move": "MOVE_SWORDS_DANCE" + }, + { + "Level": "42", + "Move": "MOVE_PHANTOM_FORCE" + }, + { + "Level": "48", + "Move": "MOVE_GUNK_SHOT" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DARK_PULSE", + "MOVE_DAZZLING_GLEAM", + "MOVE_ENDURE", + "MOVE_HEADBUTT", + "MOVE_METRONOME", + "MOVE_NASTY_PLOT", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_WAVE", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "BANETTE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_SCREECH" + }, + { + "Level": "1", + "Move": "MOVE_LICK" + }, + { + "Level": "1", + "Move": "MOVE_SLASH" + }, + { + "Level": "8", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "12", + "Move": "MOVE_KNOCK_OFF" + }, + { + "Level": "16", + "Move": "MOVE_WILL_O_WISP" + }, + { + "Level": "19", + "Move": "MOVE_SHADOW_SNEAK" + }, + { + "Level": "23", + "Move": "MOVE_SHADOW_CLAW" + }, + { + "Level": "26", + "Move": "MOVE_CURSE" + }, + { + "Level": "30", + "Move": "MOVE_SHADOW_BALL" + }, + { + "Level": "34", + "Move": "MOVE_SWORDS_DANCE" + }, + { + "Level": "42", + "Move": "MOVE_PHANTOM_FORCE" + }, + { + "Level": "48", + "Move": "MOVE_GUNK_SHOT" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DARK_PULSE", + "MOVE_DAZZLING_GLEAM", + "MOVE_ENDURE", + "MOVE_GIGA_IMPACT", + "MOVE_HEADBUTT", + "MOVE_HEAL_BLOCK", + "MOVE_HYPER_BEAM", + "MOVE_METRONOME", + "MOVE_NASTY_PLOT", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_WAVE", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "ABSOL": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "10", + "Move": "MOVE_KNOCK_OFF" + }, + { + "Level": "15", + "Move": "MOVE_DETECT" + }, + { + "Level": "20", + "Move": "MOVE_SWORDS_DANCE" + }, + { + "Level": "23", + "Move": "MOVE_SLASH" + }, + { + "Level": "27", + "Move": "MOVE_NIGHT_SLASH" + }, + { + "Level": "32", + "Move": "MOVE_DOUBLE_TEAM" + }, + { + "Level": "36", + "Move": "MOVE_TAUNT" + }, + { + "Level": "40", + "Move": "MOVE_SHADOW_CLAW" + }, + { + "Level": "43", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "46", + "Move": "MOVE_AIR_SLASH" + }, + { + "Level": "48", + "Move": "MOVE_FUTURE_SIGHT" + }, + { + "Level": "54", + "Move": "MOVE_PERISH_SONG" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_BLIZZARD", + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_CLOSE_COMBAT", + "MOVE_DARK_PULSE", + "MOVE_DOUBLE_EDGE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FLAMETHROWER", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_BALL", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_WAVE", + "MOVE_WILL_O_WISP", + "MOVE_X_SCISSOR", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SNORUNT": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_BITE" + }, + { + "Level": "10", + "Move": "MOVE_ICE_SHARD" + }, + { + "Level": "15", + "Move": "MOVE_PROTECT" + }, + { + "Level": "20", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "25", + "Move": "MOVE_FAKE_TEARS" + }, + { + "Level": "30", + "Move": "MOVE_ICE_FANG" + }, + { + "Level": "35", + "Move": "MOVE_DOUBLE_TEAM" + }, + { + "Level": "40", + "Move": "MOVE_ICICLE_CRASH" + }, + { + "Level": "45", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "50", + "Move": "MOVE_BLIZZARD" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_ENDURE", + "MOVE_ICE_BEAM", + "MOVE_LIGHT_SCREEN", + "MOVE_SHADOW_BALL", + "MOVE_SPIKES", + "MOVE_SUBSTITUTE", + "MOVE_WATER_PULSE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "GLALIE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_BITE" + }, + { + "Level": "10", + "Move": "MOVE_ICE_SHARD" + }, + { + "Level": "15", + "Move": "MOVE_PROTECT" + }, + { + "Level": "20", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "25", + "Move": "MOVE_FAKE_TEARS" + }, + { + "Level": "30", + "Move": "MOVE_ICE_FANG" + }, + { + "Level": "35", + "Move": "MOVE_DOUBLE_TEAM" + }, + { + "Level": "40", + "Move": "MOVE_ICICLE_CRASH" + }, + { + "Level": "45", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "50", + "Move": "MOVE_BLIZZARD" + }, + { + "Level": "55", + "Move": "MOVE_EXPLOSION" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_DARK_PULSE", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_IRON_HEAD", + "MOVE_LIGHT_SCREEN", + "MOVE_SELF_DESTRUCT", + "MOVE_SHADOW_BALL", + "MOVE_SPIKES", + "MOVE_SUBSTITUTE", + "MOVE_WATER_PULSE" + ], + "TutorMoves": [ + "MOVE_FREEZE_DRY" + ], + "EggMoves": [] + }, + "BAGON": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_BITE" + }, + { + "Level": "1", + "Move": "MOVE_EMBER" + }, + { + "Level": "10", + "Move": "MOVE_DRAGON_BREATH" + }, + { + "Level": "15", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "25", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "30", + "Move": "MOVE_DRAGON_CLAW" + }, + { + "Level": "35", + "Move": "MOVE_ZEN_HEADBUTT" + }, + { + "Level": "40", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "45", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "50", + "Move": "MOVE_OUTRAGE" + }, + { + "Level": "55", + "Move": "MOVE_DOUBLE_EDGE" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_DRACO_METEOR", + "MOVE_DRAGON_PULSE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_FANG", + "MOVE_FIRE_SPIN", + "MOVE_HYDRO_PUMP", + "MOVE_HYPER_VOICE", + "MOVE_IRON_DEFENSE", + "MOVE_IRON_HEAD", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER_FANG" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SHELGON": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_BITE" + }, + { + "Level": "1", + "Move": "MOVE_EMBER" + }, + { + "Level": "10", + "Move": "MOVE_DRAGON_BREATH" + }, + { + "Level": "15", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "25", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "30", + "Move": "MOVE_DRAGON_CLAW" + }, + { + "Level": "35", + "Move": "MOVE_ZEN_HEADBUTT" + }, + { + "Level": "40", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "45", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "50", + "Move": "MOVE_OUTRAGE" + }, + { + "Level": "55", + "Move": "MOVE_DOUBLE_EDGE" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_DRACO_METEOR", + "MOVE_DRAGON_PULSE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_FANG", + "MOVE_FIRE_SPIN", + "MOVE_HYDRO_PUMP", + "MOVE_HYPER_VOICE", + "MOVE_IRON_DEFENSE", + "MOVE_IRON_HEAD", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER_FANG" + ], + "TutorMoves": [ + "MOVE_PROTECT" + ], + "EggMoves": [] + }, + "SALAMENCE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_BITE" + }, + { + "Level": "1", + "Move": "MOVE_EMBER" + }, + { + "Level": "1", + "Move": "MOVE_PROTECT" + }, + { + "Level": "10", + "Move": "MOVE_DRAGON_BREATH" + }, + { + "Level": "15", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "25", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "30", + "Move": "MOVE_DRAGON_CLAW" + }, + { + "Level": "35", + "Move": "MOVE_ZEN_HEADBUTT" + }, + { + "Level": "40", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "45", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "50", + "Move": "MOVE_OUTRAGE" + }, + { + "Level": "55", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "60", + "Move": "MOVE_AIR_SLASH" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_DRACO_METEOR", + "MOVE_DRAGON_PULSE", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_FANG", + "MOVE_FIRE_SPIN", + "MOVE_GIGA_IMPACT", + "MOVE_HURRICANE", + "MOVE_HYDRO_PUMP", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_IRON_DEFENSE", + "MOVE_IRON_HEAD", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER_FANG" + ], + "TutorMoves": [ + "MOVE_FLY" + ], + "EggMoves": [] + }, + "BELDUM": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_HEADBUTT", + "MOVE_IRON_DEFENSE", + "MOVE_IRON_HEAD", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "METANG": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_BULLET_PUNCH" + }, + { + "Level": "6", + "Move": "MOVE_ZEN_HEADBUTT" + }, + { + "Level": "18", + "Move": "MOVE_FLASH_CANNON" + }, + { + "Level": "26", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "34", + "Move": "MOVE_PSYCHO_CUT" + }, + { + "Level": "42", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "50", + "Move": "MOVE_IRON_HEAD" + }, + { + "Level": "54", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "58", + "Move": "MOVE_HYPER_BEAM" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_DOUBLE_EDGE", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_HEADBUTT", + "MOVE_ICE_PUNCH", + "MOVE_LIGHT_SCREEN", + "MOVE_POWER_UP_PUNCH", + "MOVE_PROTECT", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SELF_DESTRUCT", + "MOVE_SHADOW_BALL", + "MOVE_SLUDGE_BOMB", + "MOVE_STEALTH_ROCK", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER_PUNCH" + ], + "TutorMoves": [ + "MOVE_CONFUSION", + "MOVE_METAL_CLAW" + ], + "EggMoves": [] + }, + "METAGROSS": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_CONFUSION" + }, + { + "Level": "1", + "Move": "MOVE_METAL_CLAW" + }, + { + "Level": "1", + "Move": "MOVE_BULLET_PUNCH" + }, + { + "Level": "6", + "Move": "MOVE_ZEN_HEADBUTT" + }, + { + "Level": "18", + "Move": "MOVE_FLASH_CANNON" + }, + { + "Level": "26", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "34", + "Move": "MOVE_PSYCHO_CUT" + }, + { + "Level": "42", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "46", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "50", + "Move": "MOVE_IRON_HEAD" + }, + { + "Level": "54", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "58", + "Move": "MOVE_HYPER_BEAM" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_DOUBLE_EDGE", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_GIGA_IMPACT", + "MOVE_HEADBUTT", + "MOVE_ICE_PUNCH", + "MOVE_KNOCK_OFF", + "MOVE_LIGHT_SCREEN", + "MOVE_POWER_UP_PUNCH", + "MOVE_PROTECT", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SELF_DESTRUCT", + "MOVE_SHADOW_BALL", + "MOVE_SLUDGE_BOMB", + "MOVE_STEALTH_ROCK", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER_PUNCH" + ], + "TutorMoves": [ + "MOVE_EXPLOSION", + "MOVE_HEAVY_SLAM" + ], + "EggMoves": [] + }, + "BUDEW": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_ABSORB" + }, + { + "Level": "1", + "Move": "MOVE_GROWTH" + }, + { + "Level": "1", + "Move": "MOVE_STUN_SPORE" + }, + { + "Level": "1", + "Move": "MOVE_CHARM" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BULLET_SEED", + "MOVE_DAZZLING_GLEAM", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_MUD_SHOT", + "MOVE_PROTECT", + "MOVE_SHADOW_BALL", + "MOVE_SLUDGE_BOMB", + "MOVE_SOLAR_BEAM", + "MOVE_SPIKES", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_SWORDS_DANCE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "ROSERADE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_ABSORB" + }, + { + "Level": "1", + "Move": "MOVE_GROWTH" + }, + { + "Level": "1", + "Move": "MOVE_STUN_SPORE" + }, + { + "Level": "1", + "Move": "MOVE_CHARM" + }, + { + "Level": "5", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "8", + "Move": "MOVE_PIN_MISSILE" + }, + { + "Level": "10", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "15", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "18", + "Move": "MOVE_SLEEP_POWDER" + }, + { + "Level": "22", + "Move": "MOVE_TOXIC_SPIKES" + }, + { + "Level": "30", + "Move": "MOVE_GIGA_DRAIN" + }, + { + "Level": "34", + "Move": "MOVE_POISON_JAB" + }, + { + "Level": "37", + "Move": "MOVE_SYNTHESIS" + }, + { + "Level": "44", + "Move": "MOVE_TOXIC" + }, + { + "Level": "55", + "Move": "MOVE_LEAF_STORM" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BULLET_SEED", + "MOVE_DAZZLING_GLEAM", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_MUD_SHOT", + "MOVE_PROTECT", + "MOVE_SHADOW_BALL", + "MOVE_SLUDGE_BOMB", + "MOVE_SOLAR_BEAM", + "MOVE_SPIKES", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_SWORDS_DANCE" + ], + "TutorMoves": [ + "MOVE_POISON_STING" + ], + "EggMoves": [] + }, + "BUNEARY": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_SPLASH" + }, + { + "Level": "14", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "16", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "20", + "Move": "MOVE_AGILITY" + }, + { + "Level": "24", + "Move": "MOVE_CHARM" + }, + { + "Level": "28", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "32", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "42", + "Move": "MOVE_COTTON_GUARD" + }, + { + "Level": "48", + "Move": "MOVE_BOUNCE" + }, + { + "Level": "52", + "Move": "MOVE_DYNAMIC_PUNCH" + } + ], + "TMMoves": [ + "MOVE_CLOSE_COMBAT", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_FIRE_PUNCH", + "MOVE_HYPER_VOICE", + "MOVE_ICE_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_IRON_TAIL", + "MOVE_PLAY_ROUGH", + "MOVE_POWER_UP_PUNCH", + "MOVE_PROTECT", + "MOVE_SHADOW_BALL", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_WORK_UP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "LOPUNNY": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_SPLASH" + }, + { + "Level": "6", + "Move": "MOVE_POWER_UP_PUNCH" + }, + { + "Level": "9", + "Move": "MOVE_MACH_PUNCH" + }, + { + "Level": "12", + "Move": "MOVE_DOUBLE_TEAM" + }, + { + "Level": "14", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "16", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "20", + "Move": "MOVE_AGILITY" + }, + { + "Level": "24", + "Move": "MOVE_CHARM" + }, + { + "Level": "28", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "32", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "36", + "Move": "MOVE_IRON_TAIL" + }, + { + "Level": "42", + "Move": "MOVE_COTTON_GUARD" + }, + { + "Level": "48", + "Move": "MOVE_BOUNCE" + }, + { + "Level": "52", + "Move": "MOVE_DYNAMIC_PUNCH" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_CLOSE_COMBAT", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_FIRE_PUNCH", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_ICE_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_SHADOW_BALL", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_SWORDS_DANCE", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_U_TURN", + "MOVE_WORK_UP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "GIBLE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_SAND_TOMB" + }, + { + "Level": "12", + "Move": "MOVE_DRAGON_BREATH" + }, + { + "Level": "18", + "Move": "MOVE_BULLDOZE" + }, + { + "Level": "25", + "Move": "MOVE_BITE" + }, + { + "Level": "30", + "Move": "MOVE_SLASH" + }, + { + "Level": "36", + "Move": "MOVE_DRAGON_CLAW" + }, + { + "Level": "42", + "Move": "MOVE_DIG" + }, + { + "Level": "54", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "60", + "Move": "MOVE_DRAGON_RUSH" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_DRACO_METEOR", + "MOVE_DRAGON_PULSE", + "MOVE_EARTHQUAKE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_FANG", + "MOVE_FLAMETHROWER", + "MOVE_IRON_HEAD", + "MOVE_OUTRAGE", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_STEALTH_ROCK", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_SWORDS_DANCE", + "MOVE_THUNDER_FANG" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "GABITE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_SAND_TOMB" + }, + { + "Level": "12", + "Move": "MOVE_DRAGON_BREATH" + }, + { + "Level": "18", + "Move": "MOVE_BULLDOZE" + }, + { + "Level": "25", + "Move": "MOVE_BITE" + }, + { + "Level": "30", + "Move": "MOVE_SLASH" + }, + { + "Level": "36", + "Move": "MOVE_DRAGON_CLAW" + }, + { + "Level": "42", + "Move": "MOVE_DIG" + }, + { + "Level": "54", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "60", + "Move": "MOVE_DRAGON_RUSH" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_CRUNCH", + "MOVE_DRACO_METEOR", + "MOVE_DRAGON_PULSE", + "MOVE_EARTHQUAKE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_FANG", + "MOVE_FLAMETHROWER", + "MOVE_IRON_HEAD", + "MOVE_OUTRAGE", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SPIKES", + "MOVE_STEALTH_ROCK", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_SWORDS_DANCE", + "MOVE_THUNDER_FANG" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "GARCHOMP": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_SAND_TOMB" + }, + { + "Level": "12", + "Move": "MOVE_DRAGON_BREATH" + }, + { + "Level": "18", + "Move": "MOVE_BULLDOZE" + }, + { + "Level": "25", + "Move": "MOVE_BITE" + }, + { + "Level": "30", + "Move": "MOVE_SLASH" + }, + { + "Level": "36", + "Move": "MOVE_DRAGON_CLAW" + }, + { + "Level": "42", + "Move": "MOVE_DIG" + }, + { + "Level": "54", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "60", + "Move": "MOVE_DRAGON_RUSH" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_DRACO_METEOR", + "MOVE_DRAGON_PULSE", + "MOVE_EARTHQUAKE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_FANG", + "MOVE_FLAMETHROWER", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_IRON_HEAD", + "MOVE_IRON_TAIL", + "MOVE_LIQUIDATION", + "MOVE_OUTRAGE", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SPIKES", + "MOVE_STEALTH_ROCK", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWIFT", + "MOVE_SWORDS_DANCE", + "MOVE_THUNDER_FANG" + ], + "TutorMoves": [ + "MOVE_CRUNCH" + ], + "EggMoves": [] + }, + "RIOLU": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "1", + "Move": "MOVE_ENDURE" + }, + { + "Level": "1", + "Move": "MOVE_BULLET_PUNCH" + }, + { + "Level": "8", + "Move": "MOVE_METAL_CLAW" + }, + { + "Level": "16", + "Move": "MOVE_WORK_UP" + }, + { + "Level": "20", + "Move": "MOVE_ROCK_SMASH" + }, + { + "Level": "24", + "Move": "MOVE_SCREECH" + }, + { + "Level": "24", + "Move": "MOVE_DETECT" + }, + { + "Level": "28", + "Move": "MOVE_BULLDOZE" + }, + { + "Level": "35", + "Move": "MOVE_SWORDS_DANCE" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_AGILITY", + "MOVE_BRICK_BREAK", + "MOVE_BULK_UP", + "MOVE_CLOSE_COMBAT", + "MOVE_CRUNCH", + "MOVE_DIG", + "MOVE_EARTHQUAKE", + "MOVE_FOCUS_BLAST", + "MOVE_ICE_PUNCH", + "MOVE_NASTY_PLOT", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER_PUNCH", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "LUCARIO": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "1", + "Move": "MOVE_PROTECT" + }, + { + "Level": "1", + "Move": "MOVE_ENDURE" + }, + { + "Level": "1", + "Move": "MOVE_BULLET_PUNCH" + }, + { + "Level": "8", + "Move": "MOVE_METAL_CLAW" + }, + { + "Level": "16", + "Move": "MOVE_WORK_UP" + }, + { + "Level": "20", + "Move": "MOVE_ROCK_SMASH" + }, + { + "Level": "24", + "Move": "MOVE_SCREECH" + }, + { + "Level": "25", + "Move": "MOVE_AURA_SPHERE" + }, + { + "Level": "28", + "Move": "MOVE_BULLDOZE" + }, + { + "Level": "32", + "Move": "MOVE_METAL_SOUND" + }, + { + "Level": "35", + "Move": "MOVE_SWORDS_DANCE" + }, + { + "Level": "38", + "Move": "MOVE_DRAGON_PULSE" + }, + { + "Level": "45", + "Move": "MOVE_EXTREME_SPEED" + }, + { + "Level": "54", + "Move": "MOVE_CLOSE_COMBAT" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_AGILITY", + "MOVE_BRICK_BREAK", + "MOVE_BULK_UP", + "MOVE_CALM_MIND", + "MOVE_CRUNCH", + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_EARTHQUAKE", + "MOVE_FLASH_CANNON", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_IRON_DEFENSE", + "MOVE_IRON_TAIL", + "MOVE_METRONOME", + "MOVE_NASTY_PLOT", + "MOVE_POISON_JAB", + "MOVE_POWER_UP_PUNCH", + "MOVE_PSYCHIC", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_BALL", + "MOVE_SHADOW_CLAW", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER_PUNCH", + "MOVE_WATER_PULSE", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [ + "MOVE_DETECT" + ], + "EggMoves": [] + }, + "HIPPOPOTAS": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "4", + "Move": "MOVE_BITE" + }, + { + "Level": "8", + "Move": "MOVE_CURSE" + }, + { + "Level": "12", + "Move": "MOVE_SAND_TOMB" + }, + { + "Level": "16", + "Move": "MOVE_DIG" + }, + { + "Level": "20", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "24", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "28", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "32", + "Move": "MOVE_ROAR" + }, + { + "Level": "40", + "Move": "MOVE_EARTHQUAKE" + }, + { + "Level": "44", + "Move": "MOVE_DOUBLE_EDGE" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FIRE_FANG", + "MOVE_ICE_FANG", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_STEALTH_ROCK", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER_FANG", + "MOVE_WHIRLWIND" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "HIPPOWDON": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_BITE" + }, + { + "Level": "12", + "Move": "MOVE_SAND_TOMB" + }, + { + "Level": "16", + "Move": "MOVE_DIG" + }, + { + "Level": "20", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "24", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "28", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "32", + "Move": "MOVE_ROAR" + }, + { + "Level": "36", + "Move": "MOVE_HEAVY_SLAM" + }, + { + "Level": "40", + "Move": "MOVE_EARTHQUAKE" + }, + { + "Level": "44", + "Move": "MOVE_DOUBLE_EDGE" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_CURSE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FIRE_FANG", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_ICE_FANG", + "MOVE_IRON_HEAD", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_STEALTH_ROCK", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER_FANG", + "MOVE_WHIRLWIND" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SNOVER": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_LEAFAGE" + }, + { + "Level": "10", + "Move": "MOVE_MIST" + }, + { + "Level": "15", + "Move": "MOVE_ICE_SHARD" + }, + { + "Level": "20", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "25", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "30", + "Move": "MOVE_GROWTH" + }, + { + "Level": "35", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "41", + "Move": "MOVE_WOOD_HAMMER" + }, + { + "Level": "45", + "Move": "MOVE_BLIZZARD" + }, + { + "Level": "53", + "Move": "MOVE_LEAF_STORM" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BULLET_SEED", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_DRAIN", + "MOVE_ICE_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_MAGICAL_LEAF", + "MOVE_PROTECT", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWORDS_DANCE", + "MOVE_WATER_PULSE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "ABOMASNOW": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_LEAFAGE" + }, + { + "Level": "10", + "Move": "MOVE_MIST" + }, + { + "Level": "15", + "Move": "MOVE_ICE_SHARD" + }, + { + "Level": "20", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "25", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "30", + "Move": "MOVE_GROWTH" + }, + { + "Level": "35", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "41", + "Move": "MOVE_WOOD_HAMMER" + }, + { + "Level": "45", + "Move": "MOVE_BLIZZARD" + }, + { + "Level": "53", + "Move": "MOVE_LEAF_STORM" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_BULLET_SEED", + "MOVE_CURSE", + "MOVE_DOUBLE_EDGE", + "MOVE_EARTHQUAKE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_DRAIN", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_MAGICAL_LEAF", + "MOVE_OUTRAGE", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWORDS_DANCE", + "MOVE_WATER_PULSE" + ], + "TutorMoves": [ + "MOVE_ICE_PUNCH" + ], + "EggMoves": [] + }, + "LEAFEON": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_BITE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "10", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "15", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "20", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "25", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "30", + "Move": "MOVE_SYNTHESIS" + }, + { + "Level": "35", + "Move": "MOVE_LEAF_BLADE" + }, + { + "Level": "40", + "Move": "MOVE_GIGA_DRAIN" + }, + { + "Level": "45", + "Move": "MOVE_SWORDS_DANCE" + }, + { + "Level": "50", + "Move": "MOVE_LEAF_STORM" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_BODY_SLAM", + "MOVE_BULLET_SEED", + "MOVE_CALM_MIND", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_IRON_TAIL", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_SHADOW_BALL", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_X_SCISSOR" + ], + "TutorMoves": [ + "MOVE_CHARM", + "MOVE_DOUBLE_EDGE", + "MOVE_RAZOR_LEAF", + "MOVE_SWIFT", + "MOVE_TAKE_DOWN", + "MOVE_WISH" + ], + "EggMoves": [] + }, + "GLACEON": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_BITE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "10", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "15", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "18", + "Move": "MOVE_MIST" + }, + { + "Level": "23", + "Move": "MOVE_ICE_SHARD" + }, + { + "Level": "27", + "Move": "MOVE_ICE_FANG" + }, + { + "Level": "36", + "Move": "MOVE_ICE_BEAM" + }, + { + "Level": "40", + "Move": "MOVE_FREEZE_DRY" + }, + { + "Level": "50", + "Move": "MOVE_BLIZZARD" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_IRON_TAIL", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT" + ], + "TutorMoves": [ + "MOVE_CHARM", + "MOVE_DOUBLE_EDGE", + "MOVE_ICY_WIND", + "MOVE_SWIFT", + "MOVE_TAKE_DOWN", + "MOVE_WISH" + ], + "EggMoves": [] + }, + "GALLADE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "1", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "1", + "Move": "MOVE_HYPNOSIS" + }, + { + "Level": "1", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "6", + "Move": "MOVE_CONFUSION" + }, + { + "Level": "15", + "Move": "MOVE_TELEPORT" + }, + { + "Level": "18", + "Move": "MOVE_AERIAL_ACE" + }, + { + "Level": "28", + "Move": "MOVE_PROTECT" + }, + { + "Level": "30", + "Move": "MOVE_DOUBLE_TEAM" + }, + { + "Level": "35", + "Move": "MOVE_SWORDS_DANCE" + }, + { + "Level": "42", + "Move": "MOVE_PSYCHO_CUT" + }, + { + "Level": "50", + "Move": "MOVE_LEAF_BLADE" + }, + { + "Level": "58", + "Move": "MOVE_CLOSE_COMBAT" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_AURA_SPHERE", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_BULK_UP", + "MOVE_DAZZLING_GLEAM", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FIRE_PUNCH", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_ICE_PUNCH", + "MOVE_ICY_WIND", + "MOVE_KNOCK_OFF", + "MOVE_LIGHT_SCREEN", + "MOVE_METRONOME", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_ROCK_TOMB", + "MOVE_SAFEGUARD", + "MOVE_SHADOW_BALL", + "MOVE_SHADOW_CLAW", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_WILL_O_WISP", + "MOVE_X_SCISSOR", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [ + "MOVE_CALM_MIND", + "MOVE_CHARM", + "MOVE_CONFUSE_RAY", + "MOVE_DRAINING_KISS", + "MOVE_FUTURE_SIGHT", + "MOVE_MAGICAL_LEAF", + "MOVE_MYSTICAL_FIRE", + "MOVE_NIGHT_SLASH", + "MOVE_PSYCHIC", + "MOVE_SLASH" + ], + "EggMoves": [] + }, + "FROSLASS": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_BITE" + }, + { + "Level": "1", + "Move": "MOVE_DOUBLE_TEAM" + }, + { + "Level": "10", + "Move": "MOVE_ICE_SHARD" + }, + { + "Level": "15", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "20", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "25", + "Move": "MOVE_FAKE_TEARS" + }, + { + "Level": "30", + "Move": "MOVE_HAZE" + }, + { + "Level": "35", + "Move": "MOVE_ICE_BEAM" + }, + { + "Level": "40", + "Move": "MOVE_SHADOW_BALL" + }, + { + "Level": "45", + "Move": "MOVE_WILL_O_WISP" + }, + { + "Level": "50", + "Move": "MOVE_BLIZZARD" + }, + { + "Level": "55", + "Move": "MOVE_PHANTOM_FORCE" + }, + { + "Level": "60", + "Move": "MOVE_CURSE" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_ENDURE", + "MOVE_GIGA_IMPACT", + "MOVE_HEAL_BLOCK", + "MOVE_HYPER_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_LIGHT_SCREEN", + "MOVE_NASTY_PLOT", + "MOVE_PSYCHIC", + "MOVE_REFLECT", + "MOVE_SPIKES", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_WAVE", + "MOVE_WATER_PULSE" + ], + "TutorMoves": [ + "MOVE_CRUNCH", + "MOVE_DRAINING_KISS", + "MOVE_ICE_FANG", + "MOVE_ICICLE_CRASH", + "MOVE_PROTECT" + ], + "EggMoves": [] + }, + "TEPIG": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "6", + "Move": "MOVE_EMBER" + }, + { + "Level": "10", + "Move": "MOVE_ROLLOUT" + }, + { + "Level": "13", + "Move": "MOVE_SMOKESCREEN" + }, + { + "Level": "15", + "Move": "MOVE_FLAME_WHEEL" + }, + { + "Level": "20", + "Move": "MOVE_FIRE_SPIN" + }, + { + "Level": "24", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "29", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "32", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "50", + "Move": "MOVE_FLARE_BLITZ" + }, + { + "Level": "56", + "Move": "MOVE_HEAD_SMASH" + } + ], + "TMMoves": [ + "MOVE_DIG", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_HEADBUTT", + "MOVE_HEAT_WAVE", + "MOVE_OVERHEAT", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_WILD_CHARGE", + "MOVE_WILL_O_WISP", + "MOVE_WORK_UP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "PIGNITE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "6", + "Move": "MOVE_EMBER" + }, + { + "Level": "10", + "Move": "MOVE_ROLLOUT" + }, + { + "Level": "13", + "Move": "MOVE_SMOKESCREEN" + }, + { + "Level": "15", + "Move": "MOVE_FLAME_WHEEL" + }, + { + "Level": "20", + "Move": "MOVE_FIRE_SPIN" + }, + { + "Level": "24", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "29", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "32", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "36", + "Move": "MOVE_BULK_UP" + }, + { + "Level": "50", + "Move": "MOVE_FLARE_BLITZ" + }, + { + "Level": "56", + "Move": "MOVE_HEAD_SMASH" + } + ], + "TMMoves": [ + "MOVE_BRICK_BREAK", + "MOVE_DIG", + "MOVE_DOUBLE_EDGE", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_PUNCH", + "MOVE_FOCUS_BLAST", + "MOVE_HEADBUTT", + "MOVE_HEAT_WAVE", + "MOVE_KNOCK_OFF", + "MOVE_OVERHEAT", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_SMASH", + "MOVE_ROCK_TOMB", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_WILD_CHARGE", + "MOVE_WILL_O_WISP", + "MOVE_WORK_UP", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [ + "MOVE_POWER_UP_PUNCH" + ], + "EggMoves": [] + }, + "EMBOAR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "6", + "Move": "MOVE_EMBER" + }, + { + "Level": "10", + "Move": "MOVE_ROLLOUT" + }, + { + "Level": "13", + "Move": "MOVE_SMOKESCREEN" + }, + { + "Level": "15", + "Move": "MOVE_FLAME_WHEEL" + }, + { + "Level": "20", + "Move": "MOVE_FIRE_SPIN" + }, + { + "Level": "24", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "29", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "32", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "36", + "Move": "MOVE_BULK_UP" + }, + { + "Level": "45", + "Move": "MOVE_CLOSE_COMBAT" + }, + { + "Level": "50", + "Move": "MOVE_FLARE_BLITZ" + }, + { + "Level": "56", + "Move": "MOVE_HEAD_SMASH" + } + ], + "TMMoves": [ + "MOVE_BRICK_BREAK", + "MOVE_CURSE", + "MOVE_DIG", + "MOVE_DOUBLE_EDGE", + "MOVE_DOUBLE_TEAM", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_PUNCH", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HEADBUTT", + "MOVE_HEAT_WAVE", + "MOVE_HYPER_BEAM", + "MOVE_IRON_HEAD", + "MOVE_KNOCK_OFF", + "MOVE_OVERHEAT", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_SMASH", + "MOVE_ROCK_TOMB", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_THUNDER_PUNCH", + "MOVE_WILD_CHARGE", + "MOVE_WILL_O_WISP", + "MOVE_WORK_UP", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [ + "MOVE_HEAT_CRASH", + "MOVE_POWER_UP_PUNCH" + ], + "EggMoves": [] + }, + "PATRAT": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "3", + "Move": "MOVE_LEER" + }, + { + "Level": "6", + "Move": "MOVE_BITE" + }, + { + "Level": "11", + "Move": "MOVE_DETECT" + }, + { + "Level": "16", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "18", + "Move": "MOVE_HYPNOSIS" + }, + { + "Level": "21", + "Move": "MOVE_SUPER_FANG" + }, + { + "Level": "26", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "28", + "Move": "MOVE_WORK_UP" + }, + { + "Level": "33", + "Move": "MOVE_NASTY_PLOT" + } + ], + "TMMoves": [ + "MOVE_BULLET_SEED", + "MOVE_DIG", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_GUNK_SHOT", + "MOVE_MUD_SHOT", + "MOVE_PROTECT", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_SWORDS_DANCE", + "MOVE_THUNDERBOLT", + "MOVE_TOXIC", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "WATCHOG": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "3", + "Move": "MOVE_LEER" + }, + { + "Level": "6", + "Move": "MOVE_BITE" + }, + { + "Level": "11", + "Move": "MOVE_DETECT" + }, + { + "Level": "16", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "18", + "Move": "MOVE_HYPNOSIS" + }, + { + "Level": "21", + "Move": "MOVE_SUPER_FANG" + }, + { + "Level": "26", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "28", + "Move": "MOVE_WORK_UP" + }, + { + "Level": "33", + "Move": "MOVE_NASTY_PLOT" + }, + { + "Level": "40", + "Move": "MOVE_IRON_TAIL" + }, + { + "Level": "46", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "50", + "Move": "MOVE_DOUBLE_EDGE" + } + ], + "TMMoves": [ + "MOVE_BULLET_SEED", + "MOVE_DIG", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_FIRE_PUNCH", + "MOVE_FLAMETHROWER", + "MOVE_GIGA_IMPACT", + "MOVE_GUNK_SHOT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_LIGHT_SCREEN", + "MOVE_MUD_SHOT", + "MOVE_POWER_UP_PUNCH", + "MOVE_PROTECT", + "MOVE_ROCK_SMASH", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_SWORDS_DANCE", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_TOXIC", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [ + "MOVE_CONFUSE_RAY" + ], + "EggMoves": [] + }, + "PANSAGE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "1", + "Move": "MOVE_WORK_UP" + }, + { + "Level": "4", + "Move": "MOVE_LEER" + }, + { + "Level": "7", + "Move": "MOVE_LICK" + }, + { + "Level": "10", + "Move": "MOVE_VINE_WHIP" + }, + { + "Level": "16", + "Move": "MOVE_BULLET_SEED" + }, + { + "Level": "19", + "Move": "MOVE_BITE" + }, + { + "Level": "22", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "28", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "32", + "Move": "MOVE_LEAF_STORM" + }, + { + "Level": "36", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "43", + "Move": "MOVE_FOCUS_BLAST" + } + ], + "TMMoves": [ + "MOVE_BRICK_BREAK", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_DRAIN", + "MOVE_GUNK_SHOT", + "MOVE_IRON_TAIL", + "MOVE_MUD_SHOT", + "MOVE_NASTY_PLOT", + "MOVE_POWER_UP_PUNCH", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_TOXIC" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SIMISAGE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "1", + "Move": "MOVE_WORK_UP" + }, + { + "Level": "4", + "Move": "MOVE_LEER" + }, + { + "Level": "7", + "Move": "MOVE_LICK" + }, + { + "Level": "10", + "Move": "MOVE_VINE_WHIP" + }, + { + "Level": "16", + "Move": "MOVE_BULLET_SEED" + }, + { + "Level": "19", + "Move": "MOVE_BITE" + }, + { + "Level": "22", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "28", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "32", + "Move": "MOVE_LEAF_STORM" + }, + { + "Level": "36", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "43", + "Move": "MOVE_FOCUS_BLAST" + } + ], + "TMMoves": [ + "MOVE_BRICK_BREAK", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_DRAIN", + "MOVE_GIGA_IMPACT", + "MOVE_GUNK_SHOT", + "MOVE_HYPER_BEAM", + "MOVE_IRON_TAIL", + "MOVE_MUD_SHOT", + "MOVE_NASTY_PLOT", + "MOVE_POWER_UP_PUNCH", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_TOXIC" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "PANSEAR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_FIRE_SPIN" + }, + { + "Level": "1", + "Move": "MOVE_WORK_UP" + }, + { + "Level": "4", + "Move": "MOVE_LEER" + }, + { + "Level": "7", + "Move": "MOVE_LICK" + }, + { + "Level": "10", + "Move": "MOVE_EMBER" + }, + { + "Level": "16", + "Move": "MOVE_FLAME_WHEEL" + }, + { + "Level": "19", + "Move": "MOVE_BITE" + }, + { + "Level": "25", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "28", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "32", + "Move": "MOVE_FIRE_BLAST" + }, + { + "Level": "36", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "43", + "Move": "MOVE_FOCUS_BLAST" + } + ], + "TMMoves": [ + "MOVE_BRICK_BREAK", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_FIRE_PUNCH", + "MOVE_FLAMETHROWER", + "MOVE_FLARE_BLITZ", + "MOVE_GUNK_SHOT", + "MOVE_HEAT_WAVE", + "MOVE_IRON_TAIL", + "MOVE_MUD_SHOT", + "MOVE_NASTY_PLOT", + "MOVE_OVERHEAT", + "MOVE_POWER_UP_PUNCH", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_WILL_O_WISP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SIMISEAR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_FIRE_SPIN" + }, + { + "Level": "1", + "Move": "MOVE_WORK_UP" + }, + { + "Level": "4", + "Move": "MOVE_LEER" + }, + { + "Level": "7", + "Move": "MOVE_LICK" + }, + { + "Level": "10", + "Move": "MOVE_EMBER" + }, + { + "Level": "16", + "Move": "MOVE_FLAME_WHEEL" + }, + { + "Level": "19", + "Move": "MOVE_BITE" + }, + { + "Level": "25", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "28", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "32", + "Move": "MOVE_FIRE_BLAST" + }, + { + "Level": "36", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "43", + "Move": "MOVE_FOCUS_BLAST" + } + ], + "TMMoves": [ + "MOVE_BRICK_BREAK", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_FIRE_PUNCH", + "MOVE_FLAMETHROWER", + "MOVE_FLARE_BLITZ", + "MOVE_GIGA_IMPACT", + "MOVE_GUNK_SHOT", + "MOVE_HEAT_WAVE", + "MOVE_HYPER_BEAM", + "MOVE_IRON_TAIL", + "MOVE_MUD_SHOT", + "MOVE_NASTY_PLOT", + "MOVE_OVERHEAT", + "MOVE_POWER_UP_PUNCH", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_WILL_O_WISP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "PANPOUR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_AQUA_RING" + }, + { + "Level": "1", + "Move": "MOVE_WORK_UP" + }, + { + "Level": "4", + "Move": "MOVE_LEER" + }, + { + "Level": "7", + "Move": "MOVE_LICK" + }, + { + "Level": "10", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "16", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "19", + "Move": "MOVE_BITE" + }, + { + "Level": "25", + "Move": "MOVE_TAUNT" + }, + { + "Level": "28", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "32", + "Move": "MOVE_HYDRO_PUMP" + }, + { + "Level": "36", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "43", + "Move": "MOVE_FOCUS_BLAST" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BRICK_BREAK", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_FLIP_TURN", + "MOVE_GUNK_SHOT", + "MOVE_ICE_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_ICY_WIND", + "MOVE_IRON_TAIL", + "MOVE_MUD_SHOT", + "MOVE_NASTY_PLOT", + "MOVE_POWER_UP_PUNCH", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWIFT", + "MOVE_WATERFALL" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SIMIPOUR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_AQUA_RING" + }, + { + "Level": "1", + "Move": "MOVE_WORK_UP" + }, + { + "Level": "4", + "Move": "MOVE_LEER" + }, + { + "Level": "7", + "Move": "MOVE_LICK" + }, + { + "Level": "10", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "16", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "19", + "Move": "MOVE_BITE" + }, + { + "Level": "25", + "Move": "MOVE_TAUNT" + }, + { + "Level": "28", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "32", + "Move": "MOVE_HYDRO_PUMP" + }, + { + "Level": "36", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "43", + "Move": "MOVE_FOCUS_BLAST" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BRICK_BREAK", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_FLIP_TURN", + "MOVE_GIGA_IMPACT", + "MOVE_GUNK_SHOT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_ICY_WIND", + "MOVE_IRON_TAIL", + "MOVE_LIQUIDATION", + "MOVE_MUD_SHOT", + "MOVE_NASTY_PLOT", + "MOVE_POWER_UP_PUNCH", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWIFT", + "MOVE_WATERFALL" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "DRILBUR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_MUD_SHOT" + }, + { + "Level": "7", + "Move": "MOVE_METAL_CLAW" + }, + { + "Level": "13", + "Move": "MOVE_SAND_TOMB" + }, + { + "Level": "18", + "Move": "MOVE_BULLDOZE" + }, + { + "Level": "24", + "Move": "MOVE_SLASH" + }, + { + "Level": "28", + "Move": "MOVE_DIG" + }, + { + "Level": "32", + "Move": "MOVE_ROCK_SLIDE" + }, + { + "Level": "36", + "Move": "MOVE_SWORDS_DANCE" + }, + { + "Level": "40", + "Move": "MOVE_DRILL_RUN" + }, + { + "Level": "46", + "Move": "MOVE_EARTHQUAKE" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BRICK_BREAK", + "MOVE_DOUBLE_EDGE", + "MOVE_ENDURE", + "MOVE_IRON_DEFENSE", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_ROCK_SMASH", + "MOVE_ROCK_TOMB", + "MOVE_SLUDGE_BOMB", + "MOVE_SUBSTITUTE", + "MOVE_X_SCISSOR" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "EXCADRILL": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_MUD_SHOT" + }, + { + "Level": "7", + "Move": "MOVE_METAL_CLAW" + }, + { + "Level": "13", + "Move": "MOVE_SAND_TOMB" + }, + { + "Level": "16", + "Move": "MOVE_ROCK_BLAST" + }, + { + "Level": "18", + "Move": "MOVE_BULLDOZE" + }, + { + "Level": "24", + "Move": "MOVE_SLASH" + }, + { + "Level": "26", + "Move": "MOVE_X_SCISSOR" + }, + { + "Level": "28", + "Move": "MOVE_DIG" + }, + { + "Level": "32", + "Move": "MOVE_ROCK_SLIDE" + }, + { + "Level": "36", + "Move": "MOVE_SWORDS_DANCE" + }, + { + "Level": "40", + "Move": "MOVE_DRILL_RUN" + }, + { + "Level": "46", + "Move": "MOVE_EARTHQUAKE" + }, + { + "Level": "50", + "Move": "MOVE_MEGAHORN" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BRICK_BREAK", + "MOVE_DOUBLE_EDGE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_IRON_DEFENSE", + "MOVE_IRON_HEAD", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_ROCK_SMASH", + "MOVE_ROCK_TOMB", + "MOVE_SLUDGE_BOMB", + "MOVE_STEALTH_ROCK", + "MOVE_SUBSTITUTE" + ], + "TutorMoves": [ + "MOVE_METAL_SOUND" + ], + "EggMoves": [] + }, + "AUDINO": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "4", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "8", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "16", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "20", + "Move": "MOVE_ZEN_HEADBUTT" + }, + { + "Level": "24", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "32", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "36", + "Move": "MOVE_WISH" + }, + { + "Level": "40", + "Move": "MOVE_HYPER_VOICE" + }, + { + "Level": "48", + "Move": "MOVE_DOUBLE_EDGE" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DAZZLING_GLEAM", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_PUNCH", + "MOVE_FLAMETHROWER", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_IRON_TAIL", + "MOVE_LIGHT_SCREEN", + "MOVE_POWER_UP_PUNCH", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_SAFEGUARD", + "MOVE_SHADOW_BALL", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_WILD_CHARGE", + "MOVE_WORK_UP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "VENIPEDE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_POISON_STING" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "4", + "Move": "MOVE_ROLLOUT" + }, + { + "Level": "8", + "Move": "MOVE_PROTECT" + }, + { + "Level": "12", + "Move": "MOVE_INFESTATION" + }, + { + "Level": "16", + "Move": "MOVE_SCREECH" + }, + { + "Level": "20", + "Move": "MOVE_PIN_MISSILE" + }, + { + "Level": "24", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "28", + "Move": "MOVE_POISON_JAB" + }, + { + "Level": "36", + "Move": "MOVE_TOXIC" + }, + { + "Level": "48", + "Move": "MOVE_AGILITY" + }, + { + "Level": "52", + "Move": "MOVE_DOUBLE_EDGE" + } + ], + "TMMoves": [ + "MOVE_ENDURE", + "MOVE_IRON_DEFENSE", + "MOVE_ROCK_TOMB", + "MOVE_SLUDGE_BOMB", + "MOVE_SOLAR_BEAM", + "MOVE_SPIKES", + "MOVE_SUBSTITUTE", + "MOVE_TOXIC_SPIKES" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "WHIRLIPEDE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_POISON_STING" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "4", + "Move": "MOVE_ROLLOUT" + }, + { + "Level": "8", + "Move": "MOVE_PROTECT" + }, + { + "Level": "12", + "Move": "MOVE_INFESTATION" + }, + { + "Level": "16", + "Move": "MOVE_SCREECH" + }, + { + "Level": "20", + "Move": "MOVE_PIN_MISSILE" + }, + { + "Level": "24", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "28", + "Move": "MOVE_POISON_JAB" + }, + { + "Level": "36", + "Move": "MOVE_TOXIC" + }, + { + "Level": "48", + "Move": "MOVE_AGILITY" + }, + { + "Level": "52", + "Move": "MOVE_DOUBLE_EDGE" + } + ], + "TMMoves": [ + "MOVE_ENDURE", + "MOVE_IRON_DEFENSE", + "MOVE_ROCK_TOMB", + "MOVE_SLUDGE_BOMB", + "MOVE_SOLAR_BEAM", + "MOVE_SPIKES", + "MOVE_SUBSTITUTE", + "MOVE_TOXIC_SPIKES" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SCOLIPEDE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_POISON_STING" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "4", + "Move": "MOVE_ROLLOUT" + }, + { + "Level": "8", + "Move": "MOVE_PROTECT" + }, + { + "Level": "12", + "Move": "MOVE_INFESTATION" + }, + { + "Level": "16", + "Move": "MOVE_SCREECH" + }, + { + "Level": "20", + "Move": "MOVE_PIN_MISSILE" + }, + { + "Level": "24", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "28", + "Move": "MOVE_POISON_JAB" + }, + { + "Level": "36", + "Move": "MOVE_TOXIC" + }, + { + "Level": "40", + "Move": "MOVE_IRON_TAIL" + }, + { + "Level": "44", + "Move": "MOVE_X_SCISSOR" + }, + { + "Level": "48", + "Move": "MOVE_AGILITY" + }, + { + "Level": "52", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "56", + "Move": "MOVE_MEGAHORN" + } + ], + "TMMoves": [ + "MOVE_DIG", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_GIGA_IMPACT", + "MOVE_GUNK_SHOT", + "MOVE_HYPER_BEAM", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SLUDGE_BOMB", + "MOVE_SOLAR_BEAM", + "MOVE_SPIKES", + "MOVE_SUBSTITUTE", + "MOVE_SWORDS_DANCE", + "MOVE_TOXIC_SPIKES", + "MOVE_U_TURN" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SANDILE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "9", + "Move": "MOVE_SAND_TOMB" + }, + { + "Level": "15", + "Move": "MOVE_BITE" + }, + { + "Level": "21", + "Move": "MOVE_DIG" + }, + { + "Level": "24", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "27", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "36", + "Move": "MOVE_IRON_TAIL" + }, + { + "Level": "42", + "Move": "MOVE_EARTHQUAKE" + }, + { + "Level": "50", + "Move": "MOVE_DOUBLE_EDGE" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_BULLDOZE", + "MOVE_DARK_PULSE", + "MOVE_DRAGON_CLAW", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FIRE_FANG", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SLUDGE_BOMB", + "MOVE_STEALTH_ROCK", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_THUNDER_FANG" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "KROKOROK": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "9", + "Move": "MOVE_SAND_TOMB" + }, + { + "Level": "15", + "Move": "MOVE_BITE" + }, + { + "Level": "21", + "Move": "MOVE_DIG" + }, + { + "Level": "24", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "27", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "36", + "Move": "MOVE_IRON_TAIL" + }, + { + "Level": "42", + "Move": "MOVE_EARTHQUAKE" + }, + { + "Level": "50", + "Move": "MOVE_DOUBLE_EDGE" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_BULLDOZE", + "MOVE_CURSE", + "MOVE_DARK_PULSE", + "MOVE_DRAGON_CLAW", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FIRE_FANG", + "MOVE_KNOCK_OFF", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SLUDGE_BOMB", + "MOVE_STEALTH_ROCK", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_THUNDER_FANG" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "KROOKODILE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "9", + "Move": "MOVE_SAND_TOMB" + }, + { + "Level": "15", + "Move": "MOVE_BITE" + }, + { + "Level": "21", + "Move": "MOVE_DIG" + }, + { + "Level": "24", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "27", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "36", + "Move": "MOVE_IRON_TAIL" + }, + { + "Level": "42", + "Move": "MOVE_EARTHQUAKE" + }, + { + "Level": "50", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "58", + "Move": "MOVE_OUTRAGE" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_BULK_UP", + "MOVE_BULLDOZE", + "MOVE_CLOSE_COMBAT", + "MOVE_CURSE", + "MOVE_DARK_PULSE", + "MOVE_DRAGON_CLAW", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FIRE_FANG", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_GUNK_SHOT", + "MOVE_HYPER_BEAM", + "MOVE_IRON_HEAD", + "MOVE_KNOCK_OFF", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SLUDGE_BOMB", + "MOVE_STEALTH_ROCK", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_THUNDER_FANG" + ], + "TutorMoves": [ + "MOVE_BREAKING_SWIPE" + ], + "EggMoves": [] + }, + "SCRAGGY": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "8", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "12", + "Move": "MOVE_POWER_UP_PUNCH" + }, + { + "Level": "16", + "Move": "MOVE_ROCK_TOMB" + }, + { + "Level": "20", + "Move": "MOVE_PROTECT" + }, + { + "Level": "26", + "Move": "MOVE_PARTING_SHOT" + }, + { + "Level": "32", + "Move": "MOVE_BRICK_BREAK" + }, + { + "Level": "35", + "Move": "MOVE_DETECT" + }, + { + "Level": "40", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "44", + "Move": "MOVE_IRON_TAIL" + }, + { + "Level": "48", + "Move": "MOVE_DYNAMIC_PUNCH" + }, + { + "Level": "52", + "Move": "MOVE_HEAD_SMASH" + } + ], + "TMMoves": [ + "MOVE_BULK_UP", + "MOVE_CURSE", + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_DRAGON_CLAW", + "MOVE_DRAGON_PULSE", + "MOVE_ENDURE", + "MOVE_FIRE_PUNCH", + "MOVE_FOCUS_BLAST", + "MOVE_ICE_PUNCH", + "MOVE_IRON_DEFENSE", + "MOVE_IRON_HEAD", + "MOVE_POISON_JAB", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_SLUDGE_BOMB", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_THUNDER_PUNCH", + "MOVE_WORK_UP", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SCRAFTY": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "8", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "12", + "Move": "MOVE_POWER_UP_PUNCH" + }, + { + "Level": "16", + "Move": "MOVE_ROCK_TOMB" + }, + { + "Level": "20", + "Move": "MOVE_PROTECT" + }, + { + "Level": "26", + "Move": "MOVE_PARTING_SHOT" + }, + { + "Level": "32", + "Move": "MOVE_BRICK_BREAK" + }, + { + "Level": "35", + "Move": "MOVE_DETECT" + }, + { + "Level": "40", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "44", + "Move": "MOVE_IRON_TAIL" + }, + { + "Level": "48", + "Move": "MOVE_DYNAMIC_PUNCH" + }, + { + "Level": "52", + "Move": "MOVE_HEAD_SMASH" + } + ], + "TMMoves": [ + "MOVE_BULK_UP", + "MOVE_CLOSE_COMBAT", + "MOVE_CURSE", + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_DOUBLE_EDGE", + "MOVE_DRAGON_CLAW", + "MOVE_DRAGON_PULSE", + "MOVE_ENDURE", + "MOVE_FIRE_PUNCH", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_IRON_DEFENSE", + "MOVE_IRON_HEAD", + "MOVE_KNOCK_OFF", + "MOVE_METRONOME", + "MOVE_OUTRAGE", + "MOVE_POISON_JAB", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_SMASH", + "MOVE_SLUDGE_BOMB", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SWORDS_DANCE", + "MOVE_TAUNT", + "MOVE_THUNDER_PUNCH", + "MOVE_WORK_UP", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "TRUBBISH": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "1", + "Move": "MOVE_SMOKESCREEN" + }, + { + "Level": "9", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "12", + "Move": "MOVE_ROLLOUT" + }, + { + "Level": "15", + "Move": "MOVE_TOXIC_SPIKES" + }, + { + "Level": "18", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "20", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "24", + "Move": "MOVE_POISON_JAB" + }, + { + "Level": "27", + "Move": "MOVE_SLUDGE_BOMB" + }, + { + "Level": "30", + "Move": "MOVE_TOXIC" + }, + { + "Level": "34", + "Move": "MOVE_SELF_DESTRUCT" + }, + { + "Level": "39", + "Move": "MOVE_SLUDGE_WAVE" + }, + { + "Level": "44", + "Move": "MOVE_GUNK_SHOT" + }, + { + "Level": "53", + "Move": "MOVE_EXPLOSION" + } + ], + "TMMoves": [ + "MOVE_BULLET_SEED", + "MOVE_DARK_PULSE", + "MOVE_ENDURE", + "MOVE_GIGA_DRAIN", + "MOVE_MUD_SHOT", + "MOVE_PROTECT", + "MOVE_ROCK_BLAST", + "MOVE_SPIKES", + "MOVE_SUBSTITUTE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "GARBODOR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "1", + "Move": "MOVE_SMOKESCREEN" + }, + { + "Level": "1", + "Move": "MOVE_METAL_CLAW" + }, + { + "Level": "9", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "12", + "Move": "MOVE_ROLLOUT" + }, + { + "Level": "15", + "Move": "MOVE_TOXIC_SPIKES" + }, + { + "Level": "18", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "20", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "24", + "Move": "MOVE_POISON_JAB" + }, + { + "Level": "27", + "Move": "MOVE_SLUDGE_BOMB" + }, + { + "Level": "30", + "Move": "MOVE_TOXIC" + }, + { + "Level": "34", + "Move": "MOVE_SELF_DESTRUCT" + }, + { + "Level": "39", + "Move": "MOVE_SLUDGE_WAVE" + }, + { + "Level": "44", + "Move": "MOVE_GUNK_SHOT" + }, + { + "Level": "53", + "Move": "MOVE_EXPLOSION" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BULLET_SEED", + "MOVE_DARK_PULSE", + "MOVE_ENDURE", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_DRAIN", + "MOVE_GIGA_IMPACT", + "MOVE_HEAL_BLOCK", + "MOVE_HYPER_BEAM", + "MOVE_MUD_SHOT", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_ROCK_BLAST", + "MOVE_SOLAR_BEAM", + "MOVE_SPIKES", + "MOVE_SUBSTITUTE", + "MOVE_THUNDERBOLT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "VANILLITE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_HARDEN" + }, + { + "Level": "4", + "Move": "MOVE_TAUNT" + }, + { + "Level": "8", + "Move": "MOVE_MIST" + }, + { + "Level": "12", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "20", + "Move": "MOVE_SELF_DESTRUCT" + }, + { + "Level": "24", + "Move": "MOVE_ICICLE_CRASH" + }, + { + "Level": "32", + "Move": "MOVE_ACID_ARMOR" + }, + { + "Level": "35", + "Move": "MOVE_ICE_BEAM" + }, + { + "Level": "46", + "Move": "MOVE_EXPLOSION" + }, + { + "Level": "58", + "Move": "MOVE_BLIZZARD" + } + ], + "TMMoves": [ + "MOVE_ENDURE", + "MOVE_FLASH_CANNON", + "MOVE_HYPER_VOICE", + "MOVE_IRON_DEFENSE", + "MOVE_LIGHT_SCREEN", + "MOVE_PROTECT", + "MOVE_SUBSTITUTE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "VANILLISH": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_HARDEN" + }, + { + "Level": "4", + "Move": "MOVE_TAUNT" + }, + { + "Level": "8", + "Move": "MOVE_MIST" + }, + { + "Level": "12", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "20", + "Move": "MOVE_SELF_DESTRUCT" + }, + { + "Level": "24", + "Move": "MOVE_ICICLE_CRASH" + }, + { + "Level": "32", + "Move": "MOVE_ACID_ARMOR" + }, + { + "Level": "35", + "Move": "MOVE_ICE_BEAM" + }, + { + "Level": "46", + "Move": "MOVE_EXPLOSION" + }, + { + "Level": "58", + "Move": "MOVE_BLIZZARD" + } + ], + "TMMoves": [ + "MOVE_ENDURE", + "MOVE_FLASH_CANNON", + "MOVE_HYPER_VOICE", + "MOVE_IRON_DEFENSE", + "MOVE_LIGHT_SCREEN", + "MOVE_PROTECT", + "MOVE_SUBSTITUTE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "VANILLUXE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_HARDEN" + }, + { + "Level": "1", + "Move": "MOVE_FREEZE_DRY" + }, + { + "Level": "4", + "Move": "MOVE_TAUNT" + }, + { + "Level": "8", + "Move": "MOVE_MIST" + }, + { + "Level": "12", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "20", + "Move": "MOVE_SELF_DESTRUCT" + }, + { + "Level": "24", + "Move": "MOVE_ICICLE_CRASH" + }, + { + "Level": "32", + "Move": "MOVE_ACID_ARMOR" + }, + { + "Level": "35", + "Move": "MOVE_ICE_BEAM" + }, + { + "Level": "46", + "Move": "MOVE_EXPLOSION" + }, + { + "Level": "58", + "Move": "MOVE_BLIZZARD" + } + ], + "TMMoves": [ + "MOVE_ENDURE", + "MOVE_FLASH_CANNON", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_IRON_DEFENSE", + "MOVE_LIGHT_SCREEN", + "MOVE_PROTECT", + "MOVE_SUBSTITUTE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "EMOLGA": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_NUZZLE" + }, + { + "Level": "5", + "Move": "MOVE_DOUBLE_TEAM" + }, + { + "Level": "7", + "Move": "MOVE_CHARM" + }, + { + "Level": "10", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "15", + "Move": "MOVE_THUNDER_SHOCK" + }, + { + "Level": "20", + "Move": "MOVE_CHARGE" + }, + { + "Level": "22", + "Move": "MOVE_WING_ATTACK" + }, + { + "Level": "25", + "Move": "MOVE_EERIE_IMPULSE" + }, + { + "Level": "29", + "Move": "MOVE_SPARK" + }, + { + "Level": "35", + "Move": "MOVE_AIR_SLASH" + }, + { + "Level": "40", + "Move": "MOVE_VOLT_SWITCH" + }, + { + "Level": "44", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "52", + "Move": "MOVE_DISCHARGE" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_ELECTROWEB", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_IRON_TAIL", + "MOVE_PROTECT", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_WAVE", + "MOVE_U_TURN", + "MOVE_WILD_CHARGE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "TYNAMO": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_THUNDER_WAVE" + }, + { + "Level": "1", + "Move": "MOVE_SPARK" + } + ], + "TMMoves": [ + "MOVE_PROTECT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "EELEKTRIK": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_THUNDER_WAVE" + }, + { + "Level": "1", + "Move": "MOVE_SPARK" + }, + { + "Level": "18", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "29", + "Move": "MOVE_DISCHARGE" + }, + { + "Level": "33", + "Move": "MOVE_EERIE_IMPULSE" + }, + { + "Level": "39", + "Move": "MOVE_CHARGE" + }, + { + "Level": "44", + "Move": "MOVE_THUNDERBOLT" + }, + { + "Level": "46", + "Move": "MOVE_WILD_CHARGE" + }, + { + "Level": "48", + "Move": "MOVE_ZAP_CANNON" + }, + { + "Level": "50", + "Move": "MOVE_SUPER_FANG" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_ENDURE", + "MOVE_FLASH_CANNON", + "MOVE_GIGA_DRAIN", + "MOVE_LIGHT_SCREEN", + "MOVE_PROTECT", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER", + "MOVE_THUNDER_FANG", + "MOVE_U_TURN", + "MOVE_VOLT_SWITCH" + ], + "TutorMoves": [ + "MOVE_CRUNCH" + ], + "EggMoves": [] + }, + "EELEKTROSS": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_SPARK" + }, + { + "Level": "1", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "18", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "21", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "29", + "Move": "MOVE_DISCHARGE" + }, + { + "Level": "33", + "Move": "MOVE_EERIE_IMPULSE" + }, + { + "Level": "36", + "Move": "MOVE_LIQUIDATION" + }, + { + "Level": "39", + "Move": "MOVE_CHARGE" + }, + { + "Level": "44", + "Move": "MOVE_THUNDERBOLT" + }, + { + "Level": "46", + "Move": "MOVE_WILD_CHARGE" + }, + { + "Level": "48", + "Move": "MOVE_ZAP_CANNON" + }, + { + "Level": "50", + "Move": "MOVE_SUPER_FANG" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BULK_UP", + "MOVE_BULLDOZE", + "MOVE_CLOSE_COMBAT", + "MOVE_DRAGON_CLAW", + "MOVE_DRAGON_PULSE", + "MOVE_ELECTROWEB", + "MOVE_ENDURE", + "MOVE_FIRE_PUNCH", + "MOVE_FLAMETHROWER", + "MOVE_FLASH_CANNON", + "MOVE_GIGA_DRAIN", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_LIGHT_SCREEN", + "MOVE_OUTRAGE", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER", + "MOVE_THUNDER_FANG", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_U_TURN", + "MOVE_VOLT_SWITCH", + "MOVE_WATERFALL", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "LITWICK": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_EMBER" + }, + { + "Level": "1", + "Move": "MOVE_SMOKESCREEN" + }, + { + "Level": "10", + "Move": "MOVE_HAZE" + }, + { + "Level": "12", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "16", + "Move": "MOVE_ACID_ARMOR" + }, + { + "Level": "20", + "Move": "MOVE_WILL_O_WISP" + }, + { + "Level": "24", + "Move": "MOVE_FIRE_SPIN" + }, + { + "Level": "28", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "32", + "Move": "MOVE_SHADOW_BALL" + }, + { + "Level": "38", + "Move": "MOVE_FLAME_WHEEL" + }, + { + "Level": "44", + "Move": "MOVE_CURSE" + }, + { + "Level": "48", + "Move": "MOVE_HEAL_BLOCK" + }, + { + "Level": "52", + "Move": "MOVE_OVERHEAT" + } + ], + "TMMoves": [ + "MOVE_CALM_MIND", + "MOVE_DARK_PULSE", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FIRE_BLAST", + "MOVE_HEAT_WAVE", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_SAFEGUARD", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "LAMPENT": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_EMBER" + }, + { + "Level": "1", + "Move": "MOVE_SMOKESCREEN" + }, + { + "Level": "10", + "Move": "MOVE_HAZE" + }, + { + "Level": "12", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "16", + "Move": "MOVE_ACID_ARMOR" + }, + { + "Level": "20", + "Move": "MOVE_WILL_O_WISP" + }, + { + "Level": "24", + "Move": "MOVE_FIRE_SPIN" + }, + { + "Level": "28", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "32", + "Move": "MOVE_SHADOW_BALL" + }, + { + "Level": "38", + "Move": "MOVE_FLAME_WHEEL" + }, + { + "Level": "44", + "Move": "MOVE_CURSE" + }, + { + "Level": "48", + "Move": "MOVE_HEAL_BLOCK" + }, + { + "Level": "52", + "Move": "MOVE_OVERHEAT" + } + ], + "TMMoves": [ + "MOVE_CALM_MIND", + "MOVE_DARK_PULSE", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FIRE_BLAST", + "MOVE_HEAT_WAVE", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_SAFEGUARD", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "CHANDELURE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_EMBER" + }, + { + "Level": "1", + "Move": "MOVE_SMOKESCREEN" + }, + { + "Level": "10", + "Move": "MOVE_HAZE" + }, + { + "Level": "12", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "16", + "Move": "MOVE_ACID_ARMOR" + }, + { + "Level": "20", + "Move": "MOVE_WILL_O_WISP" + }, + { + "Level": "24", + "Move": "MOVE_FIRE_SPIN" + }, + { + "Level": "28", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "32", + "Move": "MOVE_SHADOW_BALL" + }, + { + "Level": "38", + "Move": "MOVE_FLAME_WHEEL" + }, + { + "Level": "44", + "Move": "MOVE_CURSE" + }, + { + "Level": "48", + "Move": "MOVE_HEAL_BLOCK" + }, + { + "Level": "52", + "Move": "MOVE_OVERHEAT" + } + ], + "TMMoves": [ + "MOVE_CALM_MIND", + "MOVE_DARK_PULSE", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FIRE_BLAST", + "MOVE_FLARE_BLITZ", + "MOVE_GIGA_IMPACT", + "MOVE_HEAT_WAVE", + "MOVE_HYPER_BEAM", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_SAFEGUARD", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "STUNFISK": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "1", + "Move": "MOVE_THUNDER_SHOCK" + }, + { + "Level": "5", + "Move": "MOVE_ENDURE" + }, + { + "Level": "10", + "Move": "MOVE_MUD_SHOT" + }, + { + "Level": "15", + "Move": "MOVE_ROCK_TOMB" + }, + { + "Level": "20", + "Move": "MOVE_CHARGE" + }, + { + "Level": "25", + "Move": "MOVE_SPARK" + }, + { + "Level": "30", + "Move": "MOVE_EARTHQUAKE" + }, + { + "Level": "35", + "Move": "MOVE_DISCHARGE" + }, + { + "Level": "40", + "Move": "MOVE_BOUNCE" + }, + { + "Level": "45", + "Move": "MOVE_EERIE_IMPULSE" + }, + { + "Level": "50", + "Move": "MOVE_SLUDGE_WAVE" + } + ], + "TMMoves": [ + "MOVE_BULLDOZE", + "MOVE_CURSE", + "MOVE_DIG", + "MOVE_EARTH_POWER", + "MOVE_ELECTROWEB", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_SLUDGE_BOMB", + "MOVE_STEALTH_ROCK", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_WAVE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "STUNFISK_GALAR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "1", + "Move": "MOVE_SCREECH" + }, + { + "Level": "1", + "Move": "MOVE_METAL_CLAW" + }, + { + "Level": "5", + "Move": "MOVE_ENDURE" + }, + { + "Level": "10", + "Move": "MOVE_MUD_SHOT" + }, + { + "Level": "15", + "Move": "MOVE_ROCK_TOMB" + }, + { + "Level": "20", + "Move": "MOVE_METAL_SOUND" + }, + { + "Level": "25", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "30", + "Move": "MOVE_EARTHQUAKE" + }, + { + "Level": "35", + "Move": "MOVE_BOUNCE" + }, + { + "Level": "40", + "Move": "MOVE_SLUDGE_WAVE" + }, + { + "Level": "45", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "50", + "Move": "MOVE_STEALTH_ROCK" + } + ], + "TMMoves": [ + "MOVE_BULLDOZE", + "MOVE_CURSE", + "MOVE_DIG", + "MOVE_EARTH_POWER", + "MOVE_FLASH_CANNON", + "MOVE_ICE_FANG", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_SLUDGE_BOMB", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_THUNDER_WAVE", + "MOVE_TOXIC" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "CHESPIN": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_VINE_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "5", + "Move": "MOVE_GROWTH" + }, + { + "Level": "8", + "Move": "MOVE_ROLLOUT" + }, + { + "Level": "11", + "Move": "MOVE_BITE" + }, + { + "Level": "15", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "18", + "Move": "MOVE_PIN_MISSILE" + }, + { + "Level": "27", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "35", + "Move": "MOVE_BRICK_BREAK" + }, + { + "Level": "42", + "Move": "MOVE_BODY_SLAM" + }, + { + "Level": "48", + "Move": "MOVE_WOOD_HAMMER" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_BULLDOZE", + "MOVE_BULLET_SEED", + "MOVE_CURSE", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_DRAIN", + "MOVE_HEADBUTT", + "MOVE_IRON_HEAD", + "MOVE_MUD_SHOT", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SOLAR_BEAM", + "MOVE_SPIKES", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER_PUNCH", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "QUILLADIN": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_VINE_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "5", + "Move": "MOVE_GROWTH" + }, + { + "Level": "8", + "Move": "MOVE_ROLLOUT" + }, + { + "Level": "11", + "Move": "MOVE_BITE" + }, + { + "Level": "15", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "18", + "Move": "MOVE_PIN_MISSILE" + }, + { + "Level": "27", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "35", + "Move": "MOVE_BRICK_BREAK" + }, + { + "Level": "42", + "Move": "MOVE_BODY_SLAM" + }, + { + "Level": "48", + "Move": "MOVE_WOOD_HAMMER" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_BULK_UP", + "MOVE_BULLDOZE", + "MOVE_BULLET_SEED", + "MOVE_CURSE", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_DRAIN", + "MOVE_HEADBUTT", + "MOVE_IRON_HEAD", + "MOVE_MUD_SHOT", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_SMASH", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SOLAR_BEAM", + "MOVE_SPIKES", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER_PUNCH", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "CHESNAUGHT": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_VINE_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "5", + "Move": "MOVE_GROWTH" + }, + { + "Level": "8", + "Move": "MOVE_ROLLOUT" + }, + { + "Level": "11", + "Move": "MOVE_BITE" + }, + { + "Level": "15", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "18", + "Move": "MOVE_PIN_MISSILE" + }, + { + "Level": "27", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "35", + "Move": "MOVE_BRICK_BREAK" + }, + { + "Level": "38", + "Move": "MOVE_BULK_UP" + }, + { + "Level": "42", + "Move": "MOVE_BODY_SLAM" + }, + { + "Level": "45", + "Move": "MOVE_CLOSE_COMBAT" + }, + { + "Level": "48", + "Move": "MOVE_WOOD_HAMMER" + }, + { + "Level": "55", + "Move": "MOVE_GIGA_IMPACT" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_BULLDOZE", + "MOVE_BULLET_SEED", + "MOVE_CRUNCH", + "MOVE_CURSE", + "MOVE_DIG", + "MOVE_DOUBLE_EDGE", + "MOVE_DRAGON_CLAW", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_DRAIN", + "MOVE_HEADBUTT", + "MOVE_HYPER_BEAM", + "MOVE_IRON_DEFENSE", + "MOVE_IRON_HEAD", + "MOVE_KNOCK_OFF", + "MOVE_MUD_SHOT", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_SMASH", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SOLAR_BEAM", + "MOVE_SPIKES", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_SWORDS_DANCE", + "MOVE_THUNDER_PUNCH", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [ + "MOVE_SPIKY_SHIELD" + ], + "EggMoves": [] + }, + "FENNEKIN": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "5", + "Move": "MOVE_EMBER" + }, + { + "Level": "14", + "Move": "MOVE_CHARM" + }, + { + "Level": "17", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "20", + "Move": "MOVE_FIRE_SPIN" + }, + { + "Level": "25", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "31", + "Move": "MOVE_PSYSHOCK" + }, + { + "Level": "35", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "38", + "Move": "MOVE_WILL_O_WISP" + }, + { + "Level": "41", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "54", + "Move": "MOVE_FIRE_BLAST" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_CALM_MIND", + "MOVE_ENDURE", + "MOVE_FLARE_BLITZ", + "MOVE_OVERHEAT", + "MOVE_PROTECT", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "BRAIXEN": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "5", + "Move": "MOVE_EMBER" + }, + { + "Level": "14", + "Move": "MOVE_CHARM" + }, + { + "Level": "17", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "20", + "Move": "MOVE_FIRE_SPIN" + }, + { + "Level": "25", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "31", + "Move": "MOVE_PSYSHOCK" + }, + { + "Level": "35", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "38", + "Move": "MOVE_WILL_O_WISP" + }, + { + "Level": "41", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "46", + "Move": "MOVE_AGILITY" + }, + { + "Level": "54", + "Move": "MOVE_FIRE_BLAST" + } + ], + "TMMoves": [ + "MOVE_CALM_MIND", + "MOVE_ENDURE", + "MOVE_FIRE_PUNCH", + "MOVE_FLARE_BLITZ", + "MOVE_HEAT_WAVE", + "MOVE_OVERHEAT", + "MOVE_PROTECT", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER_PUNCH" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "DELPHOX": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "5", + "Move": "MOVE_EMBER" + }, + { + "Level": "14", + "Move": "MOVE_CHARM" + }, + { + "Level": "17", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "20", + "Move": "MOVE_FIRE_SPIN" + }, + { + "Level": "25", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "31", + "Move": "MOVE_PSYSHOCK" + }, + { + "Level": "35", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "38", + "Move": "MOVE_WILL_O_WISP" + }, + { + "Level": "41", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "46", + "Move": "MOVE_AGILITY" + }, + { + "Level": "54", + "Move": "MOVE_FIRE_BLAST" + } + ], + "TMMoves": [ + "MOVE_CALM_MIND", + "MOVE_DAZZLING_GLEAM", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_FIRE_PUNCH", + "MOVE_FLARE_BLITZ", + "MOVE_FOCUS_BLAST", + "MOVE_HEAL_BLOCK", + "MOVE_HEAT_WAVE", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_METRONOME", + "MOVE_NASTY_PLOT", + "MOVE_OVERHEAT", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_SAFEGUARD", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER_PUNCH", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [ + "MOVE_FUTURE_SIGHT", + "MOVE_MYSTICAL_FIRE", + "MOVE_SHADOW_BALL" + ], + "EggMoves": [] + }, + "FROAKIE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "5", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "8", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "10", + "Move": "MOVE_LICK" + }, + { + "Level": "14", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "18", + "Move": "MOVE_SMOKESCREEN" + }, + { + "Level": "35", + "Move": "MOVE_SUBSTITUTE" + }, + { + "Level": "38", + "Move": "MOVE_NIGHT_SLASH" + }, + { + "Level": "43", + "Move": "MOVE_BOUNCE" + }, + { + "Level": "51", + "Move": "MOVE_DOUBLE_TEAM" + }, + { + "Level": "57", + "Move": "MOVE_HYDRO_PUMP" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_BLIZZARD", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_ICE_BEAM", + "MOVE_ICY_WIND", + "MOVE_LIQUIDATION", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SPIKES", + "MOVE_SURF", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_TOXIC_SPIKES", + "MOVE_U_TURN", + "MOVE_WATERFALL", + "MOVE_WATER_PULSE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "FROGADIER": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "5", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "8", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "10", + "Move": "MOVE_LICK" + }, + { + "Level": "14", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "18", + "Move": "MOVE_SMOKESCREEN" + }, + { + "Level": "23", + "Move": "MOVE_AERIAL_ACE" + }, + { + "Level": "28", + "Move": "MOVE_SHADOW_SNEAK" + }, + { + "Level": "35", + "Move": "MOVE_SUBSTITUTE" + }, + { + "Level": "38", + "Move": "MOVE_NIGHT_SLASH" + }, + { + "Level": "43", + "Move": "MOVE_BOUNCE" + }, + { + "Level": "51", + "Move": "MOVE_DOUBLE_TEAM" + }, + { + "Level": "57", + "Move": "MOVE_HYDRO_PUMP" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BRICK_BREAK", + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_FLIP_TURN", + "MOVE_GUNK_SHOT", + "MOVE_HEADBUTT", + "MOVE_ICE_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_ICY_WIND", + "MOVE_LIQUIDATION", + "MOVE_NASTY_PLOT", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SPIKES", + "MOVE_SURF", + "MOVE_SWIFT", + "MOVE_SWORDS_DANCE", + "MOVE_TAUNT", + "MOVE_TOXIC_SPIKES", + "MOVE_U_TURN", + "MOVE_WATERFALL", + "MOVE_WATER_PULSE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "GRENINJA": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "5", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "8", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "10", + "Move": "MOVE_LICK" + }, + { + "Level": "14", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "18", + "Move": "MOVE_SMOKESCREEN" + }, + { + "Level": "23", + "Move": "MOVE_AERIAL_ACE" + }, + { + "Level": "28", + "Move": "MOVE_SHADOW_SNEAK" + }, + { + "Level": "35", + "Move": "MOVE_SUBSTITUTE" + }, + { + "Level": "38", + "Move": "MOVE_NIGHT_SLASH" + }, + { + "Level": "43", + "Move": "MOVE_BOUNCE" + }, + { + "Level": "51", + "Move": "MOVE_DOUBLE_TEAM" + }, + { + "Level": "57", + "Move": "MOVE_HYDRO_PUMP" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BRICK_BREAK", + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_FLIP_TURN", + "MOVE_GIGA_IMPACT", + "MOVE_GUNK_SHOT", + "MOVE_HEADBUTT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_ICY_WIND", + "MOVE_LIQUIDATION", + "MOVE_NASTY_PLOT", + "MOVE_PROTECT", + "MOVE_PSYSHOCK", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SPIKES", + "MOVE_SURF", + "MOVE_SWIFT", + "MOVE_SWORDS_DANCE", + "MOVE_TAUNT", + "MOVE_TOXIC_SPIKES", + "MOVE_U_TURN", + "MOVE_WATERFALL", + "MOVE_WATER_PULSE" + ], + "TutorMoves": [ + "MOVE_WATER_SHURIKEN" + ], + "EggMoves": [] + }, + "BUNNELBY": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "7", + "Move": "MOVE_MUD_SHOT" + }, + { + "Level": "14", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "24", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "28", + "Move": "MOVE_DIG" + }, + { + "Level": "32", + "Move": "MOVE_BOUNCE" + }, + { + "Level": "36", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "40", + "Move": "MOVE_SUPER_FANG" + }, + { + "Level": "44", + "Move": "MOVE_EARTHQUAKE" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BRICK_BREAK", + "MOVE_BULK_UP", + "MOVE_BULLDOZE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_HEADBUTT", + "MOVE_IRON_HEAD", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_SMASH", + "MOVE_ROCK_TOMB", + "MOVE_SLUDGE_BOMB", + "MOVE_SPIKES", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWORDS_DANCE", + "MOVE_U_TURN", + "MOVE_WILD_CHARGE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "DIGGERSBY": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "7", + "Move": "MOVE_MUD_SHOT" + }, + { + "Level": "14", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "24", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "28", + "Move": "MOVE_DIG" + }, + { + "Level": "32", + "Move": "MOVE_BOUNCE" + }, + { + "Level": "36", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "40", + "Move": "MOVE_SUPER_FANG" + }, + { + "Level": "44", + "Move": "MOVE_EARTHQUAKE" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_BULK_UP", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FIRE_PUNCH", + "MOVE_GIGA_IMPACT", + "MOVE_GUNK_SHOT", + "MOVE_HEADBUTT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_IRON_HEAD", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_SMASH", + "MOVE_ROCK_TOMB", + "MOVE_SLUDGE_BOMB", + "MOVE_SPIKES", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWORDS_DANCE", + "MOVE_THUNDER_PUNCH", + "MOVE_U_TURN", + "MOVE_WILD_CHARGE" + ], + "TutorMoves": [ + "MOVE_BULLDOZE" + ], + "EggMoves": [] + }, + "FLETCHLING": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "1", + "Move": "MOVE_PECK" + }, + { + "Level": "8", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "12", + "Move": "MOVE_EMBER" + }, + { + "Level": "16", + "Move": "MOVE_FEATHER_DANCE" + }, + { + "Level": "20", + "Move": "MOVE_WHIRLWIND" + }, + { + "Level": "25", + "Move": "MOVE_FLAME_WHEEL" + }, + { + "Level": "30", + "Move": "MOVE_STEEL_WING" + }, + { + "Level": "35", + "Move": "MOVE_AIR_SLASH" + }, + { + "Level": "40", + "Move": "MOVE_AGILITY" + }, + { + "Level": "45", + "Move": "MOVE_FLARE_BLITZ" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_FLY", + "MOVE_HEAT_WAVE", + "MOVE_HURRICANE", + "MOVE_OVERHEAT", + "MOVE_PROTECT", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_SWORDS_DANCE", + "MOVE_U_TURN", + "MOVE_WILL_O_WISP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "FLETCHINDER": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "1", + "Move": "MOVE_PECK" + }, + { + "Level": "8", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "12", + "Move": "MOVE_EMBER" + }, + { + "Level": "16", + "Move": "MOVE_FEATHER_DANCE" + }, + { + "Level": "20", + "Move": "MOVE_WHIRLWIND" + }, + { + "Level": "25", + "Move": "MOVE_FLAME_WHEEL" + }, + { + "Level": "30", + "Move": "MOVE_STEEL_WING" + }, + { + "Level": "35", + "Move": "MOVE_AIR_SLASH" + }, + { + "Level": "40", + "Move": "MOVE_AGILITY" + }, + { + "Level": "45", + "Move": "MOVE_FLARE_BLITZ" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_DOUBLE_EDGE", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_SPIN", + "MOVE_FLAMETHROWER", + "MOVE_FLY", + "MOVE_HEAT_WAVE", + "MOVE_HURRICANE", + "MOVE_OVERHEAT", + "MOVE_PROTECT", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_SWORDS_DANCE", + "MOVE_U_TURN", + "MOVE_WILL_O_WISP" + ], + "TutorMoves": [ + "MOVE_WING_ATTACK" + ], + "EggMoves": [] + }, + "TALONFLAME": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_WING_ATTACK" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "1", + "Move": "MOVE_PECK" + }, + { + "Level": "8", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "12", + "Move": "MOVE_EMBER" + }, + { + "Level": "16", + "Move": "MOVE_FEATHER_DANCE" + }, + { + "Level": "20", + "Move": "MOVE_WHIRLWIND" + }, + { + "Level": "25", + "Move": "MOVE_FLAME_WHEEL" + }, + { + "Level": "30", + "Move": "MOVE_STEEL_WING" + }, + { + "Level": "35", + "Move": "MOVE_AIR_SLASH" + }, + { + "Level": "40", + "Move": "MOVE_AGILITY" + }, + { + "Level": "45", + "Move": "MOVE_FLARE_BLITZ" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_BULK_UP", + "MOVE_DOUBLE_EDGE", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_SPIN", + "MOVE_FLAMETHROWER", + "MOVE_FLY", + "MOVE_GIGA_IMPACT", + "MOVE_HEAT_WAVE", + "MOVE_HURRICANE", + "MOVE_HYPER_BEAM", + "MOVE_OVERHEAT", + "MOVE_PROTECT", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_SWORDS_DANCE", + "MOVE_U_TURN", + "MOVE_WILL_O_WISP" + ], + "TutorMoves": [ + "MOVE_BRAVE_BIRD" + ], + "EggMoves": [] + }, + "SCATTERBUG": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_STRING_SHOT" + }, + { + "Level": "7", + "Move": "MOVE_STUN_SPORE" + } + ], + "TMMoves": [ + "MOVE_PROTECT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SPEWPA": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_POISON_POWDER" + }, + { + "Level": "1", + "Move": "MOVE_STRING_SHOT" + }, + { + "Level": "1", + "Move": "MOVE_HARDEN" + }, + { + "Level": "7", + "Move": "MOVE_STUN_SPORE" + }, + { + "Level": "10", + "Move": "MOVE_INFESTATION" + } + ], + "TMMoves": [ + "MOVE_IRON_DEFENSE" + ], + "TutorMoves": [ + "MOVE_PROTECT" + ], + "EggMoves": [] + }, + "VIVILLON": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_POISON_POWDER" + }, + { + "Level": "1", + "Move": "MOVE_STUN_SPORE" + }, + { + "Level": "1", + "Move": "MOVE_SLEEP_POWDER" + }, + { + "Level": "10", + "Move": "MOVE_INFESTATION" + }, + { + "Level": "12", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "15", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "17", + "Move": "MOVE_SUPERSONIC" + }, + { + "Level": "21", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "25", + "Move": "MOVE_U_TURN" + }, + { + "Level": "28", + "Move": "MOVE_AIR_SLASH" + }, + { + "Level": "35", + "Move": "MOVE_BUG_BUZZ" + }, + { + "Level": "40", + "Move": "MOVE_SAFEGUARD" + }, + { + "Level": "40", + "Move": "MOVE_HURRICANE" + }, + { + "Level": "45", + "Move": "MOVE_WHIRLWIND" + } + ], + "TMMoves": [ + "MOVE_DAZZLING_GLEAM", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_DRAIN", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_IRON_DEFENSE", + "MOVE_PSYCHIC", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT" + ], + "TutorMoves": [ + "MOVE_GUST", + "MOVE_HARDEN", + "MOVE_PROTECT", + "MOVE_STRING_SHOT", + "MOVE_TACKLE" + ], + "EggMoves": [] + }, + "LITLEO": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "5", + "Move": "MOVE_EMBER" + }, + { + "Level": "6", + "Move": "MOVE_ROAR" + }, + { + "Level": "8", + "Move": "MOVE_WORK_UP" + }, + { + "Level": "11", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "16", + "Move": "MOVE_SNARL" + }, + { + "Level": "20", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "23", + "Move": "MOVE_FIRE_FANG" + }, + { + "Level": "28", + "Move": "MOVE_EARTH_POWER" + }, + { + "Level": "32", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "36", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "42", + "Move": "MOVE_HYPER_VOICE" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_DIG", + "MOVE_DOUBLE_EDGE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_SPIN", + "MOVE_FLARE_BLITZ", + "MOVE_HEAT_WAVE", + "MOVE_OVERHEAT", + "MOVE_PROTECT", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_THUNDER_FANG", + "MOVE_WILD_CHARGE", + "MOVE_WILL_O_WISP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "PYROAR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_EMBER" + }, + { + "Level": "6", + "Move": "MOVE_ROAR" + }, + { + "Level": "8", + "Move": "MOVE_WORK_UP" + }, + { + "Level": "11", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "16", + "Move": "MOVE_SNARL" + }, + { + "Level": "20", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "23", + "Move": "MOVE_FIRE_FANG" + }, + { + "Level": "28", + "Move": "MOVE_EARTH_POWER" + }, + { + "Level": "32", + "Move": "MOVE_FLAMETHROWER" + }, + { + "Level": "36", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "42", + "Move": "MOVE_HYPER_VOICE" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_DOUBLE_EDGE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_SPIN", + "MOVE_FLARE_BLITZ", + "MOVE_GIGA_IMPACT", + "MOVE_HEAT_WAVE", + "MOVE_PROTECT", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_THUNDER_FANG", + "MOVE_WILD_CHARGE", + "MOVE_WILL_O_WISP" + ], + "TutorMoves": [ + "MOVE_HYPER_BEAM", + "MOVE_OVERHEAT" + ], + "EggMoves": [] + }, + "FLAB\u00c9B\u00c9": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_VINE_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "6", + "Move": "MOVE_FAIRY_WIND" + }, + { + "Level": "10", + "Move": "MOVE_SAFEGUARD" + }, + { + "Level": "15", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "18", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "20", + "Move": "MOVE_WISH" + }, + { + "Level": "22", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "26", + "Move": "MOVE_CHARM" + }, + { + "Level": "33", + "Move": "MOVE_SYNTHESIS" + }, + { + "Level": "40", + "Move": "MOVE_ENERGY_BALL" + }, + { + "Level": "54", + "Move": "MOVE_SOLAR_BEAM" + } + ], + "TMMoves": [ + "MOVE_CALM_MIND", + "MOVE_DAZZLING_GLEAM", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_GIGA_DRAIN", + "MOVE_LIGHT_SCREEN", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "FLOETTE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_VINE_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_FAIRY_WIND" + }, + { + "Level": "10", + "Move": "MOVE_SAFEGUARD" + }, + { + "Level": "15", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "18", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "20", + "Move": "MOVE_WISH" + }, + { + "Level": "22", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "26", + "Move": "MOVE_CHARM" + }, + { + "Level": "33", + "Move": "MOVE_SYNTHESIS" + }, + { + "Level": "40", + "Move": "MOVE_ENERGY_BALL" + }, + { + "Level": "54", + "Move": "MOVE_SOLAR_BEAM" + } + ], + "TMMoves": [ + "MOVE_CALM_MIND", + "MOVE_DAZZLING_GLEAM", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_GIGA_DRAIN", + "MOVE_LIGHT_SCREEN", + "MOVE_METRONOME", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT" + ], + "TutorMoves": [ + "MOVE_MOONBLAST" + ], + "EggMoves": [] + }, + "FLOETTE_ETERNAL": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_VINE_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_FAIRY_WIND" + }, + { + "Level": "10", + "Move": "MOVE_SAFEGUARD" + }, + { + "Level": "15", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "18", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "20", + "Move": "MOVE_WISH" + }, + { + "Level": "22", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "26", + "Move": "MOVE_CHARM" + }, + { + "Level": "33", + "Move": "MOVE_SYNTHESIS" + }, + { + "Level": "40", + "Move": "MOVE_ENERGY_BALL" + }, + { + "Level": "50", + "Move": "MOVE_LIGHT_OF_RUIN" + }, + { + "Level": "54", + "Move": "MOVE_SOLAR_BEAM" + } + ], + "TMMoves": [ + "MOVE_CALM_MIND", + "MOVE_DAZZLING_GLEAM", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_GIGA_DRAIN", + "MOVE_HYPER_BEAM", + "MOVE_LIGHT_SCREEN", + "MOVE_METRONOME", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT" + ], + "TutorMoves": [ + "MOVE_MOONBLAST" + ], + "EggMoves": [] + }, + "FLORGES": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_VINE_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_FAIRY_WIND" + }, + { + "Level": "1", + "Move": "MOVE_MOONBLAST" + }, + { + "Level": "10", + "Move": "MOVE_SAFEGUARD" + }, + { + "Level": "15", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "18", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "20", + "Move": "MOVE_WISH" + }, + { + "Level": "22", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "26", + "Move": "MOVE_CHARM" + }, + { + "Level": "33", + "Move": "MOVE_SYNTHESIS" + }, + { + "Level": "40", + "Move": "MOVE_ENERGY_BALL" + }, + { + "Level": "54", + "Move": "MOVE_SOLAR_BEAM" + } + ], + "TMMoves": [ + "MOVE_CALM_MIND", + "MOVE_DAZZLING_GLEAM", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_GIGA_DRAIN", + "MOVE_HYPER_BEAM", + "MOVE_LIGHT_SCREEN", + "MOVE_METRONOME", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT" + ], + "TutorMoves": [ + "MOVE_DISARMING_VOICE" + ], + "EggMoves": [] + }, + "SKIDDO": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWTH" + }, + { + "Level": "7", + "Move": "MOVE_VINE_WHIP" + }, + { + "Level": "9", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "12", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "13", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "16", + "Move": "MOVE_MUD_SHOT" + }, + { + "Level": "20", + "Move": "MOVE_SYNTHESIS" + }, + { + "Level": "22", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "26", + "Move": "MOVE_BULLDOZE" + }, + { + "Level": "34", + "Move": "MOVE_HORN_LEECH" + }, + { + "Level": "38", + "Move": "MOVE_BULK_UP" + }, + { + "Level": "42", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "45", + "Move": "MOVE_LEAF_BLADE" + }, + { + "Level": "50", + "Move": "MOVE_MEGAHORN" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_BULLET_SEED", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_DRAIN", + "MOVE_LEAF_STORM", + "MOVE_MAGICAL_LEAF", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_WILD_CHARGE", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "GOGOAT": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWTH" + }, + { + "Level": "7", + "Move": "MOVE_VINE_WHIP" + }, + { + "Level": "9", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "12", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "13", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "16", + "Move": "MOVE_MUD_SHOT" + }, + { + "Level": "20", + "Move": "MOVE_SYNTHESIS" + }, + { + "Level": "22", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "26", + "Move": "MOVE_BULLDOZE" + }, + { + "Level": "34", + "Move": "MOVE_HORN_LEECH" + }, + { + "Level": "38", + "Move": "MOVE_BULK_UP" + }, + { + "Level": "42", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "45", + "Move": "MOVE_LEAF_BLADE" + }, + { + "Level": "50", + "Move": "MOVE_MEGAHORN" + }, + { + "Level": "55", + "Move": "MOVE_EARTHQUAKE" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_BULLET_SEED", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_DRAIN", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_LEAF_STORM", + "MOVE_MAGICAL_LEAF", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_WILD_CHARGE", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [ + "MOVE_AERIAL_ACE" + ], + "EggMoves": [] + }, + "PANCHAM": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "8", + "Move": "MOVE_TAUNT" + }, + { + "Level": "15", + "Move": "MOVE_BRICK_BREAK" + }, + { + "Level": "20", + "Move": "MOVE_WORK_UP" + }, + { + "Level": "24", + "Move": "MOVE_SLASH" + }, + { + "Level": "28", + "Move": "MOVE_DETECT" + }, + { + "Level": "30", + "Move": "MOVE_PARTING_SHOT" + }, + { + "Level": "34", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "44", + "Move": "MOVE_BODY_SLAM" + } + ], + "TMMoves": [ + "MOVE_BULK_UP", + "MOVE_BULLDOZE", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_FIRE_PUNCH", + "MOVE_HYPER_VOICE", + "MOVE_ICE_PUNCH", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SLUDGE_BOMB", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWORDS_DANCE", + "MOVE_THUNDER_PUNCH" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "PANGORO": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_TAUNT" + }, + { + "Level": "1", + "Move": "MOVE_BULLET_PUNCH" + }, + { + "Level": "15", + "Move": "MOVE_BRICK_BREAK" + }, + { + "Level": "20", + "Move": "MOVE_WORK_UP" + }, + { + "Level": "24", + "Move": "MOVE_SLASH" + }, + { + "Level": "28", + "Move": "MOVE_DETECT" + }, + { + "Level": "30", + "Move": "MOVE_PARTING_SHOT" + }, + { + "Level": "34", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "38", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "44", + "Move": "MOVE_BODY_SLAM" + }, + { + "Level": "50", + "Move": "MOVE_OUTRAGE" + }, + { + "Level": "54", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "58", + "Move": "MOVE_CLOSE_COMBAT" + } + ], + "TMMoves": [ + "MOVE_BULK_UP", + "MOVE_BULLDOZE", + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_DRAGON_CLAW", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FIRE_PUNCH", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_DRAIN", + "MOVE_GIGA_IMPACT", + "MOVE_GUNK_SHOT", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_ICE_PUNCH", + "MOVE_IRON_HEAD", + "MOVE_KNOCK_OFF", + "MOVE_POISON_JAB", + "MOVE_POWER_UP_PUNCH", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_SMASH", + "MOVE_ROCK_TOMB", + "MOVE_SHADOW_CLAW", + "MOVE_SLUDGE_BOMB", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWORDS_DANCE", + "MOVE_THUNDER_PUNCH", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [ + "MOVE_NIGHT_SLASH" + ], + "EggMoves": [] + }, + "FURFROU": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "8", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "13", + "Move": "MOVE_BITE" + }, + { + "Level": "16", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "20", + "Move": "MOVE_ROAR" + }, + { + "Level": "22", + "Move": "MOVE_COTTON_GUARD" + }, + { + "Level": "25", + "Move": "MOVE_CHARM" + }, + { + "Level": "28", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "30", + "Move": "MOVE_SNARL" + }, + { + "Level": "36", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "43", + "Move": "MOVE_HYPER_VOICE" + } + ], + "TMMoves": [ + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_FIRE_FANG", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_FANG", + "MOVE_IRON_TAIL", + "MOVE_PROTECT", + "MOVE_ROCK_SMASH", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_THUNDER_FANG", + "MOVE_THUNDER_WAVE", + "MOVE_U_TURN", + "MOVE_WILD_CHARGE", + "MOVE_WORK_UP", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "ESPURR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "6", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "9", + "Move": "MOVE_CONFUSION" + }, + { + "Level": "13", + "Move": "MOVE_FAKE_TEARS" + }, + { + "Level": "15", + "Move": "MOVE_SWIFT" + }, + { + "Level": "21", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "30", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "30", + "Move": "MOVE_REFLECT" + }, + { + "Level": "36", + "Move": "MOVE_PSYSHOCK" + } + ], + "TMMoves": [ + "MOVE_CALM_MIND", + "MOVE_DARK_PULSE", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_NASTY_PLOT", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_SAFEGUARD", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_WAVE", + "MOVE_WORK_UP", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "MEOWSTIC_M": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "6", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "9", + "Move": "MOVE_CONFUSION" + }, + { + "Level": "13", + "Move": "MOVE_FAKE_TEARS" + }, + { + "Level": "15", + "Move": "MOVE_SWIFT" + }, + { + "Level": "18", + "Move": "MOVE_CHARM" + }, + { + "Level": "21", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "30", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "30", + "Move": "MOVE_REFLECT" + }, + { + "Level": "36", + "Move": "MOVE_PSYSHOCK" + }, + { + "Level": "44", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "46", + "Move": "MOVE_HEAL_BLOCK" + }, + { + "Level": "50", + "Move": "MOVE_WISH" + } + ], + "TMMoves": [ + "MOVE_CALM_MIND", + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_NASTY_PLOT", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_SAFEGUARD", + "MOVE_SHADOW_BALL", + "MOVE_SPIKES", + "MOVE_STEALTH_ROCK", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_WAVE", + "MOVE_TOXIC_SPIKES", + "MOVE_WORK_UP", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "MEOWSTIC_F": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_MAGICAL_LEAF" + }, + { + "Level": "1", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "9", + "Move": "MOVE_CONFUSION" + }, + { + "Level": "13", + "Move": "MOVE_FAKE_TEARS" + }, + { + "Level": "15", + "Move": "MOVE_SWIFT" + }, + { + "Level": "21", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "24", + "Move": "MOVE_DARK_PULSE" + }, + { + "Level": "30", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "30", + "Move": "MOVE_REFLECT" + }, + { + "Level": "36", + "Move": "MOVE_PSYSHOCK" + }, + { + "Level": "40", + "Move": "MOVE_SHADOW_BALL" + }, + { + "Level": "44", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "50", + "Move": "MOVE_FUTURE_SIGHT" + } + ], + "TMMoves": [ + "MOVE_CALM_MIND", + "MOVE_DIG", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_NASTY_PLOT", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_SAFEGUARD", + "MOVE_SUBSTITUTE", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_WAVE", + "MOVE_WATER_PULSE", + "MOVE_WORK_UP", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "HONEDGE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_SCREECH" + }, + { + "Level": "4", + "Move": "MOVE_SHADOW_SNEAK" + }, + { + "Level": "12", + "Move": "MOVE_AERIAL_ACE" + }, + { + "Level": "16", + "Move": "MOVE_METAL_SOUND" + }, + { + "Level": "20", + "Move": "MOVE_SLASH" + }, + { + "Level": "22", + "Move": "MOVE_PSYCHO_CUT" + }, + { + "Level": "24", + "Move": "MOVE_SHADOW_CLAW" + }, + { + "Level": "32", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "38", + "Move": "MOVE_IRON_HEAD" + }, + { + "Level": "44", + "Move": "MOVE_SWORDS_DANCE" + } + ], + "TMMoves": [ + "MOVE_BRICK_BREAK", + "MOVE_CLOSE_COMBAT", + "MOVE_FLASH_CANNON", + "MOVE_HEADBUTT", + "MOVE_NIGHT_SLASH", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_ROCK_SLIDE", + "MOVE_SUBSTITUTE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "DOUBLADE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_SCREECH" + }, + { + "Level": "4", + "Move": "MOVE_SHADOW_SNEAK" + }, + { + "Level": "12", + "Move": "MOVE_AERIAL_ACE" + }, + { + "Level": "16", + "Move": "MOVE_METAL_SOUND" + }, + { + "Level": "20", + "Move": "MOVE_SLASH" + }, + { + "Level": "22", + "Move": "MOVE_PSYCHO_CUT" + }, + { + "Level": "24", + "Move": "MOVE_SHADOW_CLAW" + }, + { + "Level": "32", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "38", + "Move": "MOVE_IRON_HEAD" + }, + { + "Level": "44", + "Move": "MOVE_SWORDS_DANCE" + } + ], + "TMMoves": [ + "MOVE_BRICK_BREAK", + "MOVE_CLOSE_COMBAT", + "MOVE_ENDURE", + "MOVE_FLASH_CANNON", + "MOVE_HEADBUTT", + "MOVE_NIGHT_SLASH", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_ROCK_SLIDE", + "MOVE_SUBSTITUTE", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "AEGISLASH": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_SCREECH" + }, + { + "Level": "4", + "Move": "MOVE_SHADOW_SNEAK" + }, + { + "Level": "12", + "Move": "MOVE_AERIAL_ACE" + }, + { + "Level": "16", + "Move": "MOVE_METAL_SOUND" + }, + { + "Level": "20", + "Move": "MOVE_SLASH" + }, + { + "Level": "22", + "Move": "MOVE_PSYCHO_CUT" + }, + { + "Level": "24", + "Move": "MOVE_SHADOW_CLAW" + }, + { + "Level": "32", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "38", + "Move": "MOVE_IRON_HEAD" + }, + { + "Level": "44", + "Move": "MOVE_SWORDS_DANCE" + }, + { + "Level": "50", + "Move": "MOVE_HEAD_SMASH" + } + ], + "TMMoves": [ + "MOVE_BRICK_BREAK", + "MOVE_CLOSE_COMBAT", + "MOVE_ENDURE", + "MOVE_FLASH_CANNON", + "MOVE_GIGA_IMPACT", + "MOVE_HEADBUTT", + "MOVE_HYPER_BEAM", + "MOVE_NIGHT_SLASH", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_ROCK_SLIDE", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [ + "MOVE_KINGS_SHIELD" + ], + "EggMoves": [] + }, + "SPRITZEE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_FAIRY_WIND" + }, + { + "Level": "8", + "Move": "MOVE_FAKE_TEARS" + }, + { + "Level": "10", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "15", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "22", + "Move": "MOVE_WISH" + }, + { + "Level": "24", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "27", + "Move": "MOVE_DAZZLING_GLEAM" + }, + { + "Level": "30", + "Move": "MOVE_CHARM" + }, + { + "Level": "33", + "Move": "MOVE_CALM_MIND" + }, + { + "Level": "36", + "Move": "MOVE_MOONBLAST" + }, + { + "Level": "40", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "44", + "Move": "MOVE_HEAL_BLOCK" + }, + { + "Level": "48", + "Move": "MOVE_HYPNOSIS" + } + ], + "TMMoves": [ + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FLASH_CANNON", + "MOVE_LIGHT_SCREEN", + "MOVE_NASTY_PLOT", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_SUBSTITUTE", + "MOVE_THUNDERBOLT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "AROMATISSE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_FAIRY_WIND" + }, + { + "Level": "8", + "Move": "MOVE_FAKE_TEARS" + }, + { + "Level": "10", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "15", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "22", + "Move": "MOVE_WISH" + }, + { + "Level": "24", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "27", + "Move": "MOVE_DAZZLING_GLEAM" + }, + { + "Level": "30", + "Move": "MOVE_CHARM" + }, + { + "Level": "33", + "Move": "MOVE_CALM_MIND" + }, + { + "Level": "36", + "Move": "MOVE_MOONBLAST" + }, + { + "Level": "40", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "44", + "Move": "MOVE_HEAL_BLOCK" + }, + { + "Level": "48", + "Move": "MOVE_HYPNOSIS" + } + ], + "TMMoves": [ + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FLASH_CANNON", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_LIGHT_SCREEN", + "MOVE_METRONOME", + "MOVE_NASTY_PLOT", + "MOVE_PROTECT", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_SUBSTITUTE", + "MOVE_THUNDERBOLT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SWIRLIX": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_CHARM" + }, + { + "Level": "6", + "Move": "MOVE_FAIRY_WIND" + }, + { + "Level": "12", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "15", + "Move": "MOVE_FAKE_TEARS" + }, + { + "Level": "18", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "21", + "Move": "MOVE_STRING_SHOT" + }, + { + "Level": "24", + "Move": "MOVE_COTTON_GUARD" + }, + { + "Level": "27", + "Move": "MOVE_ENERGY_BALL" + }, + { + "Level": "32", + "Move": "MOVE_WISH" + }, + { + "Level": "36", + "Move": "MOVE_PLAY_ROUGH" + }, + { + "Level": "40", + "Move": "MOVE_STICKY_WEB" + } + ], + "TMMoves": [ + "MOVE_CALM_MIND", + "MOVE_DAZZLING_GLEAM", + "MOVE_ENDURE", + "MOVE_FLAMETHROWER", + "MOVE_LIGHT_SCREEN", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_SAFEGUARD", + "MOVE_SELF_DESTRUCT", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWORDS_DANCE", + "MOVE_THUNDERBOLT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SLURPUFF": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_CHARM" + }, + { + "Level": "6", + "Move": "MOVE_FAIRY_WIND" + }, + { + "Level": "12", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "15", + "Move": "MOVE_FAKE_TEARS" + }, + { + "Level": "18", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "21", + "Move": "MOVE_STRING_SHOT" + }, + { + "Level": "24", + "Move": "MOVE_COTTON_GUARD" + }, + { + "Level": "27", + "Move": "MOVE_ENERGY_BALL" + }, + { + "Level": "32", + "Move": "MOVE_WISH" + }, + { + "Level": "36", + "Move": "MOVE_PLAY_ROUGH" + }, + { + "Level": "40", + "Move": "MOVE_STICKY_WEB" + } + ], + "TMMoves": [ + "MOVE_CALM_MIND", + "MOVE_DAZZLING_GLEAM", + "MOVE_ENDURE", + "MOVE_FLAMETHROWER", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_LIGHT_SCREEN", + "MOVE_METRONOME", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_SAFEGUARD", + "MOVE_SELF_DESTRUCT", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWORDS_DANCE", + "MOVE_THUNDERBOLT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "INKAY": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_PECK" + }, + { + "Level": "3", + "Move": "MOVE_HYPNOSIS" + }, + { + "Level": "6", + "Move": "MOVE_FAKE_TEARS" + }, + { + "Level": "14", + "Move": "MOVE_KNOCK_OFF" + }, + { + "Level": "15", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "21", + "Move": "MOVE_SLASH" + }, + { + "Level": "24", + "Move": "MOVE_NIGHT_SLASH" + }, + { + "Level": "33", + "Move": "MOVE_PSYCHO_CUT" + }, + { + "Level": "37", + "Move": "MOVE_PSYSHOCK" + }, + { + "Level": "42", + "Move": "MOVE_TOPSY_TURVY" + }, + { + "Level": "54", + "Move": "MOVE_CLOSE_COMBAT" + } + ], + "TMMoves": [ + "MOVE_CALM_MIND", + "MOVE_DARK_PULSE", + "MOVE_ENDURE", + "MOVE_FLAMETHROWER", + "MOVE_FUTURE_SIGHT", + "MOVE_HEADBUTT", + "MOVE_LIGHT_SCREEN", + "MOVE_LIQUIDATION", + "MOVE_NASTY_PLOT", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_REFLECT", + "MOVE_ROCK_SLIDE", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_THUNDERBOLT", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "MALAMAR": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_PECK" + }, + { + "Level": "3", + "Move": "MOVE_HYPNOSIS" + }, + { + "Level": "6", + "Move": "MOVE_FAKE_TEARS" + }, + { + "Level": "14", + "Move": "MOVE_KNOCK_OFF" + }, + { + "Level": "15", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "21", + "Move": "MOVE_SLASH" + }, + { + "Level": "24", + "Move": "MOVE_NIGHT_SLASH" + }, + { + "Level": "33", + "Move": "MOVE_PSYCHO_CUT" + }, + { + "Level": "37", + "Move": "MOVE_PSYSHOCK" + }, + { + "Level": "42", + "Move": "MOVE_TOPSY_TURVY" + }, + { + "Level": "54", + "Move": "MOVE_CLOSE_COMBAT" + } + ], + "TMMoves": [ + "MOVE_BULK_UP", + "MOVE_CALM_MIND", + "MOVE_DARK_PULSE", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_FLAMETHROWER", + "MOVE_FUTURE_SIGHT", + "MOVE_GIGA_IMPACT", + "MOVE_HEADBUTT", + "MOVE_HEAL_BLOCK", + "MOVE_HYPER_BEAM", + "MOVE_LIGHT_SCREEN", + "MOVE_LIQUIDATION", + "MOVE_NASTY_PLOT", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_REFLECT", + "MOVE_ROCK_SLIDE", + "MOVE_STEALTH_ROCK", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_THUNDERBOLT", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "BINACLE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "1", + "Move": "MOVE_SCREECH" + }, + { + "Level": "9", + "Move": "MOVE_INFESTATION" + }, + { + "Level": "12", + "Move": "MOVE_ROCK_THROW" + }, + { + "Level": "14", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "16", + "Move": "MOVE_ROCK_BLAST" + }, + { + "Level": "18", + "Move": "MOVE_BULLDOZE" + }, + { + "Level": "23", + "Move": "MOVE_SLASH" + }, + { + "Level": "35", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "40", + "Move": "MOVE_NIGHT_SLASH" + }, + { + "Level": "45", + "Move": "MOVE_LIQUIDATION" + }, + { + "Level": "50", + "Move": "MOVE_STONE_EDGE" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BRICK_BREAK", + "MOVE_DIG", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_ICE_BEAM", + "MOVE_MUD_SHOT", + "MOVE_POISON_JAB", + "MOVE_POWER_UP_PUNCH", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SAFEGUARD", + "MOVE_SHADOW_CLAW", + "MOVE_SLUDGE_BOMB", + "MOVE_STEALTH_ROCK", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWORDS_DANCE", + "MOVE_TAUNT", + "MOVE_WATERFALL", + "MOVE_X_SCISSOR" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "BARBARACLE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "1", + "Move": "MOVE_SCREECH" + }, + { + "Level": "9", + "Move": "MOVE_INFESTATION" + }, + { + "Level": "12", + "Move": "MOVE_ROCK_THROW" + }, + { + "Level": "14", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "16", + "Move": "MOVE_ROCK_BLAST" + }, + { + "Level": "18", + "Move": "MOVE_BULLDOZE" + }, + { + "Level": "23", + "Move": "MOVE_SLASH" + }, + { + "Level": "35", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "40", + "Move": "MOVE_NIGHT_SLASH" + }, + { + "Level": "43", + "Move": "MOVE_BRICK_BREAK" + }, + { + "Level": "45", + "Move": "MOVE_LIQUIDATION" + }, + { + "Level": "50", + "Move": "MOVE_STONE_EDGE" + }, + { + "Level": "54", + "Move": "MOVE_CLOSE_COMBAT" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BULK_UP", + "MOVE_DIG", + "MOVE_DRAGON_CLAW", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_MUD_SHOT", + "MOVE_POISON_JAB", + "MOVE_POWER_UP_PUNCH", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SAFEGUARD", + "MOVE_SHADOW_CLAW", + "MOVE_SLUDGE_BOMB", + "MOVE_STEALTH_ROCK", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWORDS_DANCE", + "MOVE_TAUNT", + "MOVE_WATERFALL", + "MOVE_X_SCISSOR" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SKRELP": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "1", + "Move": "MOVE_SMOKESCREEN" + }, + { + "Level": "5", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "10", + "Move": "MOVE_MUD_SHOT" + }, + { + "Level": "15", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "22", + "Move": "MOVE_DOUBLE_TEAM" + }, + { + "Level": "25", + "Move": "MOVE_TOXIC" + }, + { + "Level": "30", + "Move": "MOVE_WATER_PULSE" + }, + { + "Level": "32", + "Move": "MOVE_POISON_JAB" + }, + { + "Level": "36", + "Move": "MOVE_DRAGON_PULSE" + }, + { + "Level": "40", + "Move": "MOVE_SLUDGE_BOMB" + }, + { + "Level": "46", + "Move": "MOVE_HYDRO_PUMP" + }, + { + "Level": "52", + "Move": "MOVE_SLUDGE_WAVE" + } + ], + "TMMoves": [ + "MOVE_ENDURE", + "MOVE_FLIP_TURN", + "MOVE_GUNK_SHOT", + "MOVE_LIQUIDATION", + "MOVE_OUTRAGE", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_THUNDERBOLT", + "MOVE_TOXIC_SPIKES", + "MOVE_WATERFALL" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "DRAGALGE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "1", + "Move": "MOVE_SMOKESCREEN" + }, + { + "Level": "5", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "10", + "Move": "MOVE_MUD_SHOT" + }, + { + "Level": "15", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "22", + "Move": "MOVE_DOUBLE_TEAM" + }, + { + "Level": "25", + "Move": "MOVE_TOXIC" + }, + { + "Level": "30", + "Move": "MOVE_WATER_PULSE" + }, + { + "Level": "32", + "Move": "MOVE_POISON_JAB" + }, + { + "Level": "36", + "Move": "MOVE_DRAGON_PULSE" + }, + { + "Level": "40", + "Move": "MOVE_SLUDGE_BOMB" + }, + { + "Level": "46", + "Move": "MOVE_HYDRO_PUMP" + }, + { + "Level": "52", + "Move": "MOVE_SLUDGE_WAVE" + } + ], + "TMMoves": [ + "MOVE_DRACO_METEOR", + "MOVE_ENDURE", + "MOVE_FLIP_TURN", + "MOVE_FOCUS_BLAST", + "MOVE_GUNK_SHOT", + "MOVE_HYPER_BEAM", + "MOVE_LIQUIDATION", + "MOVE_OUTRAGE", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_THUNDERBOLT", + "MOVE_TOXIC_SPIKES", + "MOVE_WATERFALL" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "CLAUNCHER": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "1", + "Move": "MOVE_SPLASH" + }, + { + "Level": "10", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "13", + "Move": "MOVE_AQUA_JET" + }, + { + "Level": "16", + "Move": "MOVE_MUD_SHOT" + }, + { + "Level": "24", + "Move": "MOVE_WATER_PULSE" + }, + { + "Level": "30", + "Move": "MOVE_SWORDS_DANCE" + }, + { + "Level": "34", + "Move": "MOVE_AURA_SPHERE" + }, + { + "Level": "40", + "Move": "MOVE_DARK_PULSE" + }, + { + "Level": "45", + "Move": "MOVE_BOUNCE" + }, + { + "Level": "48", + "Move": "MOVE_DRAGON_PULSE" + }, + { + "Level": "52", + "Move": "MOVE_HYDRO_PUMP" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_ENDURE", + "MOVE_FLASH_CANNON", + "MOVE_FLIP_TURN", + "MOVE_ICE_BEAM", + "MOVE_LIQUIDATION", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_U_TURN", + "MOVE_WATERFALL" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "CLAWITZER": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "1", + "Move": "MOVE_SPLASH" + }, + { + "Level": "10", + "Move": "MOVE_BUBBLE_BEAM" + }, + { + "Level": "13", + "Move": "MOVE_AQUA_JET" + }, + { + "Level": "16", + "Move": "MOVE_MUD_SHOT" + }, + { + "Level": "24", + "Move": "MOVE_WATER_PULSE" + }, + { + "Level": "30", + "Move": "MOVE_SWORDS_DANCE" + }, + { + "Level": "34", + "Move": "MOVE_AURA_SPHERE" + }, + { + "Level": "40", + "Move": "MOVE_DARK_PULSE" + }, + { + "Level": "45", + "Move": "MOVE_BOUNCE" + }, + { + "Level": "48", + "Move": "MOVE_DRAGON_PULSE" + }, + { + "Level": "52", + "Move": "MOVE_HYDRO_PUMP" + }, + { + "Level": "55", + "Move": "MOVE_FOCUS_BLAST" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_ENDURE", + "MOVE_FLASH_CANNON", + "MOVE_FLIP_TURN", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_LIQUIDATION", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_U_TURN", + "MOVE_WATERFALL" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "HELIOPTILE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_THUNDER_SHOCK" + }, + { + "Level": "1", + "Move": "MOVE_THUNDER_WAVE" + }, + { + "Level": "12", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "15", + "Move": "MOVE_SWIFT" + }, + { + "Level": "20", + "Move": "MOVE_PARABOLIC_CHARGE" + }, + { + "Level": "24", + "Move": "MOVE_BULLDOZE" + }, + { + "Level": "28", + "Move": "MOVE_VOLT_SWITCH" + }, + { + "Level": "30", + "Move": "MOVE_BREAKING_SWIPE" + }, + { + "Level": "32", + "Move": "MOVE_MORNING_SUN" + }, + { + "Level": "36", + "Move": "MOVE_THUNDERBOLT" + }, + { + "Level": "42", + "Move": "MOVE_CHARGE" + }, + { + "Level": "50", + "Move": "MOVE_THUNDER" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_DISCHARGE", + "MOVE_ELECTROWEB", + "MOVE_ENDURE", + "MOVE_LIGHT_SCREEN", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_U_TURN", + "MOVE_WILD_CHARGE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "HELIOLISK": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_THUNDER_SHOCK" + }, + { + "Level": "1", + "Move": "MOVE_THUNDER_WAVE" + }, + { + "Level": "12", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "15", + "Move": "MOVE_SWIFT" + }, + { + "Level": "20", + "Move": "MOVE_PARABOLIC_CHARGE" + }, + { + "Level": "24", + "Move": "MOVE_BULLDOZE" + }, + { + "Level": "28", + "Move": "MOVE_VOLT_SWITCH" + }, + { + "Level": "30", + "Move": "MOVE_BREAKING_SWIPE" + }, + { + "Level": "32", + "Move": "MOVE_MORNING_SUN" + }, + { + "Level": "36", + "Move": "MOVE_THUNDERBOLT" + }, + { + "Level": "42", + "Move": "MOVE_CHARGE" + }, + { + "Level": "50", + "Move": "MOVE_THUNDER" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_DISCHARGE", + "MOVE_DRAGON_PULSE", + "MOVE_ELECTROWEB", + "MOVE_ENDURE", + "MOVE_FIRE_PUNCH", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_IRON_TAIL", + "MOVE_LIGHT_SCREEN", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_THUNDER_PUNCH", + "MOVE_U_TURN", + "MOVE_WILD_CHARGE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "TYRUNT": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "4", + "Move": "MOVE_ROAR" + }, + { + "Level": "8", + "Move": "MOVE_ROCK_THROW" + }, + { + "Level": "12", + "Move": "MOVE_CHARM" + }, + { + "Level": "16", + "Move": "MOVE_BITE" + }, + { + "Level": "24", + "Move": "MOVE_ROCK_BLAST" + }, + { + "Level": "28", + "Move": "MOVE_ROCK_SLIDE" + }, + { + "Level": "32", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "36", + "Move": "MOVE_DRAGON_CLAW" + }, + { + "Level": "44", + "Move": "MOVE_EARTHQUAKE" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_BULLDOZE", + "MOVE_CLOSE_COMBAT", + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_DRACO_METEOR", + "MOVE_DRAGON_PULSE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FIRE_FANG", + "MOVE_HYPER_VOICE", + "MOVE_ICE_FANG", + "MOVE_IRON_DEFENSE", + "MOVE_IRON_HEAD", + "MOVE_OUTRAGE", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_ROCK_TOMB", + "MOVE_STEALTH_ROCK", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER_FANG", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "TYRANTRUM": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_BREAKING_SWIPE" + }, + { + "Level": "4", + "Move": "MOVE_ROAR" + }, + { + "Level": "8", + "Move": "MOVE_ROCK_THROW" + }, + { + "Level": "12", + "Move": "MOVE_CHARM" + }, + { + "Level": "16", + "Move": "MOVE_BITE" + }, + { + "Level": "24", + "Move": "MOVE_ROCK_BLAST" + }, + { + "Level": "28", + "Move": "MOVE_ROCK_SLIDE" + }, + { + "Level": "32", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "36", + "Move": "MOVE_DRAGON_CLAW" + }, + { + "Level": "44", + "Move": "MOVE_EARTHQUAKE" + }, + { + "Level": "52", + "Move": "MOVE_GIGA_IMPACT" + }, + { + "Level": "58", + "Move": "MOVE_HEAD_SMASH" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_BULLDOZE", + "MOVE_CLOSE_COMBAT", + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_DRACO_METEOR", + "MOVE_DRAGON_PULSE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FIRE_FANG", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_ICE_FANG", + "MOVE_IRON_DEFENSE", + "MOVE_IRON_HEAD", + "MOVE_IRON_TAIL", + "MOVE_OUTRAGE", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_ROCK_TOMB", + "MOVE_STEALTH_ROCK", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER_FANG", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "AMAURA": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "10", + "Move": "MOVE_ROCK_THROW" + }, + { + "Level": "12", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "16", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "20", + "Move": "MOVE_MIST" + }, + { + "Level": "24", + "Move": "MOVE_ROCK_BLAST" + }, + { + "Level": "28", + "Move": "MOVE_THUNDER_WAVE" + }, + { + "Level": "36", + "Move": "MOVE_FREEZE_DRY" + }, + { + "Level": "40", + "Move": "MOVE_ICE_BEAM" + }, + { + "Level": "44", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "52", + "Move": "MOVE_BLIZZARD" + }, + { + "Level": "56", + "Move": "MOVE_HYPER_BEAM" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BULLDOZE", + "MOVE_CALM_MIND", + "MOVE_DARK_PULSE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FLASH_CANNON", + "MOVE_HYPER_VOICE", + "MOVE_IRON_DEFENSE", + "MOVE_IRON_HEAD", + "MOVE_OUTRAGE", + "MOVE_PROTECT", + "MOVE_REFLECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SAFEGUARD", + "MOVE_STEALTH_ROCK", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_THUNDERBOLT", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "AURORUS": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "10", + "Move": "MOVE_ROCK_THROW" + }, + { + "Level": "12", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "16", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "20", + "Move": "MOVE_MIST" + }, + { + "Level": "24", + "Move": "MOVE_ROCK_BLAST" + }, + { + "Level": "28", + "Move": "MOVE_THUNDER_WAVE" + }, + { + "Level": "36", + "Move": "MOVE_FREEZE_DRY" + }, + { + "Level": "40", + "Move": "MOVE_ICE_BEAM" + }, + { + "Level": "44", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "52", + "Move": "MOVE_BLIZZARD" + }, + { + "Level": "56", + "Move": "MOVE_HYPER_BEAM" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BULLDOZE", + "MOVE_CALM_MIND", + "MOVE_DARK_PULSE", + "MOVE_EARTHQUAKE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FLASH_CANNON", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_VOICE", + "MOVE_IRON_DEFENSE", + "MOVE_IRON_HEAD", + "MOVE_IRON_TAIL", + "MOVE_OUTRAGE", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_REFLECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SAFEGUARD", + "MOVE_STEALTH_ROCK", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SYLVEON": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_BITE" + }, + { + "Level": "1", + "Move": "MOVE_GROWL" + }, + { + "Level": "10", + "Move": "MOVE_QUICK_ATTACK" + }, + { + "Level": "15", + "Move": "MOVE_DISARMING_VOICE" + }, + { + "Level": "25", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "30", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "35", + "Move": "MOVE_DAZZLING_GLEAM" + }, + { + "Level": "40", + "Move": "MOVE_HYPER_VOICE" + }, + { + "Level": "45", + "Move": "MOVE_FAKE_TEARS" + }, + { + "Level": "50", + "Move": "MOVE_MOONBLAST" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_CURSE", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_IRON_TAIL", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_ROAR", + "MOVE_SHADOW_BALL", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT" + ], + "TutorMoves": [ + "MOVE_CHARM", + "MOVE_DOUBLE_EDGE", + "MOVE_SWIFT", + "MOVE_TAKE_DOWN", + "MOVE_WISH" + ], + "EggMoves": [] + }, + "HAWLUCHA": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "4", + "Move": "MOVE_WING_ATTACK" + }, + { + "Level": "8", + "Move": "MOVE_DETECT" + }, + { + "Level": "12", + "Move": "MOVE_AERIAL_ACE" + }, + { + "Level": "20", + "Move": "MOVE_FEATHER_DANCE" + }, + { + "Level": "24", + "Move": "MOVE_BRICK_BREAK" + }, + { + "Level": "26", + "Move": "MOVE_LUNGE" + }, + { + "Level": "28", + "Move": "MOVE_BOUNCE" + }, + { + "Level": "32", + "Move": "MOVE_TAUNT" + }, + { + "Level": "36", + "Move": "MOVE_FLYING_PRESS" + }, + { + "Level": "40", + "Move": "MOVE_SWORDS_DANCE" + }, + { + "Level": "44", + "Move": "MOVE_AIR_SLASH" + }, + { + "Level": "52", + "Move": "MOVE_BRAVE_BIRD" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BODY_SLAM", + "MOVE_BULK_UP", + "MOVE_CLOSE_COMBAT", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_FIRE_PUNCH", + "MOVE_FLY", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_IRON_HEAD", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER_PUNCH", + "MOVE_U_TURN", + "MOVE_X_SCISSOR", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "DEDENNE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TAIL_WHIP" + }, + { + "Level": "1", + "Move": "MOVE_THUNDER_SHOCK" + }, + { + "Level": "1", + "Move": "MOVE_NUZZLE" + }, + { + "Level": "5", + "Move": "MOVE_CHARGE" + }, + { + "Level": "10", + "Move": "MOVE_CHARM" + }, + { + "Level": "15", + "Move": "MOVE_PARABOLIC_CHARGE" + }, + { + "Level": "20", + "Move": "MOVE_EERIE_IMPULSE" + }, + { + "Level": "25", + "Move": "MOVE_VOLT_SWITCH" + }, + { + "Level": "30", + "Move": "MOVE_PLAY_ROUGH" + }, + { + "Level": "35", + "Move": "MOVE_THUNDERBOLT" + }, + { + "Level": "40", + "Move": "MOVE_SUPER_FANG" + }, + { + "Level": "50", + "Move": "MOVE_THUNDER" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_DAZZLING_GLEAM", + "MOVE_DIG", + "MOVE_DISCHARGE", + "MOVE_ENDURE", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_LIGHT_SCREEN", + "MOVE_PROTECT", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE", + "MOVE_U_TURN", + "MOVE_WILD_CHARGE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "CARBINK": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_HARDEN" + }, + { + "Level": "12", + "Move": "MOVE_ROCK_THROW" + }, + { + "Level": "15", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "23", + "Move": "MOVE_DAZZLING_GLEAM" + }, + { + "Level": "25", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "28", + "Move": "MOVE_POWER_GEM" + }, + { + "Level": "30", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "32", + "Move": "MOVE_FLASH_CANNON" + }, + { + "Level": "35", + "Move": "MOVE_ROCK_SLIDE" + }, + { + "Level": "38", + "Move": "MOVE_STEALTH_ROCK" + }, + { + "Level": "45", + "Move": "MOVE_MOONBLAST" + }, + { + "Level": "52", + "Move": "MOVE_STONE_EDGE" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DOUBLE_EDGE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_IRON_HEAD", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_REFLECT", + "MOVE_ROCK_BLAST", + "MOVE_ROCK_TOMB", + "MOVE_SELF_DESTRUCT", + "MOVE_SPIKES", + "MOVE_SUBSTITUTE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "GOOMY": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_ABSORB" + }, + { + "Level": "5", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "8", + "Move": "MOVE_CHARM" + }, + { + "Level": "10", + "Move": "MOVE_DRAGON_BREATH" + }, + { + "Level": "15", + "Move": "MOVE_PROTECT" + }, + { + "Level": "18", + "Move": "MOVE_MUD_SHOT" + }, + { + "Level": "25", + "Move": "MOVE_WATER_PULSE" + }, + { + "Level": "30", + "Move": "MOVE_DRAGON_PULSE" + }, + { + "Level": "35", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "41", + "Move": "MOVE_CURSE" + }, + { + "Level": "45", + "Move": "MOVE_BODY_SLAM" + }, + { + "Level": "56", + "Move": "MOVE_SURF" + } + ], + "TMMoves": [ + "MOVE_DRACO_METEOR", + "MOVE_ENDURE", + "MOVE_OUTRAGE", + "MOVE_ROCK_SLIDE", + "MOVE_SLUDGE_BOMB", + "MOVE_SUBSTITUTE", + "MOVE_THUNDERBOLT", + "MOVE_TOXIC" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SLIGGOO": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_ABSORB" + }, + { + "Level": "1", + "Move": "MOVE_ACID_ARMOR" + }, + { + "Level": "5", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "8", + "Move": "MOVE_CHARM" + }, + { + "Level": "10", + "Move": "MOVE_DRAGON_BREATH" + }, + { + "Level": "15", + "Move": "MOVE_PROTECT" + }, + { + "Level": "18", + "Move": "MOVE_MUD_SHOT" + }, + { + "Level": "25", + "Move": "MOVE_WATER_PULSE" + }, + { + "Level": "30", + "Move": "MOVE_DRAGON_PULSE" + }, + { + "Level": "35", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "41", + "Move": "MOVE_CURSE" + }, + { + "Level": "45", + "Move": "MOVE_BODY_SLAM" + }, + { + "Level": "56", + "Move": "MOVE_SURF" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_DRACO_METEOR", + "MOVE_ENDURE", + "MOVE_ICE_BEAM", + "MOVE_OUTRAGE", + "MOVE_ROCK_SLIDE", + "MOVE_SLUDGE_BOMB", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_TOXIC" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "SLIGGOO_HISUI": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_ABSORB" + }, + { + "Level": "1", + "Move": "MOVE_ACID_ARMOR" + }, + { + "Level": "5", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "8", + "Move": "MOVE_CHARM" + }, + { + "Level": "10", + "Move": "MOVE_DRAGON_BREATH" + }, + { + "Level": "15", + "Move": "MOVE_PROTECT" + }, + { + "Level": "18", + "Move": "MOVE_MUD_SHOT" + }, + { + "Level": "25", + "Move": "MOVE_WATER_PULSE" + }, + { + "Level": "30", + "Move": "MOVE_DRAGON_PULSE" + }, + { + "Level": "35", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "41", + "Move": "MOVE_CURSE" + }, + { + "Level": "45", + "Move": "MOVE_BODY_SLAM" + }, + { + "Level": "56", + "Move": "MOVE_SURF" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_DRACO_METEOR", + "MOVE_ENDURE", + "MOVE_ICE_BEAM", + "MOVE_IRON_HEAD", + "MOVE_OUTRAGE", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SLUDGE_BOMB", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_TOXIC" + ], + "TutorMoves": [ + "MOVE_IRON_DEFENSE" + ], + "EggMoves": [] + }, + "GOODRA": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_ABSORB" + }, + { + "Level": "1", + "Move": "MOVE_ACID_ARMOR" + }, + { + "Level": "1", + "Move": "MOVE_BREAKING_SWIPE" + }, + { + "Level": "5", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "8", + "Move": "MOVE_CHARM" + }, + { + "Level": "10", + "Move": "MOVE_DRAGON_BREATH" + }, + { + "Level": "15", + "Move": "MOVE_PROTECT" + }, + { + "Level": "18", + "Move": "MOVE_MUD_SHOT" + }, + { + "Level": "25", + "Move": "MOVE_WATER_PULSE" + }, + { + "Level": "30", + "Move": "MOVE_DRAGON_PULSE" + }, + { + "Level": "35", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "41", + "Move": "MOVE_CURSE" + }, + { + "Level": "45", + "Move": "MOVE_BODY_SLAM" + }, + { + "Level": "56", + "Move": "MOVE_SURF" + }, + { + "Level": "58", + "Move": "MOVE_POWER_WHIP" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BULLDOZE", + "MOVE_DRACO_METEOR", + "MOVE_DRAGON_CLAW", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_PUNCH", + "MOVE_FLAMETHROWER", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_DRAIN", + "MOVE_GIGA_IMPACT", + "MOVE_HYDRO_PUMP", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_KNOCK_OFF", + "MOVE_OUTRAGE", + "MOVE_ROCK_SLIDE", + "MOVE_SLUDGE_BOMB", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_PUNCH", + "MOVE_TOXIC" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "GOODRA_HISUI": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_ABSORB" + }, + { + "Level": "1", + "Move": "MOVE_ACID_ARMOR" + }, + { + "Level": "1", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "5", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "8", + "Move": "MOVE_CHARM" + }, + { + "Level": "10", + "Move": "MOVE_DRAGON_BREATH" + }, + { + "Level": "15", + "Move": "MOVE_PROTECT" + }, + { + "Level": "18", + "Move": "MOVE_MUD_SHOT" + }, + { + "Level": "25", + "Move": "MOVE_WATER_PULSE" + }, + { + "Level": "30", + "Move": "MOVE_DRAGON_PULSE" + }, + { + "Level": "35", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "41", + "Move": "MOVE_CURSE" + }, + { + "Level": "44", + "Move": "MOVE_IRON_TAIL" + }, + { + "Level": "45", + "Move": "MOVE_BODY_SLAM" + }, + { + "Level": "55", + "Move": "MOVE_HEAVY_SLAM" + }, + { + "Level": "56", + "Move": "MOVE_SURF" + }, + { + "Level": "58", + "Move": "MOVE_SLUDGE_WAVE" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_BULLDOZE", + "MOVE_DRACO_METEOR", + "MOVE_DRAGON_CLAW", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_PUNCH", + "MOVE_FLAMETHROWER", + "MOVE_FLASH_CANNON", + "MOVE_GIGA_IMPACT", + "MOVE_HYDRO_PUMP", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_IRON_HEAD", + "MOVE_KNOCK_OFF", + "MOVE_OUTRAGE", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SLUDGE_BOMB", + "MOVE_SUBSTITUTE", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_PUNCH", + "MOVE_TOXIC" + ], + "TutorMoves": [ + "MOVE_BREAKING_SWIPE" + ], + "EggMoves": [] + }, + "KLEFKI": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "8", + "Move": "MOVE_FAIRY_WIND" + }, + { + "Level": "13", + "Move": "MOVE_METAL_CLAW" + }, + { + "Level": "20", + "Move": "MOVE_METAL_SOUND" + }, + { + "Level": "24", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "36", + "Move": "MOVE_FLASH_CANNON" + }, + { + "Level": "40", + "Move": "MOVE_PLAY_ROUGH" + }, + { + "Level": "44", + "Move": "MOVE_DAZZLING_GLEAM" + }, + { + "Level": "52", + "Move": "MOVE_HEAL_BLOCK" + } + ], + "TMMoves": [ + "MOVE_CALM_MIND", + "MOVE_DOUBLE_TEAM", + "MOVE_ENDURE", + "MOVE_FUTURE_SIGHT", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_IRON_DEFENSE", + "MOVE_LIGHT_SCREEN", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_SPIKES", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER_WAVE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "PHANTUMP": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "8", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "12", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "16", + "Move": "MOVE_WILL_O_WISP" + }, + { + "Level": "24", + "Move": "MOVE_GROWTH" + }, + { + "Level": "28", + "Move": "MOVE_HORN_LEECH" + }, + { + "Level": "32", + "Move": "MOVE_FORESTS_CURSE" + }, + { + "Level": "36", + "Move": "MOVE_PHANTOM_FORCE" + }, + { + "Level": "44", + "Move": "MOVE_WOOD_HAMMER" + }, + { + "Level": "50", + "Move": "MOVE_CURSE" + } + ], + "TMMoves": [ + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_GIGA_DRAIN", + "MOVE_HEAL_BLOCK", + "MOVE_MAGICAL_LEAF", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_REFLECT", + "MOVE_ROCK_SLIDE", + "MOVE_SAFEGUARD", + "MOVE_SHADOW_BALL", + "MOVE_SHADOW_CLAW", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "TREVENANT": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "8", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "12", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "16", + "Move": "MOVE_WILL_O_WISP" + }, + { + "Level": "24", + "Move": "MOVE_GROWTH" + }, + { + "Level": "28", + "Move": "MOVE_HORN_LEECH" + }, + { + "Level": "30", + "Move": "MOVE_SHADOW_CLAW" + }, + { + "Level": "32", + "Move": "MOVE_FORESTS_CURSE" + }, + { + "Level": "36", + "Move": "MOVE_PHANTOM_FORCE" + }, + { + "Level": "44", + "Move": "MOVE_WOOD_HAMMER" + }, + { + "Level": "50", + "Move": "MOVE_CURSE" + } + ], + "TMMoves": [ + "MOVE_CALM_MIND", + "MOVE_DARK_PULSE", + "MOVE_DIG", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_DRAIN", + "MOVE_GIGA_IMPACT", + "MOVE_HEAL_BLOCK", + "MOVE_HYPER_BEAM", + "MOVE_MAGICAL_LEAF", + "MOVE_POISON_JAB", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_REFLECT", + "MOVE_ROCK_SLIDE", + "MOVE_SAFEGUARD", + "MOVE_SHADOW_BALL", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_X_SCISSOR" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "PUMPKABOO": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TRICK_OR_TREAT" + }, + { + "Level": "4", + "Move": "MOVE_SHADOW_SNEAK" + }, + { + "Level": "8", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "12", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "16", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "20", + "Move": "MOVE_BULLET_SEED" + }, + { + "Level": "24", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "27", + "Move": "MOVE_HYPNOSIS" + }, + { + "Level": "36", + "Move": "MOVE_SHADOW_BALL" + }, + { + "Level": "40", + "Move": "MOVE_MYSTICAL_FIRE" + }, + { + "Level": "46", + "Move": "MOVE_POWER_WHIP" + } + ], + "TMMoves": [ + "MOVE_CURSE", + "MOVE_DARK_PULSE", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_SPIN", + "MOVE_FLAMETHROWER", + "MOVE_GIGA_DRAIN", + "MOVE_LIGHT_SCREEN", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_ROCK_SLIDE", + "MOVE_SAFEGUARD", + "MOVE_SELF_DESTRUCT", + "MOVE_SLUDGE_BOMB", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_WILL_O_WISP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "GOURGEIST": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_TRICK_OR_TREAT" + }, + { + "Level": "1", + "Move": "MOVE_MOONBLAST" + }, + { + "Level": "4", + "Move": "MOVE_SHADOW_SNEAK" + }, + { + "Level": "8", + "Move": "MOVE_CONFUSE_RAY" + }, + { + "Level": "12", + "Move": "MOVE_RAZOR_LEAF" + }, + { + "Level": "16", + "Move": "MOVE_LEECH_SEED" + }, + { + "Level": "20", + "Move": "MOVE_BULLET_SEED" + }, + { + "Level": "24", + "Move": "MOVE_BRUTAL_SWING" + }, + { + "Level": "27", + "Move": "MOVE_HYPNOSIS" + }, + { + "Level": "36", + "Move": "MOVE_SHADOW_BALL" + }, + { + "Level": "40", + "Move": "MOVE_MYSTICAL_FIRE" + }, + { + "Level": "44", + "Move": "MOVE_PHANTOM_FORCE" + }, + { + "Level": "46", + "Move": "MOVE_POWER_WHIP" + }, + { + "Level": "52", + "Move": "MOVE_EXPLOSION" + } + ], + "TMMoves": [ + "MOVE_CURSE", + "MOVE_DARK_PULSE", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_SPIN", + "MOVE_FLAMETHROWER", + "MOVE_GIGA_DRAIN", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_LIGHT_SCREEN", + "MOVE_NASTY_PLOT", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_ROCK_SLIDE", + "MOVE_SAFEGUARD", + "MOVE_SELF_DESTRUCT", + "MOVE_SHADOW_CLAW", + "MOVE_SLUDGE_BOMB", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_WILL_O_WISP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "BERGMITE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_HARDEN" + }, + { + "Level": "3", + "Move": "MOVE_TACKLE" + }, + { + "Level": "9", + "Move": "MOVE_CURSE" + }, + { + "Level": "12", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "15", + "Move": "MOVE_PROTECT" + }, + { + "Level": "21", + "Move": "MOVE_BITE" + }, + { + "Level": "24", + "Move": "MOVE_ICE_FANG" + }, + { + "Level": "27", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "30", + "Move": "MOVE_RECOVER" + }, + { + "Level": "33", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "36", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "42", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "54", + "Move": "MOVE_BLIZZARD" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BULLDOZE", + "MOVE_ENDURE", + "MOVE_ICE_BEAM", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "AVALUGG": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_HARDEN" + }, + { + "Level": "1", + "Move": "MOVE_HEAVY_SLAM" + }, + { + "Level": "3", + "Move": "MOVE_TACKLE" + }, + { + "Level": "9", + "Move": "MOVE_CURSE" + }, + { + "Level": "12", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "15", + "Move": "MOVE_PROTECT" + }, + { + "Level": "21", + "Move": "MOVE_BITE" + }, + { + "Level": "24", + "Move": "MOVE_ICE_FANG" + }, + { + "Level": "27", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "30", + "Move": "MOVE_RECOVER" + }, + { + "Level": "33", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "36", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "39", + "Move": "MOVE_ICICLE_CRASH" + }, + { + "Level": "42", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "54", + "Move": "MOVE_BLIZZARD" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BULLDOZE", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FLASH_CANNON", + "MOVE_GIGA_IMPACT", + "MOVE_HYDRO_PUMP", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SURF" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "AVALUGG_HISUI": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_HARDEN" + }, + { + "Level": "1", + "Move": "MOVE_HEAVY_SLAM" + }, + { + "Level": "3", + "Move": "MOVE_TACKLE" + }, + { + "Level": "9", + "Move": "MOVE_CURSE" + }, + { + "Level": "12", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "15", + "Move": "MOVE_PROTECT" + }, + { + "Level": "21", + "Move": "MOVE_BITE" + }, + { + "Level": "24", + "Move": "MOVE_ICE_FANG" + }, + { + "Level": "27", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "30", + "Move": "MOVE_RECOVER" + }, + { + "Level": "33", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "36", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "39", + "Move": "MOVE_ROCK_BLAST" + }, + { + "Level": "42", + "Move": "MOVE_DOUBLE_EDGE" + }, + { + "Level": "46", + "Move": "MOVE_STONE_EDGE" + }, + { + "Level": "48", + "Move": "MOVE_IRON_HEAD" + }, + { + "Level": "54", + "Move": "MOVE_BLIZZARD" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BULLDOZE", + "MOVE_DIG", + "MOVE_EARTHQUAKE", + "MOVE_ENDURE", + "MOVE_FLASH_CANNON", + "MOVE_GIGA_IMPACT", + "MOVE_HYDRO_PUMP", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_STEALTH_ROCK", + "MOVE_SUBSTITUTE", + "MOVE_SURF" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "NOIBAT": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_ABSORB" + }, + { + "Level": "4", + "Move": "MOVE_GUST" + }, + { + "Level": "8", + "Move": "MOVE_SUPERSONIC" + }, + { + "Level": "12", + "Move": "MOVE_DOUBLE_TEAM" + }, + { + "Level": "16", + "Move": "MOVE_WING_ATTACK" + }, + { + "Level": "20", + "Move": "MOVE_BITE" + }, + { + "Level": "24", + "Move": "MOVE_LEECH_LIFE" + }, + { + "Level": "28", + "Move": "MOVE_WHIRLWIND" + }, + { + "Level": "32", + "Move": "MOVE_SUPER_FANG" + }, + { + "Level": "36", + "Move": "MOVE_AIR_SLASH" + }, + { + "Level": "40", + "Move": "MOVE_SCREECH" + }, + { + "Level": "44", + "Move": "MOVE_HURRICANE" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_AGILITY", + "MOVE_BRICK_BREAK", + "MOVE_DARK_PULSE", + "MOVE_DRACO_METEOR", + "MOVE_DRAGON_CLAW", + "MOVE_DRAGON_PULSE", + "MOVE_ENDURE", + "MOVE_FLY", + "MOVE_HEAT_WAVE", + "MOVE_HYPER_VOICE", + "MOVE_OUTRAGE", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_SHADOW_BALL", + "MOVE_SHADOW_CLAW", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_U_TURN", + "MOVE_WILD_CHARGE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "NOIVERN": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_ABSORB" + }, + { + "Level": "1", + "Move": "MOVE_MOONLIGHT" + }, + { + "Level": "4", + "Move": "MOVE_GUST" + }, + { + "Level": "8", + "Move": "MOVE_SUPERSONIC" + }, + { + "Level": "12", + "Move": "MOVE_DOUBLE_TEAM" + }, + { + "Level": "16", + "Move": "MOVE_WING_ATTACK" + }, + { + "Level": "20", + "Move": "MOVE_BITE" + }, + { + "Level": "24", + "Move": "MOVE_LEECH_LIFE" + }, + { + "Level": "28", + "Move": "MOVE_WHIRLWIND" + }, + { + "Level": "32", + "Move": "MOVE_SUPER_FANG" + }, + { + "Level": "36", + "Move": "MOVE_AIR_SLASH" + }, + { + "Level": "40", + "Move": "MOVE_SCREECH" + }, + { + "Level": "44", + "Move": "MOVE_HURRICANE" + }, + { + "Level": "52", + "Move": "MOVE_BOOMBURST" + } + ], + "TMMoves": [ + "MOVE_AERIAL_ACE", + "MOVE_AGILITY", + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_DARK_PULSE", + "MOVE_DRACO_METEOR", + "MOVE_DRAGON_CLAW", + "MOVE_ENDURE", + "MOVE_FLAMETHROWER", + "MOVE_FLY", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HEAT_WAVE", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_IRON_TAIL", + "MOVE_OUTRAGE", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_SHADOW_BALL", + "MOVE_SHADOW_CLAW", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAUNT", + "MOVE_U_TURN", + "MOVE_WATER_PULSE", + "MOVE_WILD_CHARGE" + ], + "TutorMoves": [ + "MOVE_DRAGON_PULSE" + ], + "EggMoves": [] + }, + "XERNEAS": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "5", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "20", + "Move": "MOVE_NIGHT_SLASH" + }, + { + "Level": "35", + "Move": "MOVE_HORN_LEECH" + }, + { + "Level": "50", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "55", + "Move": "MOVE_GEOMANCY" + }, + { + "Level": "60", + "Move": "MOVE_MOONBLAST" + }, + { + "Level": "70", + "Move": "MOVE_MEGAHORN" + }, + { + "Level": "75", + "Move": "MOVE_CLOSE_COMBAT" + }, + { + "Level": "80", + "Move": "MOVE_OUTRAGE" + }, + { + "Level": "85", + "Move": "MOVE_GIGA_IMPACT" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DAZZLING_GLEAM", + "MOVE_ENDURE", + "MOVE_FLASH_CANNON", + "MOVE_FOCUS_BLAST", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_ROCK_SLIDE", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_WAVE", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "YVELTAL": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_GUST" + }, + { + "Level": "1", + "Move": "MOVE_DOUBLE_TEAM" + }, + { + "Level": "5", + "Move": "MOVE_TAUNT" + }, + { + "Level": "10", + "Move": "MOVE_SNARL" + }, + { + "Level": "35", + "Move": "MOVE_AIR_SLASH" + }, + { + "Level": "40", + "Move": "MOVE_DARK_PULSE" + }, + { + "Level": "45", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "55", + "Move": "MOVE_OBLIVION_WING" + }, + { + "Level": "60", + "Move": "MOVE_PHANTOM_FORCE" + }, + { + "Level": "65", + "Move": "MOVE_DRAGON_RUSH" + }, + { + "Level": "70", + "Move": "MOVE_HURRICANE" + }, + { + "Level": "75", + "Move": "MOVE_FOCUS_BLAST" + }, + { + "Level": "85", + "Move": "MOVE_HYPER_BEAM" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_DRAGON_CLAW", + "MOVE_ENDURE", + "MOVE_FLY", + "MOVE_GIGA_IMPACT", + "MOVE_HEAL_BLOCK", + "MOVE_HEAT_WAVE", + "MOVE_HYPER_VOICE", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_SHADOW_BALL", + "MOVE_SHADOW_CLAW", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_U_TURN", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "ZYGARDE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_BITE" + }, + { + "Level": "1", + "Move": "MOVE_DRAGON_BREATH" + }, + { + "Level": "1", + "Move": "MOVE_BULLDOZE" + }, + { + "Level": "1", + "Move": "MOVE_THOUSAND_ARROWS" + }, + { + "Level": "1", + "Move": "MOVE_THOUSAND_WAVES" + }, + { + "Level": "1", + "Move": "MOVE_LANDS_WRATH" + }, + { + "Level": "1", + "Move": "MOVE_CORE_ENFORCER" + }, + { + "Level": "8", + "Move": "MOVE_HAZE" + }, + { + "Level": "16", + "Move": "MOVE_DIG" + }, + { + "Level": "24", + "Move": "MOVE_SAFEGUARD" + }, + { + "Level": "32", + "Move": "MOVE_CRUNCH" + }, + { + "Level": "40", + "Move": "MOVE_DRAGON_PULSE" + }, + { + "Level": "44", + "Move": "MOVE_BREAKING_SWIPE" + }, + { + "Level": "56", + "Move": "MOVE_GLARE" + }, + { + "Level": "60", + "Move": "MOVE_SLUDGE_WAVE" + }, + { + "Level": "70", + "Move": "MOVE_EXTREME_SPEED" + }, + { + "Level": "80", + "Move": "MOVE_EARTHQUAKE" + }, + { + "Level": "88", + "Move": "MOVE_OUTRAGE" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_DRACO_METEOR", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_HYPER_VOICE", + "MOVE_IRON_HEAD", + "MOVE_PROTECT", + "MOVE_ROCK_SLIDE", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "DIANCIE": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_ROCK_THROW" + }, + { + "Level": "1", + "Move": "MOVE_HARDEN" + }, + { + "Level": "1", + "Move": "MOVE_DIAMOND_STORM" + }, + { + "Level": "7", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "14", + "Move": "MOVE_FAKE_TEARS" + }, + { + "Level": "21", + "Move": "MOVE_DRAINING_KISS" + }, + { + "Level": "33", + "Move": "MOVE_ROCK_SLIDE" + }, + { + "Level": "42", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "44", + "Move": "MOVE_POWER_GEM" + }, + { + "Level": "46", + "Move": "MOVE_STEALTH_ROCK" + }, + { + "Level": "50", + "Move": "MOVE_STONE_EDGE" + }, + { + "Level": "54", + "Move": "MOVE_MOONBLAST" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_CALM_MIND", + "MOVE_DAZZLING_GLEAM", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FLASH_CANNON", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_IRON_DEFENSE", + "MOVE_METRONOME", + "MOVE_PLAY_ROUGH", + "MOVE_PROTECT", + "MOVE_PSYCHIC", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_ROCK_TOMB", + "MOVE_SAFEGUARD", + "MOVE_SPIKES", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "HOOPA_CONFINED": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_CONFUSION" + }, + { + "Level": "15", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "19", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "22", + "Move": "MOVE_KNOCK_OFF" + }, + { + "Level": "35", + "Move": "MOVE_PHANTOM_FORCE" + }, + { + "Level": "38", + "Move": "MOVE_ZEN_HEADBUTT" + }, + { + "Level": "42", + "Move": "MOVE_SHADOW_BALL" + }, + { + "Level": "45", + "Move": "MOVE_NASTY_PLOT" + }, + { + "Level": "52", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "60", + "Move": "MOVE_HYPERSPACE_HOLE" + } + ], + "TMMoves": [ + "MOVE_BRICK_BREAK", + "MOVE_CALM_MIND", + "MOVE_DARK_PULSE", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FIRE_PUNCH", + "MOVE_FOCUS_BLAST", + "MOVE_FUTURE_SIGHT", + "MOVE_GIGA_IMPACT", + "MOVE_GUNK_SHOT", + "MOVE_HEAL_BLOCK", + "MOVE_HYPER_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_PROTECT", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_ROCK_TOMB", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAKE_DOWN", + "MOVE_TAUNT", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "HOOPA_UNBOUND": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_CONFUSION" + }, + { + "Level": "15", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "19", + "Move": "MOVE_PSYBEAM" + }, + { + "Level": "22", + "Move": "MOVE_KNOCK_OFF" + }, + { + "Level": "35", + "Move": "MOVE_PHANTOM_FORCE" + }, + { + "Level": "38", + "Move": "MOVE_ZEN_HEADBUTT" + }, + { + "Level": "42", + "Move": "MOVE_SHADOW_BALL" + }, + { + "Level": "45", + "Move": "MOVE_NASTY_PLOT" + }, + { + "Level": "52", + "Move": "MOVE_PSYCHIC" + }, + { + "Level": "60", + "Move": "MOVE_HYPERSPACE_FURY" + } + ], + "TMMoves": [ + "MOVE_BRICK_BREAK", + "MOVE_CALM_MIND", + "MOVE_DARK_PULSE", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FIRE_PUNCH", + "MOVE_FOCUS_BLAST", + "MOVE_FUTURE_SIGHT", + "MOVE_GIGA_IMPACT", + "MOVE_GUNK_SHOT", + "MOVE_HEAL_BLOCK", + "MOVE_HYPER_BEAM", + "MOVE_ICE_PUNCH", + "MOVE_PROTECT", + "MOVE_PSYSHOCK", + "MOVE_REFLECT", + "MOVE_ROCK_TOMB", + "MOVE_SUBSTITUTE", + "MOVE_SWIFT", + "MOVE_TAKE_DOWN", + "MOVE_TAUNT", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_PUNCH", + "MOVE_THUNDER_WAVE" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "VOLCANION": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_WATER_GUN" + }, + { + "Level": "1", + "Move": "MOVE_FIRE_SPIN" + }, + { + "Level": "1", + "Move": "MOVE_STEAM_ERUPTION" + }, + { + "Level": "6", + "Move": "MOVE_LEER" + }, + { + "Level": "18", + "Move": "MOVE_MUD_SHOT" + }, + { + "Level": "24", + "Move": "MOVE_WATER_PULSE" + }, + { + "Level": "30", + "Move": "MOVE_HEAT_CRASH" + }, + { + "Level": "33", + "Move": "MOVE_TAKE_DOWN" + }, + { + "Level": "40", + "Move": "MOVE_MIST" + }, + { + "Level": "40", + "Move": "MOVE_HAZE" + }, + { + "Level": "42", + "Move": "MOVE_HEAVY_SLAM" + }, + { + "Level": "46", + "Move": "MOVE_HYDRO_PUMP" + }, + { + "Level": "50", + "Move": "MOVE_FLARE_BLITZ" + }, + { + "Level": "54", + "Move": "MOVE_OVERHEAT" + }, + { + "Level": "60", + "Move": "MOVE_EXPLOSION" + } + ], + "TMMoves": [ + "MOVE_BODY_SLAM", + "MOVE_BRICK_BREAK", + "MOVE_DIG", + "MOVE_EARTHQUAKE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_FIRE_BLAST", + "MOVE_FIRE_FANG", + "MOVE_FLAMETHROWER", + "MOVE_FLASH_CANNON", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HEAT_WAVE", + "MOVE_HYPER_BEAM", + "MOVE_LIQUIDATION", + "MOVE_PROTECT", + "MOVE_ROAR", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SELF_DESTRUCT", + "MOVE_SLUDGE_BOMB", + "MOVE_SOLAR_BEAM", + "MOVE_STONE_EDGE", + "MOVE_SUBSTITUTE", + "MOVE_TAUNT", + "MOVE_THUNDER_FANG", + "MOVE_WILD_CHARGE", + "MOVE_WILL_O_WISP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "DRAMPA": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_LEER" + }, + { + "Level": "1", + "Move": "MOVE_TWISTER" + }, + { + "Level": "5", + "Move": "MOVE_PROTECT" + }, + { + "Level": "10", + "Move": "MOVE_GLARE" + }, + { + "Level": "15", + "Move": "MOVE_SAFEGUARD" + }, + { + "Level": "20", + "Move": "MOVE_DRAGON_BREATH" + }, + { + "Level": "25", + "Move": "MOVE_ICY_WIND" + }, + { + "Level": "28", + "Move": "MOVE_BODY_SLAM" + }, + { + "Level": "32", + "Move": "MOVE_AMNESIA" + }, + { + "Level": "35", + "Move": "MOVE_DRAGON_PULSE" + }, + { + "Level": "40", + "Move": "MOVE_LIGHT_SCREEN" + }, + { + "Level": "44", + "Move": "MOVE_FLY" + }, + { + "Level": "50", + "Move": "MOVE_HYPER_VOICE" + }, + { + "Level": "54", + "Move": "MOVE_OUTRAGE" + }, + { + "Level": "56", + "Move": "MOVE_DRAGON_RUSH" + } + ], + "TMMoves": [ + "MOVE_BLIZZARD", + "MOVE_CALM_MIND", + "MOVE_DRACO_METEOR", + "MOVE_DRAGON_CLAW", + "MOVE_EARTHQUAKE", + "MOVE_EARTH_POWER", + "MOVE_ENDURE", + "MOVE_ENERGY_BALL", + "MOVE_FIRE_BLAST", + "MOVE_FLAMETHROWER", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HEAT_WAVE", + "MOVE_HURRICANE", + "MOVE_HYDRO_PUMP", + "MOVE_HYPER_BEAM", + "MOVE_ICE_BEAM", + "MOVE_PLAY_ROUGH", + "MOVE_ROCK_SLIDE", + "MOVE_SHADOW_BALL", + "MOVE_SHADOW_CLAW", + "MOVE_SOLAR_BEAM", + "MOVE_SUBSTITUTE", + "MOVE_SURF", + "MOVE_SWIFT", + "MOVE_THUNDER", + "MOVE_THUNDERBOLT", + "MOVE_THUNDER_WAVE", + "MOVE_WHIRLWIND", + "MOVE_WORK_UP" + ], + "TutorMoves": [], + "EggMoves": [] + }, + "FALINKS": { + "LevelMoves": [ + { + "Level": "1", + "Move": "MOVE_TACKLE" + }, + { + "Level": "1", + "Move": "MOVE_PROTECT" + }, + { + "Level": "5", + "Move": "MOVE_ROCK_SMASH" + }, + { + "Level": "10", + "Move": "MOVE_FOCUS_ENERGY" + }, + { + "Level": "15", + "Move": "MOVE_HEADBUTT" + }, + { + "Level": "20", + "Move": "MOVE_BULK_UP" + }, + { + "Level": "25", + "Move": "MOVE_ENDURE" + }, + { + "Level": "32", + "Move": "MOVE_IRON_HEAD" + }, + { + "Level": "36", + "Move": "MOVE_BRICK_BREAK" + }, + { + "Level": "40", + "Move": "MOVE_NO_RETREAT" + }, + { + "Level": "43", + "Move": "MOVE_IRON_DEFENSE" + }, + { + "Level": "48", + "Move": "MOVE_CLOSE_COMBAT" + }, + { + "Level": "52", + "Move": "MOVE_MEGAHORN" + } + ], + "TMMoves": [ + "MOVE_AGILITY", + "MOVE_BODY_SLAM", + "MOVE_FOCUS_BLAST", + "MOVE_GIGA_IMPACT", + "MOVE_HYPER_BEAM", + "MOVE_KNOCK_OFF", + "MOVE_POISON_JAB", + "MOVE_ROCK_SLIDE", + "MOVE_ROCK_TOMB", + "MOVE_SUBSTITUTE", + "MOVE_SWORDS_DANCE", + "MOVE_ZEN_HEADBUTT" + ], + "TutorMoves": [], + "EggMoves": [] + } +} \ No newline at end of file