From 30ff784f2cca1294bbec517d8b6ce82361023be2 Mon Sep 17 00:00:00 2001 From: Kris Johnson <11083252+KrisXV@users.noreply.github.com> Date: Fri, 12 Dec 2025 00:04:05 -0700 Subject: [PATCH] Z-A: Add DLC Pokemon (#11613) * Z-A: Add DLC Pokemon * za ou learnsets * zaou changes * skip test 4 now * dfadasas --- config/formats.ts | 4 +- data/aliases.ts | 3 +- data/formats-data.ts | 92 + data/items.ts | 268 + data/mods/gen8/rulesets.ts | 6 +- data/mods/gen9legends/formats-data.ts | 490 +- data/mods/gen9legends/pokedex.ts | 4 - data/mods/gen9legendsou/abilities.ts | 140 - data/mods/gen9legendsou/formats-data.ts | 559 ++ data/mods/gen9legendsou/items.ts | 20 - data/mods/gen9legendsou/learnsets.ts | 5059 +++++++++++------ data/mods/gen9legendsou/moves.ts | 65 +- data/mods/gen9legendsou/pokedex.ts | 106 +- data/mods/gen9legendsou/scripts.ts | 153 +- data/mods/gen9ssb/scripts.ts | 19 +- data/mods/mixandmega/scripts.ts | 8 +- data/pokedex.ts | 421 +- data/random-battles/gen7/teams.ts | 3 +- data/rulesets.ts | 40 +- server/chat-plugins/othermetas.ts | 8 +- server/chat-plugins/randombattles/ssb.tsx | 5 +- .../chat-plugins/randombattles/winrates.tsx | 2 +- sim/battle-actions.ts | 17 +- sim/dex-items.ts | 4 +- sim/dex-species.ts | 2 +- sim/team-validator.ts | 9 +- test/random-battles/tools.js | 2 +- test/sim/abilities/commander.js | 2 +- test/sim/data.js | 20 +- 29 files changed, 5073 insertions(+), 2458 deletions(-) delete mode 100644 data/mods/gen9legendsou/abilities.ts diff --git a/config/formats.ts b/config/formats.ts index af943e27b9..016d41f857 100644 --- a/config/formats.ts +++ b/config/formats.ts @@ -3448,8 +3448,8 @@ export const Formats: import('../sim/dex-formats').FormatList = [ } const item = this.dex.items.get(set.item); if (set.item && item.megaStone) { - const megaSpecies = this.dex.species.get(item.megaStone); - if (species.baseSpecies === item.megaEvolves && megaSpecies.bst > 625) { + const megaSpecies = this.dex.species.get(Array.isArray(item.megaStone) ? item.megaStone[0] : item.megaStone); + if (item.megaEvolves?.includes(species.baseSpecies) && megaSpecies.bst > 625) { return [ `${set.name || set.species}'s item ${item.name} is banned.`, `(Pok\u00e9mon with a BST higher than 625 are banned)`, ]; diff --git a/data/aliases.ts b/data/aliases.ts index 63256aea9c..77126c6a38 100644 --- a/data/aliases.ts +++ b/data/aliases.ts @@ -723,8 +723,7 @@ export const Aliases: import('../sim/dex').AliasesTable = { sawsbuckautumn: "Sawsbuck", sawsbuckwinter: "Sawsbuck", tatsugiricurly: "Tatsugiri", - tatsugiridroopy: "Tatsugiri", - tatsugiristretchy: "Tatsugiri", + tatsugirimega: "Tatsugiri-Curly-Mega", unowna: "Unown", unownb: "Unown", unownc: "Unown", diff --git a/data/formats-data.ts b/data/formats-data.ts index 00a1eb70cf..fa9825a28d 100644 --- a/data/formats-data.ts +++ b/data/formats-data.ts @@ -259,6 +259,14 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = doublesTier: "(DUU)", natDexTier: "RU", }, + raichumegax: { + isNonstandard: "Future", + tier: "Illegal", + }, + raichumegay: { + isNonstandard: "Future", + tier: "Illegal", + }, sandshrew: { tier: "LC", }, @@ -2293,6 +2301,10 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = doublesTier: "(DUU)", natDexTier: "RU", }, + chimechomega: { + isNonstandard: "Future", + tier: "Illegal", + }, absol: { isNonstandard: "Past", tier: "Illegal", @@ -2303,6 +2315,10 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = tier: "Illegal", natDexTier: "RU", }, + absolmegaz: { + isNonstandard: "Future", + tier: "Illegal", + }, snorunt: { tier: "LC", }, @@ -2531,6 +2547,10 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = doublesTier: "(DUU)", natDexTier: "RU", }, + staraptormega: { + isNonstandard: "Future", + tier: "Illegal", + }, bidoof: { isNonstandard: "Past", tier: "Illegal", @@ -2719,6 +2739,10 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = tier: "Illegal", natDexTier: "(OU)", }, + garchompmegaz: { + isNonstandard: "Future", + tier: "Illegal", + }, riolu: { tier: "LC", }, @@ -2732,6 +2756,10 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = tier: "Illegal", natDexTier: "Uber", }, + lucariomegaz: { + isNonstandard: "Future", + tier: "Illegal", + }, hippopotas: { tier: "LC", }, @@ -2854,6 +2882,10 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = doublesTier: "DUU", natDexTier: "OU", }, + heatranmega: { + isNonstandard: "Future", + tier: "Illegal", + }, regigigas: { tier: "ZU", doublesTier: "(DUU)", @@ -2889,6 +2921,10 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = doublesTier: "DUber", natDexTier: "Uber", }, + darkraimega: { + isNonstandard: "Future", + tier: "Illegal", + }, shaymin: { tier: "ZU", doublesTier: "(DUU)", @@ -3574,6 +3610,10 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = doublesTier: "(DUU)", natDexTier: "RU", }, + golurkmega: { + isNonstandard: "Future", + tier: "Illegal", + }, pawniard: { tier: "LC", }, @@ -3885,6 +3925,14 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = doublesTier: "(DUU)", natDexTier: "RU", }, + meowsticmega: { + isNonstandard: "Future", + tier: "Illegal", + }, + meowsticfmega: { + isNonstandard: "Future", + tier: "Illegal", + }, honedge: { isNonstandard: "Past", tier: "Illegal", @@ -4241,6 +4289,10 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = doublesTier: "(DUU)", natDexTier: "RU", }, + crabominablemega: { + isNonstandard: "Future", + tier: "Illegal", + }, oricorio: { tier: "ZU", doublesTier: "(DUU)", @@ -4410,6 +4462,10 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = tier: "Illegal", natDexTier: "RU", }, + golisopodmega: { + isNonstandard: "Future", + tier: "Illegal", + }, sandygast: { tier: "LC", }, @@ -4685,6 +4741,14 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = doublesTier: "DUber", natDexTier: "Uber", }, + magearnamega: { + isNonstandard: "Future", + tier: "Illegal", + }, + magearnaoriginalmega: { + isNonstandard: "Future", + tier: "Illegal", + }, marshadow: { isNonstandard: "Past", tier: "Illegal", @@ -4715,6 +4779,10 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = tier: "Illegal", natDexTier: "UU", }, + zeraoramega: { + isNonstandard: "Future", + tier: "Illegal", + }, meltan: { isNonstandard: "Past", tier: "Illegal", @@ -5352,6 +5420,10 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = doublesTier: "(DUU)", natDexTier: "RU", }, + scovillainmega: { + isNonstandard: "Future", + tier: "Illegal", + }, tadbulb: { tier: "LC", }, @@ -5400,11 +5472,27 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = doublesTier: "DUU", natDexTier: "Uber", }, + baxcaliburmega: { + isNonstandard: "Future", + tier: "Illegal", + }, tatsugiri: { tier: "PU", doublesTier: "(DUU)", natDexTier: "RU", }, + tatsugiricurlymega: { + isNonstandard: "Future", + tier: "Illegal", + }, + tatsugiridroopymega: { + isNonstandard: "Future", + tier: "Illegal", + }, + tatsugiristretchymega: { + isNonstandard: "Future", + tier: "Illegal", + }, cyclizar: { tier: "RU", doublesTier: "(DUU)", @@ -5468,6 +5556,10 @@ export const FormatsData: import('../sim/dex-species').SpeciesFormatsDataTable = doublesTier: "DOU", natDexTier: "UU", }, + glimmoramega: { + isNonstandard: "Future", + tier: "Illegal", + }, shroodle: { tier: "LC", }, diff --git a/data/items.ts b/data/items.ts index 504fd20c32..b8162b3a92 100644 --- a/data/items.ts +++ b/data/items.ts @@ -47,6 +47,20 @@ export const Items: import('../sim/dex-items').ItemDataTable = { gen: 6, isNonstandard: "Past", }, + absolitez: { + name: "Absolite Z", + spritenum: 576, + megaStone: "Absol-Mega-Z", + megaEvolves: "Absol", + itemUser: ["Absol"], + onTakeItem(item, source) { + if (item.megaEvolves === source.baseSpecies.baseSpecies) return false; + return true; + }, + num: 2588, + gen: 9, + isNonstandard: "Future", + }, absorbbulb: { name: "Absorb Bulb", spritenum: 2, @@ -408,6 +422,20 @@ export const Items: import('../sim/dex-items').ItemDataTable = { gen: 9, isNonstandard: "Future", }, + baxcalibrite: { + name: "Baxcalibrite", + spritenum: 0, + megaStone: "Baxcalibur-Mega", + megaEvolves: "Baxcalibur", + itemUser: ["Baxcalibur"], + onTakeItem(item, source) { + if (item.megaEvolves === source.baseSpecies.baseSpecies) return false; + return true; + }, + num: 2601, + gen: 9, + isNonstandard: "Future", + }, beastball: { name: "Beast Ball", spritenum: 661, @@ -947,6 +975,20 @@ export const Items: import('../sim/dex-items').ItemDataTable = { gen: 5, isNonstandard: "Past", }, + chimechite: { + name: "Chimechite", + spritenum: 0, + megaStone: "Chimecho-Mega", + megaEvolves: "Chimecho", + itemUser: ["Chimecho"], + onTakeItem(item, source) { + if (item.megaEvolves === source.baseSpecies.baseSpecies) return false; + return true; + }, + num: 2587, + gen: 9, + isNonstandard: "Future", + }, chippedpot: { name: "Chipped Pot", spritenum: 720, @@ -1213,6 +1255,20 @@ export const Items: import('../sim/dex-items').ItemDataTable = { num: 1885, gen: 9, }, + crabominite: { + name: "Crabominite", + spritenum: 0, + megaStone: "Crabominable-Mega", + megaEvolves: "Crabominable", + itemUser: ["Crabominable"], + onTakeItem(item, source) { + if (item.megaEvolves === source.baseSpecies.baseSpecies) return false; + return true; + }, + num: 2595, + gen: 9, + isNonstandard: "Future", + }, crackedpot: { name: "Cracked Pot", spritenum: 719, @@ -1298,6 +1354,20 @@ export const Items: import('../sim/dex-items').ItemDataTable = { gen: 7, isNonstandard: "Past", }, + darkranite: { + name: "Darkranite", + spritenum: 0, + megaStone: "Darkrai-Mega", + megaEvolves: "Darkrai", + itemUser: ["Darkrai"], + onTakeItem(item, source) { + if (item.megaEvolves === source.baseSpecies.baseSpecies) return false; + return true; + }, + num: 2593, + gen: 9, + isNonstandard: "Future", + }, dawnstone: { name: "Dawn Stone", spritenum: 92, @@ -2415,6 +2485,20 @@ export const Items: import('../sim/dex-items').ItemDataTable = { gen: 6, isNonstandard: "Past", }, + garchompitez: { + name: "Garchompite Z", + spritenum: 573, + megaStone: "Garchomp-Mega-Z", + megaEvolves: "Garchomp", + itemUser: ["Garchomp"], + onTakeItem(item, source) { + if (item.megaEvolves === source.baseSpecies.baseSpecies) return false; + return true; + }, + num: 2590, + gen: 9, + isNonstandard: "Future", + }, gardevoirite: { name: "Gardevoirite", spritenum: 587, @@ -2499,6 +2583,20 @@ export const Items: import('../sim/dex-items').ItemDataTable = { gen: 6, isNonstandard: "Past", }, + glimmoranite: { + name: "Glimmoranite", + spritenum: 0, + megaStone: "Glimmora-Mega", + megaEvolves: "Glimmora", + itemUser: ["Glimmora"], + onTakeItem(item, source) { + if (item.megaEvolves === source.baseSpecies.baseSpecies) return false; + return true; + }, + num: 2600, + gen: 9, + isNonstandard: "Future", + }, goldbottlecap: { name: "Gold Bottle Cap", spritenum: 697, @@ -2508,6 +2606,34 @@ export const Items: import('../sim/dex-items').ItemDataTable = { num: 796, gen: 7, }, + golisopite: { + name: "Golisopite", + spritenum: 0, + megaStone: "Golisopod-Mega", + megaEvolves: "Golisopod", + itemUser: ["Golisopod"], + onTakeItem(item, source) { + if (item.megaEvolves === source.baseSpecies.baseSpecies) return false; + return true; + }, + num: 2596, + gen: 9, + isNonstandard: "Future", + }, + golurkite: { + name: "Golurkite", + spritenum: 0, + megaStone: "Golurk-Mega", + megaEvolves: "Golurk", + itemUser: ["Golurk"], + onTakeItem(item, source) { + if (item.megaEvolves === source.baseSpecies.baseSpecies) return false; + return true; + }, + num: 2594, + gen: 9, + isNonstandard: "Future", + }, grassgem: { name: "Grass Gem", spritenum: 172, @@ -2790,6 +2916,20 @@ export const Items: import('../sim/dex-items').ItemDataTable = { num: 2408, gen: 9, }, + heatranite: { + name: "Heatranite", + spritenum: 0, + megaStone: "Heatran-Mega", + megaEvolves: "Heatran", + itemUser: ["Heatran"], + onTakeItem(item, source) { + if (item.megaEvolves === source.baseSpecies.baseSpecies) return false; + return true; + }, + num: 2592, + gen: 9, + isNonstandard: "Future", + }, heatrock: { name: "Heat Rock", spritenum: 193, @@ -3472,6 +3612,20 @@ export const Items: import('../sim/dex-items').ItemDataTable = { gen: 6, isNonstandard: "Past", }, + lucarionitez: { + name: "Lucarionite Z", + spritenum: 594, + megaStone: "Lucario-Mega-Z", + megaEvolves: "Lucario", + itemUser: ["Lucario"], + onTakeItem(item, source) { + if (item.megaEvolves === source.baseSpecies.baseSpecies) return false; + return true; + }, + num: 2591, + gen: 9, + isNonstandard: "Future", + }, luckypunch: { name: "Lucky Punch", spritenum: 261, @@ -3615,6 +3769,20 @@ export const Items: import('../sim/dex-items').ItemDataTable = { gen: 3, isNonstandard: "Past", }, + magearnite: { + name: "Magearnite", + spritenum: 0, + megaStone: ["Magearna-Mega", "Magearna-Original-Mega"], + megaEvolves: ["Magearna", "Magearna-Original"], + itemUser: ["Magearna", "Magearna-Original"], + onTakeItem(item, source) { + if (item.megaEvolves!.includes(source.baseSpecies.name)) return false; + return true; + }, + num: 2597, + gen: 9, + isNonstandard: "Future", + }, magmarizer: { name: "Magmarizer", spritenum: 272, @@ -3872,6 +4040,20 @@ export const Items: import('../sim/dex-items').ItemDataTable = { num: 219, gen: 3, }, + meowsticite: { + name: "Meowsticite", + spritenum: 0, + megaStone: ["Meowstic-Mega", "Meowstic-F-Mega"], + megaEvolves: ["Meowstic", "Meowstic-F"], + itemUser: ["Meowstic", "Meowstic-F"], + onTakeItem(item, source) { + if (source.baseSpecies.num === 678) return false; + return true; + }, + num: 2594, + gen: 9, + isNonstandard: "Future", + }, metagrossite: { name: "Metagrossite", spritenum: 618, @@ -4976,6 +5158,36 @@ export const Items: import('../sim/dex-items').ItemDataTable = { gen: 3, isNonstandard: "Past", }, + raichunitex: { + name: "Raichunite X", + spritenum: 0, + megaStone: "Raichu-Mega-X", + megaEvolves: "Raichu", + itemUser: ["Raichu"], + onTakeItem(item, source) { + if (item.megaEvolves === source.baseSpecies.name || + item.megaStone === source.baseSpecies.name) return false; + return true; + }, + num: 2585, + gen: 9, + isNonstandard: "Future", + }, + raichunitey: { + name: "Raichunite Y", + spritenum: 0, + megaStone: "Raichu-Mega-Y", + megaEvolves: "Raichu", + itemUser: ["Raichu"], + onTakeItem(item, source) { + if (item.megaEvolves === source.baseSpecies.name || + item.megaStone === source.baseSpecies.name) return false; + return true; + }, + num: 2586, + gen: 9, + isNonstandard: "Future", + }, rarebone: { name: "Rare Bone", spritenum: 379, @@ -5493,6 +5705,20 @@ export const Items: import('../sim/dex-items').ItemDataTable = { num: 232, gen: 2, }, + scovillainite: { + name: "Scovillainite", + spritenum: 0, + megaStone: "Scovillain-Mega", + megaEvolves: "Scovillain", + itemUser: ["Scovillain"], + onTakeItem(item, source) { + if (item.megaEvolves === source.baseSpecies.baseSpecies) return false; + return true; + }, + num: 2599, + gen: 9, + isNonstandard: "Future", + }, scraftinite: { name: "Scraftinite", spritenum: 555, @@ -5900,6 +6126,20 @@ export const Items: import('../sim/dex-items').ItemDataTable = { gen: 2, isPokeball: true, }, + staraptite: { + name: "Staraptite", + spritenum: 0, + megaStone: "Staraptor-Mega", + megaEvolves: "Staraptor", + itemUser: ["Staraptor"], + onTakeItem(item, source) { + if (item.megaEvolves === source.baseSpecies.baseSpecies) return false; + return true; + }, + num: 2589, + gen: 9, + isNonstandard: "Future", + }, starfberry: { name: "Starf Berry", spritenum: 472, @@ -6183,6 +6423,20 @@ export const Items: import('../sim/dex-items').ItemDataTable = { num: 1117, gen: 8, }, + tatsugirinite: { + name: "Tatsugirinite", + spritenum: 0, + megaStone: ["Tatsugiri-Curly-Mega", "Tatsugiri-Droopy-Mega", "Tatsugiri-Stretchy-Mega"], + megaEvolves: ["Tatsugiri", "Tatsugiri-Droopy", "Tatsugiri-Stretchy"], + itemUser: ["Tatsugiri", "Tatsugiri-Droopy", "Tatsugiri-Stretchy"], + onTakeItem(item, source) { + if (item.megaEvolves!.includes(source.baseSpecies.name)) return false; + return true; + }, + num: 2601, + gen: 9, + isNonstandard: "Future", + }, terrainextender: { name: "Terrain Extender", spritenum: 662, @@ -7719,6 +7973,20 @@ export const Items: import('../sim/dex-items').ItemDataTable = { num: 300, gen: 4, }, + zeraorite: { + name: "Zeraorite", + spritenum: 0, + megaStone: "Zeraora-Mega", + megaEvolves: "Zeraora", + itemUser: ["Zeraora"], + onTakeItem(item, source) { + if (item.megaEvolves === source.baseSpecies.baseSpecies) return false; + return true; + }, + num: 2598, + gen: 9, + isNonstandard: "Future", + }, zoomlens: { name: "Zoom Lens", spritenum: 574, diff --git a/data/mods/gen8/rulesets.ts b/data/mods/gen8/rulesets.ts index 436f824a5b..7958555cca 100644 --- a/data/mods/gen8/rulesets.ts +++ b/data/mods/gen8/rulesets.ts @@ -95,7 +95,7 @@ export const Rulesets: import('../../../sim/dex-formats').ModdedFormatDataTable if (set.item && this.dex.items.get(set.item).megaStone) { const item = this.dex.items.get(set.item); if (item.megaEvolves === species.baseSpecies) { - species = this.dex.species.get(item.megaStone); + species = this.dex.species.get(Array.isArray(item.megaStone) ? item.megaStone[0] : item.megaStone); } } if ( @@ -123,7 +123,9 @@ export const Rulesets: import('../../../sim/dex-formats').ModdedFormatDataTable } if (set.item) { const item = this.dex.items.get(set.item); - if (item.megaEvolves === set.species) godSpecies = this.dex.species.get(item.megaStone); + if (item.megaEvolves === set.species) { + godSpecies = this.dex.species.get(Array.isArray(item.megaStone) ? item.megaStone[0] : item.megaStone); + } if (["Zacian", "Zamazenta"].includes(godSpecies.baseSpecies) && item.id.startsWith('rusted')) { godSpecies = this.dex.species.get(set.species + "-Crowned"); } diff --git a/data/mods/gen9legends/formats-data.ts b/data/mods/gen9legends/formats-data.ts index db1ab5bc31..481704ee9a 100644 --- a/data/mods/gen9legends/formats-data.ts +++ b/data/mods/gen9legends/formats-data.ts @@ -101,6 +101,12 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat raichualola: { isNonstandard: null, }, + raichumegax: { + isNonstandard: null, + }, + raichumegay: { + isNonstandard: null, + }, sandshrew: { isNonstandard: "Past", }, @@ -134,11 +140,23 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat ninetalesalola: { isNonstandard: "Past", }, + igglybuff: { + isNonstandard: null, + }, jigglypuff: { - isNonstandard: "Past", + isNonstandard: null, }, wigglytuff: { - isNonstandard: "Past", + isNonstandard: null, + }, + zubat: { + isNonstandard: null, + }, + golbat: { + isNonstandard: null, + }, + crobat: { + isNonstandard: null, }, oddish: { isNonstandard: "Past", @@ -168,19 +186,22 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, meowth: { - isNonstandard: "Past", + isNonstandard: null, }, meowthalola: { - isNonstandard: "Past", + isNonstandard: null, }, meowthgalar: { - isNonstandard: "Past", + isNonstandard: null, }, persian: { - isNonstandard: "Past", + isNonstandard: null, }, persianalola: { - isNonstandard: "Past", + isNonstandard: null, + }, + perrserker: { + isNonstandard: null, }, psyduck: { isNonstandard: "Past", @@ -189,10 +210,13 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, mankey: { - isNonstandard: "Past", + isNonstandard: null, }, primeape: { - isNonstandard: "Past", + isNonstandard: null, + }, + annihilape: { + isNonstandard: null, }, growlithe: { isNonstandard: "Past", @@ -293,6 +317,18 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat magneton: { isNonstandard: "Past", }, + magnezone: { + isNonstandard: "Past", + }, + farfetchd: { + isNonstandard: null, + }, + farfetchdgalar: { + isNonstandard: null, + }, + sirfetchd: { + isNonstandard: null, + }, doduo: { isNonstandard: "Past", }, @@ -365,6 +401,15 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat exeggutoralola: { isNonstandard: "Past", }, + cubone: { + isNonstandard: null, + }, + marowak: { + isNonstandard: null, + }, + marowakalola: { + isNonstandard: null, + }, hitmonlee: { isNonstandard: "Past", }, @@ -410,6 +455,18 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat starmiemega: { isNonstandard: null, }, + mimejr: { + isNonstandard: null, + }, + mrmime: { + isNonstandard: null, + }, + mrmimegalar: { + isNonstandard: null, + }, + mrrime: { + isNonstandard: null, + }, scyther: { isNonstandard: null, }, @@ -465,7 +522,13 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: null, }, porygon: { - isNonstandard: "Past", + isNonstandard: null, + }, + porygon2: { + isNonstandard: null, + }, + porygonz: { + isNonstandard: null, }, aerodactyl: { isNonstandard: null, @@ -507,13 +570,13 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: null, }, mewtwo: { - isNonstandard: "Unobtainable", + isNonstandard: null, }, mewtwomegax: { - isNonstandard: "Unobtainable", + isNonstandard: null, }, mewtwomegay: { - isNonstandard: "Unobtainable", + isNonstandard: null, }, mew: { isNonstandard: "Past", @@ -584,9 +647,6 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat cleffa: { isNonstandard: null, }, - igglybuff: { - isNonstandard: "Past", - }, mareep: { isNonstandard: null, }, @@ -690,10 +750,13 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, qwilfish: { - isNonstandard: "Past", + isNonstandard: null, }, qwilfishhisui: { - isNonstandard: "Past", + isNonstandard: null, + }, + overqwil: { + isNonstandard: null, }, scizor: { isNonstandard: null, @@ -758,9 +821,6 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat donphan: { isNonstandard: "Past", }, - porygon2: { - isNonstandard: "Past", - }, stantler: { isNonstandard: "Past", }, @@ -810,31 +870,40 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, treecko: { - isNonstandard: "Past", + isNonstandard: null, }, grovyle: { - isNonstandard: "Past", + isNonstandard: null, }, sceptile: { - isNonstandard: "Past", + isNonstandard: null, + }, + sceptilemega: { + isNonstandard: "Unobtainable", }, torchic: { - isNonstandard: "Past", + isNonstandard: null, }, combusken: { - isNonstandard: "Past", + isNonstandard: null, }, blaziken: { - isNonstandard: "Past", + isNonstandard: null, + }, + blazikenmega: { + isNonstandard: "Unobtainable", }, mudkip: { - isNonstandard: "Past", + isNonstandard: null, }, marshtomp: { - isNonstandard: "Past", + isNonstandard: null, }, swampert: { - isNonstandard: "Past", + isNonstandard: null, + }, + swampertmega: { + isNonstandard: "Unobtainable", }, poochyena: { isNonstandard: "Past", @@ -969,10 +1038,10 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: null, }, gulpin: { - isNonstandard: "Past", + isNonstandard: null, }, swalot: { - isNonstandard: "Past", + isNonstandard: null, }, carvanha: { isNonstandard: null, @@ -996,10 +1065,10 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, spoink: { - isNonstandard: "Past", + isNonstandard: null, }, grumpig: { - isNonstandard: "Past", + isNonstandard: null, }, trapinch: { isNonstandard: "Past", @@ -1026,10 +1095,10 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: null, }, zangoose: { - isNonstandard: "Past", + isNonstandard: null, }, seviper: { - isNonstandard: "Past", + isNonstandard: null, }, barboach: { isNonstandard: "Past", @@ -1044,10 +1113,13 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, feebas: { - isNonstandard: "Past", + isNonstandard: null, }, milotic: { - isNonstandard: "Past", + isNonstandard: null, + }, + kecleon: { + isNonstandard: null, }, shuppet: { isNonstandard: null, @@ -1067,8 +1139,14 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat tropius: { isNonstandard: "Past", }, + chingling: { + isNonstandard: null, + }, chimecho: { - isNonstandard: "Past", + isNonstandard: null, + }, + chimechomega: { + isNonstandard: null, }, absol: { isNonstandard: null, @@ -1076,6 +1154,9 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat absolmega: { isNonstandard: null, }, + absolmegaz: { + isNonstandard: null, + }, snorunt: { isNonstandard: null, }, @@ -1122,19 +1203,34 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, latias: { - isNonstandard: "Past", + isNonstandard: null, + }, + latiasmega: { + isNonstandard: null, }, latios: { - isNonstandard: "Past", + isNonstandard: null, + }, + latiosmega: { + isNonstandard: null, }, kyogre: { - isNonstandard: "Past", + isNonstandard: null, + }, + kyogreprimal: { + isNonstandard: null, }, groudon: { - isNonstandard: "Past", + isNonstandard: null, + }, + groudonprimal: { + isNonstandard: null, }, rayquaza: { - isNonstandard: "Past", + isNonstandard: null, + }, + rayquazamega: { + isNonstandard: null, }, jirachi: { isNonstandard: "Past", @@ -1179,13 +1275,16 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, starly: { - isNonstandard: "Past", + isNonstandard: null, }, staravia: { - isNonstandard: "Past", + isNonstandard: null, }, staraptor: { - isNonstandard: "Past", + isNonstandard: null, + }, + staraptormega: { + isNonstandard: null, }, kricketot: { isNonstandard: "Past", @@ -1265,9 +1364,6 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat honchkrow: { isNonstandard: "Past", }, - chingling: { - isNonstandard: "Past", - }, stunky: { isNonstandard: "Past", }, @@ -1301,6 +1397,9 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat garchompmega: { isNonstandard: null, }, + garchompmegaz: { + isNonstandard: "Unobtainable", + }, munchlax: { isNonstandard: "Past", }, @@ -1313,6 +1412,9 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat lucariomega: { isNonstandard: null, }, + lucariomegaz: { + isNonstandard: null, + }, hippopotas: { isNonstandard: null, }, @@ -1343,9 +1445,6 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat weavile: { isNonstandard: "Past", }, - magnezone: { - isNonstandard: "Past", - }, rhyperior: { isNonstandard: "Past", }, @@ -1370,9 +1469,6 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat mamoswine: { isNonstandard: "Past", }, - porygonz: { - isNonstandard: "Past", - }, gallade: { isNonstandard: null, }, @@ -1392,22 +1488,22 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: null, }, rotom: { - isNonstandard: "Past", + isNonstandard: null, }, rotomheat: { - isNonstandard: "Past", + isNonstandard: null, }, rotomwash: { - isNonstandard: "Past", + isNonstandard: null, }, rotomfrost: { - isNonstandard: "Past", + isNonstandard: null, }, rotomfan: { - isNonstandard: "Past", + isNonstandard: null, }, rotommow: { - isNonstandard: "Past", + isNonstandard: null, }, uxie: { isNonstandard: "Past", @@ -1431,7 +1527,10 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, heatran: { - isNonstandard: "Past", + isNonstandard: null, + }, + heatranmega: { + isNonstandard: null, }, regigigas: { isNonstandard: "Past", @@ -1452,7 +1551,10 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, darkrai: { - isNonstandard: "Past", + isNonstandard: null, + }, + darkraimega: { + isNonstandard: null, }, shaymin: { isNonstandard: "Past", @@ -1553,6 +1655,12 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat watchog: { isNonstandard: null, }, + purrloin: { + isNonstandard: null, + }, + liepard: { + isNonstandard: null, + }, pansage: { isNonstandard: null, }, @@ -1571,6 +1679,12 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat simipour: { isNonstandard: null, }, + munna: { + isNonstandard: null, + }, + musharna: { + isNonstandard: null, + }, blitzle: { isNonstandard: "Past", }, @@ -1610,6 +1724,12 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat leavanny: { isNonstandard: "Past", }, + throh: { + isNonstandard: null, + }, + sawk: { + isNonstandard: null, + }, venipede: { isNonstandard: null, }, @@ -1664,6 +1784,18 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat scraftymega: { isNonstandard: null, }, + yamask: { + isNonstandard: null, + }, + yamaskgalar: { + isNonstandard: null, + }, + cofagrigus: { + isNonstandard: null, + }, + runerigus: { + isNonstandard: null, + }, trubbish: { isNonstandard: null, }, @@ -1731,10 +1863,10 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: null, }, foongus: { - isNonstandard: "Past", + isNonstandard: null, }, amoonguss: { - isNonstandard: "Past", + isNonstandard: null, }, alomomola: { isNonstandard: "Past", @@ -1785,7 +1917,7 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, cryogonal: { - isNonstandard: "Past", + isNonstandard: null, }, stunfisk: { isNonstandard: null, @@ -1800,10 +1932,13 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, golett: { - isNonstandard: "Past", + isNonstandard: null, }, golurk: { - isNonstandard: "Past", + isNonstandard: null, + }, + golurkmega: { + isNonstandard: null, }, pawniard: { isNonstandard: "Past", @@ -1842,13 +1977,13 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, cobalion: { - isNonstandard: "Past", + isNonstandard: null, }, terrakion: { - isNonstandard: "Past", + isNonstandard: null, }, virizion: { - isNonstandard: "Past", + isNonstandard: null, }, tornadus: { isNonstandard: "Past", @@ -1884,16 +2019,27 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, keldeo: { - isNonstandard: "Past", + isNonstandard: null, }, keldeoresolute: { - isNonstandard: "Past", + isNonstandard: null, }, meloetta: { - isNonstandard: "Past", + isNonstandard: null, }, meloettapirouette: { - isNonstandard: "Past", + isNonstandard: null, + }, + genesect: { + isNonstandard: null, + }, + genesectdouse: { + }, + genesectshock: { + }, + genesectburn: { + }, + genesectchill: { }, chespin: { isNonstandard: null, @@ -2012,6 +2158,12 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat meowsticf: { isNonstandard: null, }, + meowsticmega: { + isNonstandard: null, + }, + meowsticfmega: { + isNonstandard: null, + }, honedge: { isNonstandard: null, }, @@ -2255,10 +2407,22 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, crabrawler: { - isNonstandard: "Past", + isNonstandard: null, }, crabominable: { - isNonstandard: "Past", + isNonstandard: null, + }, + crabominablemega: { + isNonstandard: null, + }, + wimpod: { + isNonstandard: null, + }, + golisopod: { + isNonstandard: null, + }, + golisopodmega: { + isNonstandard: null, }, oricorio: { isNonstandard: "Past", @@ -2342,10 +2506,10 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, sandygast: { - isNonstandard: "Past", + isNonstandard: null, }, palossand: { - isNonstandard: "Past", + isNonstandard: null, }, minior: { isNonstandard: "Past", @@ -2357,10 +2521,10 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, mimikyu: { - isNonstandard: "Past", + isNonstandard: null, }, mimikyubusted: { - isNonstandard: "Past", + isNonstandard: null, }, bruxish: { isNonstandard: "Past", @@ -2402,10 +2566,31 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, magearna: { - isNonstandard: "Past", + isNonstandard: null, }, magearnaoriginal: { - isNonstandard: "Past", + isNonstandard: null, + }, + magearnamega: { + isNonstandard: null, + }, + magearnaoriginalmega: { + isNonstandard: null, + }, + marshadow: { + isNonstandard: null, + }, + zeraora: { + isNonstandard: null, + }, + zeraoramega: { + isNonstandard: null, + }, + meltan: { + isNonstandard: null, + }, + melmetal: { + isNonstandard: null, }, grookey: { isNonstandard: "Past", @@ -2441,13 +2626,13 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, rookidee: { - isNonstandard: "Past", + isNonstandard: null, }, corvisquire: { - isNonstandard: "Past", + isNonstandard: null, }, corviknight: { - isNonstandard: "Past", + isNonstandard: null, }, chewtle: { isNonstandard: "Past", @@ -2494,14 +2679,19 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat barraskewda: { isNonstandard: "Past", }, + nickit: { + isNonstandard: null, + }, + thievul: { + isNonstandard: null, + }, toxel: { - isNonstandard: "Past", + isNonstandard: null, }, toxtricity: { - isNonstandard: "Past", + isNonstandard: null, }, toxtricitylowkey: { - isNonstandard: "Past", }, sinistea: { isNonstandard: "Past", @@ -2533,15 +2723,18 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat grimmsnarl: { isNonstandard: "Past", }, - perrserker: { - isNonstandard: "Past", - }, milcery: { isNonstandard: "Past", }, alcremie: { isNonstandard: "Past", }, + clobbopus: { + isNonstandard: null, + }, + grapploct: { + isNonstandard: null, + }, falinks: { isNonstandard: null, }, @@ -2567,16 +2760,15 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, indeedee: { - isNonstandard: "Past", + isNonstandard: null, }, indeedeef: { - isNonstandard: "Past", + isNonstandard: null, }, morpeko: { - isNonstandard: "Past", + isNonstandard: null, }, morpekohangry: { - isNonstandard: "Past", }, cufant: { isNonstandard: "Past", @@ -2651,7 +2843,7 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, kleavor: { - isNonstandard: "Past", + isNonstandard: null, }, ursaluna: { isNonstandard: "Past", @@ -2668,9 +2860,6 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat sneasler: { isNonstandard: "Past", }, - overqwil: { - isNonstandard: "Past", - }, enamorus: { isNonstandard: "Past", }, @@ -2744,10 +2933,10 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, fidough: { - isNonstandard: "Past", + isNonstandard: null, }, dachsbun: { - isNonstandard: "Past", + isNonstandard: null, }, smoliv: { isNonstandard: "Past", @@ -2759,34 +2948,34 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, squawkabilly: { - isNonstandard: "Past", + isNonstandard: null, }, squawkabillyblue: { - isNonstandard: "Past", - }, - squawkabillyyellow: { - isNonstandard: "Past", + isNonstandard: null, }, squawkabillywhite: { - isNonstandard: "Past", + isNonstandard: null, + }, + squawkabillyyellow: { + isNonstandard: null, }, nacli: { - isNonstandard: "Past", + isNonstandard: null, }, naclstack: { - isNonstandard: "Past", + isNonstandard: null, }, garganacl: { - isNonstandard: "Past", + isNonstandard: null, }, charcadet: { - isNonstandard: "Past", + isNonstandard: null, }, armarouge: { - isNonstandard: "Past", + isNonstandard: null, }, ceruledge: { - isNonstandard: "Past", + isNonstandard: null, }, tadbulb: { isNonstandard: "Past", @@ -2801,16 +2990,16 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, maschiff: { - isNonstandard: "Past", + isNonstandard: null, }, mabosstiff: { - isNonstandard: "Past", + isNonstandard: null, }, shroodle: { - isNonstandard: "Past", + isNonstandard: null, }, grafaiai: { - isNonstandard: "Past", + isNonstandard: null, }, bramblin: { isNonstandard: "Past", @@ -2828,10 +3017,13 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, capsakid: { - isNonstandard: "Past", + isNonstandard: null, }, scovillain: { - isNonstandard: "Past", + isNonstandard: null, + }, + scovillainmega: { + isNonstandard: null, }, rellor: { isNonstandard: "Past", @@ -2846,13 +3038,13 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, tinkatink: { - isNonstandard: "Past", + isNonstandard: null, }, tinkatuff: { - isNonstandard: "Past", + isNonstandard: null, }, tinkaton: { - isNonstandard: "Past", + isNonstandard: null, }, wiglett: { isNonstandard: "Past", @@ -2879,25 +3071,28 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, cyclizar: { - isNonstandard: "Past", + isNonstandard: null, }, orthworm: { isNonstandard: "Past", }, glimmet: { - isNonstandard: "Past", + isNonstandard: null, }, glimmora: { - isNonstandard: "Past", + isNonstandard: null, + }, + glimmoramega: { + isNonstandard: null, }, greavard: { - isNonstandard: "Past", + isNonstandard: null, }, houndstone: { - isNonstandard: "Past", + isNonstandard: null, }, flamigo: { - isNonstandard: "Past", + isNonstandard: null, }, cetoddle: { isNonstandard: "Past", @@ -2909,13 +3104,25 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, dondozo: { - isNonstandard: "Past", + isNonstandard: null, }, tatsugiri: { - isNonstandard: "Past", + isNonstandard: null, }, - annihilape: { - isNonstandard: "Past", + tatsugiridroopy: { + isNonstandard: null, + }, + tatsugiristretchy: { + isNonstandard: null, + }, + tatsugiricurlymega: { + isNonstandard: null, + }, + tatsugiridroopymega: { + isNonstandard: null, + }, + tatsugiristretchymega: { + isNonstandard: null, }, clodsire: { isNonstandard: "Past", @@ -2969,22 +3176,25 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat isNonstandard: "Past", }, frigibax: { - isNonstandard: "Past", + isNonstandard: null, }, arctibax: { - isNonstandard: "Past", + isNonstandard: null, }, baxcalibur: { - isNonstandard: "Past", + isNonstandard: null, + }, + baxcaliburmega: { + isNonstandard: "Unobtainable", }, gimmighoul: { - isNonstandard: "Past", + isNonstandard: null, }, gimmighoulroaming: { - isNonstandard: "Past", + isNonstandard: null, }, gholdengo: { - isNonstandard: "Past", + isNonstandard: null, }, wochien: { isNonstandard: "Past", diff --git a/data/mods/gen9legends/pokedex.ts b/data/mods/gen9legends/pokedex.ts index 18bf5e19e6..72f50a6692 100644 --- a/data/mods/gen9legends/pokedex.ts +++ b/data/mods/gen9legends/pokedex.ts @@ -3,10 +3,6 @@ export const Pokedex: import('../../../sim/dex-species').ModdedSpeciesDataTable inherit: true, baseStats: { hp: 60, atk: 140, def: 105, spa: 130, spd: 105, spe: 120 }, }, - scyther: { - inherit: true, - evos: ["Scizor"], - }, mawilemega: { inherit: true, baseStats: { hp: 50, atk: 147, def: 125, spa: 55, spd: 95, spe: 50 }, diff --git a/data/mods/gen9legendsou/abilities.ts b/data/mods/gen9legendsou/abilities.ts deleted file mode 100644 index ad65e2cb03..0000000000 --- a/data/mods/gen9legendsou/abilities.ts +++ /dev/null @@ -1,140 +0,0 @@ -export const Abilities: import('../../../sim/dex-abilities').ModdedAbilityDataTable = { - ange: { - gen: 9, - desc: "Gain 1/16 of max HP at the end of every turn. Opposing Megas have 1/12 max HP drained every turn.", - shortDesc: "Gain 1/16 max HP at end of every turn. Against Megas: drain 1/12 max HP every turn.", - onResidualOrder: 5, - onResidualSubOrder: 4, - onResidual(pokemon) { - if (!pokemon.hp) return; - const megaFoes = []; - for (const target of pokemon.foes()) { - if (target.baseSpecies.isMega) megaFoes.push(target); - } - if (megaFoes.length) { - for (const target of megaFoes) { - this.damage(target.baseMaxhp / 12, target, pokemon); - this.heal(target.baseMaxhp / 12); - } - } else { - this.heal(pokemon.baseMaxhp / 16); - } - }, - name: "Ange", - }, - brassbond: { - onPrepareHit(source, target, move) { - if (move.category === 'Status' || move.multihit || move.flags['noparentalbond'] || move.flags['charge'] || - move.flags['futuremove'] || move.spreadHit || move.isZ || move.isMax) return; - move.multihit = 3; - move.multihitType = 'brassbond' as 'parentalbond'; - }, - onTryBoost(boost, target, source, effect) { - if (effect.effectType === 'Move' && effect.multihitType && effect.hit > 1 && - source && target === source) { - let i: keyof BoostsTable; - for (i in boost) { - delete boost[i]; - } - } - }, - // Damage modifier implemented in BattleActions#modifyDamage() - onSourceModifySecondaries(secondaries, target, source, move) { - if (move.multihitType && move.hit > 1) { - return []; - } - }, - flags: {}, - name: "Brass Bond", - gen: 9, - desc: "This Pokemon's damaging moves hit 3x. Successive hits do 15% damage without added effects.", - shortDesc: "This Pokemon's damaging moves hit 3x. Successive hits do 15% damage without added effects.", - }, - contrarian: { - onChangeBoost(boost, target, source, effect) { - if (effect && effect.id === 'zpower') return; - let i: BoostID; - for (i in boost) { - boost[i]! *= -2; - } - }, - name: "Contrarian", - desc: "This Pokemon has its stat changes inverted and doubled.", - shortDesc: "This Pokemon has its stat changes inverted and doubled.", - gen: 9, - }, - corrosion: { - inherit: true, - onModifyMovePriority: -5, - onModifyMove(move) { - if (!move.ignoreImmunity) move.ignoreImmunity = {}; - if (move.ignoreImmunity !== true) { - move.ignoreImmunity['Poison'] = true; - } - }, - shortDesc: "This Pokemon can poison a Pokemon regardless of its typing and hit them with Poison moves.", - }, - ionbattery: { - onModifySpAPriority: 5, - onModifySpA(spa, pokemon) { - return this.chainModify(1.5); - }, - flags: { breakable: 1 }, - name: "Ion Battery", - desc: "This Pokemon floats and has 1.5x Sp. Atk.", - shortDesc: "This Pokemon floats and has 1.5x Sp. Atk.", - }, - luchadorspride: { - onSourceAfterFaint(length, target, source, effect) { - if (effect && effect.effectType === 'Move') { - this.boost({ spe: length }, source); - } - }, - flags: {}, - name: "Luchador's Pride", - desc: "This Pokemon's Speed is raised by 1 stage if it attacks and knocks out another Pokemon.", - shortDesc: "This Pokemon's Speed is raised by 1 stage if it attacks and KOes another Pokemon.", - gen: 9, - }, - protectivethorns: { - gen: 9, - name: "Protective Thorns", - desc: "Bulletproof + Iron Barbs.", - shortDesc: "Bulletproof + Iron Barbs.", - onTryHit(pokemon, target, move) { - if (move.flags['bullet']) { - this.add('-immune', pokemon, '[from] ability: Protective Thorns'); - return null; - } - }, - onDamagingHitOrder: 1, - onDamagingHit(damage, target, source, move) { - if (this.checkMoveMakesContact(move, source, target, true)) { - this.damage(source.baseMaxhp / 8, source, target); - } - }, - flags: { breakable: 1 }, - }, - minus: { - inherit: true, - onModifySpAPriority: 5, - onModifySpA(spa, pokemon) { - for (const allyActive of pokemon.allies()) { - if (allyActive.hasAbility(['minus', 'plus', 'ionbattery'])) { - return this.chainModify(1.5); - } - } - }, - }, - plus: { - inherit: true, - onModifySpAPriority: 5, - onModifySpA(spa, pokemon) { - for (const allyActive of pokemon.allies()) { - if (allyActive.hasAbility(['minus', 'plus', 'ionbattery'])) { - return this.chainModify(1.5); - } - } - }, - }, -}; diff --git a/data/mods/gen9legendsou/formats-data.ts b/data/mods/gen9legendsou/formats-data.ts index b8c8754b4d..0b5092c416 100644 --- a/data/mods/gen9legendsou/formats-data.ts +++ b/data/mods/gen9legendsou/formats-data.ts @@ -77,6 +77,12 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat raichualola: { tier: "UU", }, + raichumegax: { + tier: "OU", + }, + raichumegay: { + tier: "OU", + }, clefairy: { tier: "NFE", }, @@ -86,6 +92,51 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat clefablemega: { tier: "(OU)", }, + igglybuff: { + tier: "LC", + }, + jigglypuff: { + tier: "NFE", + }, + wigglytuff: { + tier: "OU", + }, + zubat: { + tier: "LC", + }, + golbat: { + tier: "NFE", + }, + crobat: { + tier: "OU", + }, + meowth: { + tier: "LC", + }, + meowthalola: { + tier: "LC", + }, + meowthgalar: { + tier: "LC", + }, + persian: { + tier: "OU", + }, + persianalola: { + tier: "OU", + }, + perrserker: { + tier: "OU", + }, + mankey: { + tier: "LC", + }, + primeape: { + tier: "NFE", + }, + annihilape: { + tier: "OU", + }, abra: { tier: "LC", }, @@ -134,6 +185,15 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat slowbrogalar: { tier: "UU", }, + farfetchd: { + tier: "OU", + }, + farfetchdgalar: { + tier: "LC", + }, + sirfetchd: { + tier: "OU", + }, gastly: { tier: "LC", }, @@ -149,6 +209,15 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat onix: { tier: "LC", }, + cubone: { + tier: "LC", + }, + marowak: { + tier: "OU", + }, + marowakalola: { + tier: "OU", + }, kangaskhan: { tier: "UU", }, @@ -164,6 +233,18 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat starmiemega: { tier: "OU", }, + mimejr: { + tier: "LC", + }, + mrmime: { + tier: "OU", + }, + mrmimegalar: { + tier: "NFE", + }, + mrrime: { + tier: "OU", + }, scyther: { tier: "LC", }, @@ -173,6 +254,15 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat pinsirmega: { tier: "UU", }, + porygon: { + tier: "LC", + }, + porygon2: { + tier: "NFE", + }, + porygonz: { + tier: "OU", + }, magikarp: { tier: "LC", }, @@ -287,6 +377,15 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat steelixmega: { tier: "UU", }, + qwilfish: { + tier: "OU", + }, + qwilfishhisui: { + tier: "LC", + }, + overqwil: { + tier: "OU", + }, scizor: { tier: "OU", }, @@ -329,6 +428,42 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat tyranitarmega: { tier: "(OU)", }, + treecko: { + tier: "LC", + }, + grovyle: { + tier: "NFE", + }, + sceptile: { + tier: "OU", + }, + sceptilemega: { + tier: "OU", + }, + torchic: { + tier: "LC", + }, + combusken: { + tier: "NFE", + }, + blaziken: { + tier: "OU", + }, + blazikenmega: { + tier: "OU", + }, + mudkip: { + tier: "LC", + }, + marshtomp: { + tier: "NFE", + }, + swampert: { + tier: "OU", + }, + swampertmega: { + tier: "OU", + }, ralts: { tier: "LC", }, @@ -386,6 +521,12 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat roselia: { tier: "NFE", }, + gulpin: { + tier: "LC", + }, + swalot: { + tier: "OU", + }, carvanha: { tier: "LC", }, @@ -404,6 +545,12 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat cameruptmega: { tier: "UU", }, + spoink: { + tier: "LC", + }, + grumpig: { + tier: "OU", + }, swablu: { tier: "LC", }, @@ -413,6 +560,21 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat altariamega: { tier: "UU", }, + zangoose: { + tier: "OU", + }, + seviper: { + tier: "OU", + }, + feebas: { + tier: "LC", + }, + milotic: { + tier: "OU", + }, + kecleon: { + tier: "OU", + }, shuppet: { tier: "LC", }, @@ -422,12 +584,24 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat banettemega: { tier: "UU", }, + chingling: { + tier: "LC", + }, + chimecho: { + tier: "OU", + }, + chimechomega: { + tier: "OU", + }, absol: { tier: "UU", }, absolmega: { tier: "UU", }, + absolmegaz: { + tier: "OU", + }, snorunt: { tier: "LC", }, @@ -461,6 +635,48 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat metagrossmega: { tier: "Uber", }, + latias: { + tier: "OU", + }, + latiasmega: { + tier: "OU", + }, + latios: { + tier: "OU", + }, + latiosmega: { + tier: "OU", + }, + kyogre: { + tier: "Uber", + }, + kyogreprimal: { + tier: "Uber", + }, + groudon: { + tier: "Uber", + }, + groudonprimal: { + tier: "Uber", + }, + rayquaza: { + tier: "Uber", + }, + rayquazamega: { + tier: "Uber", + }, + starly: { + tier: "LC", + }, + staravia: { + tier: "NFE", + }, + staraptor: { + tier: "OU", + }, + staraptormega: { + tier: "OU", + }, budew: { tier: "LC", }, @@ -488,6 +704,9 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat garchompmega: { tier: "(OU)", }, + garchompmegaz: { + tier: "OU", + }, riolu: { tier: "LC", }, @@ -497,6 +716,9 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat lucariomega: { tier: "Uber", }, + lucariomegaz: { + tier: "OU", + }, hippopotas: { tier: "LC", }, @@ -530,6 +752,36 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat froslassmega: { tier: "UU", }, + rotom: { + tier: "OU", + }, + rotomheat: { + tier: "OU", + }, + rotomwash: { + tier: "OU", + }, + rotomfrost: { + tier: "OU", + }, + rotomfan: { + tier: "OU", + }, + rotommow: { + tier: "OU", + }, + heatran: { + tier: "OU", + }, + heatranmega: { + tier: "OU", + }, + darkrai: { + tier: "OU", + }, + darkraimega: { + tier: "OU", + }, tepig: { tier: "LC", }, @@ -548,6 +800,12 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat watchog: { tier: "UU", }, + purrloin: { + tier: "LC", + }, + liepard: { + tier: "OU", + }, pansage: { tier: "LC", }, @@ -566,6 +824,12 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat simipour: { tier: "UU", }, + munna: { + tier: "LC", + }, + musharna: { + tier: "OU", + }, drilbur: { tier: "LC", }, @@ -581,6 +845,12 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat audinomega: { tier: "UU", }, + throh: { + tier: "OU", + }, + sawk: { + tier: "OU", + }, venipede: { tier: "LC", }, @@ -611,6 +881,18 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat scraftymega: { tier: "UU", }, + yamask: { + tier: "LC", + }, + yamaskgalar: { + tier: "LC", + }, + cofagrigus: { + tier: "OU", + }, + runerigus: { + tier: "OU", + }, trubbish: { tier: "LC", }, @@ -629,6 +911,12 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat emolga: { tier: "UU", }, + foongus: { + tier: "LC", + }, + amoonguss: { + tier: "OU", + }, tynamo: { tier: "LC", }, @@ -653,12 +941,54 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat chandeluremega: { tier: "UU", }, + cryogonal: { + tier: "OU", + }, stunfisk: { tier: "UU", }, stunfiskgalar: { tier: "UU", }, + golett: { + tier: "LC", + }, + golurk: { + tier: "OU", + }, + golurkmega: { + tier: "OU", + }, + cobalion: { + tier: "OU", + }, + terrakion: { + tier: "OU", + }, + virizion: { + tier: "OU", + }, + keldeo: { + tier: "OU", + }, + keldeoresolute: { + }, + meloetta: { + tier: "OU", + }, + meloettapirouette: { + }, + genesect: { + tier: "OU", + }, + genesectdouse: { + }, + genesectshock: { + }, + genesectburn: { + }, + genesectchill: { + }, chespin: { tier: "LC", }, @@ -776,6 +1106,12 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat meowsticf: { tier: "OU", }, + meowsticmega: { + tier: "OU", + }, + meowsticfmega: { + tier: "OU", + }, honedge: { tier: "LC", }, @@ -961,16 +1297,239 @@ export const FormatsData: import('../../../sim/dex-species').ModdedSpeciesFormat volcanion: { tier: "OU", }, + crabrawler: { + tier: "LC", + }, + crabominable: { + tier: "OU", + }, + crabominablemega: { + tier: "OU", + }, + wimpod: { + tier: "OU", + }, + golisopod: { + tier: "OU", + }, + golisopodmega: { + tier: "OU", + }, + sandygast: { + tier: "LC", + }, + palossand: { + tier: "OU", + }, drampa: { tier: "UU", }, drampamega: { tier: "UU", }, + mimikyu: { + tier: "OU", + }, + magearna: { + tier: "OU", + }, + magearnaoriginal: { + tier: "OU", + }, + magearnamega: { + tier: "OU", + }, + magearnaoriginalmega: { + tier: "OU", + }, + marshadow: { + tier: "Uber", + }, + zeraora: { + tier: "OU", + }, + zeraoramega: { + tier: "OU", + }, + meltan: { + tier: "OU", + }, + melmetal: { + tier: "OU", + }, + rookidee: { + tier: "LC", + }, + corvisquire: { + tier: "NFE", + }, + corviknight: { + tier: "OU", + }, + nickit: { + tier: "LC", + }, + thievul: { + tier: "OU", + }, + toxel: { + tier: "LC", + }, + toxtricity: { + tier: "OU", + }, + toxtricitylowkey: { + }, + clobbopus: { + tier: "LC", + }, + grapploct: { + tier: "OU", + }, falinks: { tier: "UU", }, falinksmega: { tier: "UU", }, + indeedee: { + tier: "OU", + }, + indeedeef: { + tier: "OU", + }, + morpeko: { + tier: "OU", + }, + morpekohangry: { + }, + kleavor: { + tier: "OU", + }, + fidough: { + tier: "LC", + }, + dachsbun: { + tier: "OU", + }, + squawkabilly: { + tier: "OU", + }, + squawkabillyblue: { + }, + squawkabillywhite: { + }, + squawkabillyyellow: { + }, + nacli: { + tier: "LC", + }, + naclstack: { + tier: "NFE", + }, + garganacl: { + tier: "OU", + }, + charcadet: { + tier: "LC", + }, + armarouge: { + tier: "OU", + }, + ceruledge: { + tier: "OU", + }, + maschiff: { + tier: "LC", + }, + mabosstiff: { + tier: "OU", + }, + shroodle: { + tier: "LC", + }, + grafaiai: { + tier: "OU", + }, + capsakid: { + tier: "LC", + }, + scovillain: { + tier: "OU", + }, + scovillainmega: { + tier: "OU", + }, + tinkatink: { + tier: "LC", + }, + tinkatuff: { + tier: "NFE", + }, + tinkaton: { + tier: "OU", + }, + cyclizar: { + tier: "OU", + }, + glimmet: { + tier: "LC", + }, + glimmora: { + tier: "OU", + }, + glimmoramega: { + tier: "OU", + }, + greavard: { + tier: "LC", + }, + houndstone: { + tier: "OU", + }, + flamigo: { + tier: "OU", + }, + dondozo: { + tier: "OU", + }, + tatsugiri: { + tier: "OU", + }, + tatsugiridroopy: { + tier: "OU", + }, + tatsugiristretchy: { + tier: "OU", + }, + tatsugiricurlymega: { + tier: "OU", + }, + tatsugiridroopymega: { + tier: "OU", + }, + tatsugiristretchymega: { + tier: "OU", + }, + frigibax: { + tier: "LC", + }, + arctibax: { + tier: "NFE", + }, + baxcalibur: { + tier: "OU", + }, + baxcaliburmega: { + tier: "OU", + }, + gimmighoul: { + tier: "LC", + }, + gimmighoulroaming: { + tier: "LC", + }, + gholdengo: { + tier: "OU", + }, }; diff --git a/data/mods/gen9legendsou/items.ts b/data/mods/gen9legendsou/items.ts index c2d94741ea..5a4e3fb9c0 100644 --- a/data/mods/gen9legendsou/items.ts +++ b/data/mods/gen9legendsou/items.ts @@ -13,26 +13,6 @@ export const Items: import('../../../sim/dex-items').ModdedItemDataTable = { return true; }, }, - chesnaughtite: { - inherit: true, - isNonstandard: "Unobtainable", - }, - delphoxite: { - inherit: true, - isNonstandard: "Unobtainable", - }, - mewtwonitex: { - inherit: true, - isNonstandard: "Unobtainable", - }, - mewtwonitey: { - inherit: true, - isNonstandard: "Unobtainable", - }, - diancite: { - inherit: true, - isNonstandard: "Unobtainable", - }, zygardite: { inherit: true, onTakeItem(item, source) { diff --git a/data/mods/gen9legendsou/learnsets.ts b/data/mods/gen9legendsou/learnsets.ts index 2ff299e126..029d87db17 100644 --- a/data/mods/gen9legendsou/learnsets.ts +++ b/data/mods/gen9legendsou/learnsets.ts @@ -80,7 +80,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab naturalgift: ["4M"], naturepower: ["8E", "7M", "7E", "6M", "6E", "5E", "4E"], outrage: ["8V"], - petaldance: ["9E", "8E", "7E", "7V", "6E", "5E", "4E", "3E"], + petaldance: ["9M", "9E", "8E", "7E", "7V", "6E", "5E", "4E", "3E"], poisonpowder: ["9M", "8L15", "8V", "7L13", "7V", "6L13", "6S4", "5L13", "4L13", "3L15"], powerwhip: ["9M", "8M", "7E", "6E", "5E", "4E"], protect: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], @@ -179,6 +179,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab naturalgift: ["4M"], naturepower: ["7M", "6M"], outrage: ["8V"], + petaldance: ["9M"], poisonpowder: ["9M", "8L15", "8V", "7L13", "7V", "6L13", "5L13", "4L13", "3L15"], powerwhip: ["9M", "8M"], protect: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], @@ -326,7 +327,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab acrobatics: ["8M", "5S6"], aerialace: ["7M", "6M", "5M", "4M", "3M"], aircutter: ["7E", "6E"], - ancientpower: ["9E", "8E", "7E", "7V", "6E", "5E", "4E", "3E"], + ancientpower: ["9M", "9E", "8E", "7E", "7V", "6E", "5E", "4E", "3E"], attract: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], beatup: ["8M", "7E", "7V", "6E", "5E", "4E", "3E"], bellydrum: ["9E", "8E", "7E", "7V", "6E", "5E", "4E", "3E"], @@ -452,6 +453,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab learnset: { acrobatics: ["8M"], aerialace: ["7M", "6M", "5M", "4M", "3M"], + ancientpower: ["9M"], attract: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], beatup: ["8M"], bide: ["7V"], @@ -557,12 +559,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab aerialace: ["9M", "7M", "6M", "5M", "4M", "3M"], aircutter: ["9M", "4T"], airslash: ["9M", "8M", "8L0", "8V", "7L1", "6L1", "6S1", "6S2", "5L1", "4L1"], + ancientpower: ["9M"], attract: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], beatup: ["8M"], bellydrum: ["9S11"], bide: ["7V"], blastburn: ["9M", "8T", "7T", "6T", "6S4", "5T", "4T", "3T"], - blazekick: ["8M"], + blazekick: ["9M", "8M"], bodyslam: ["9M", "8M", "7V", "3T"], breakingswipe: ["9M", "8M"], brickbreak: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], @@ -587,20 +590,20 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dragonrage: ["8V", "7L17", "7V", "7S6", "7S7", "7S8", "6L17", "6S2", "5L17", "4L17", "3L54", "3S0"], dragonrush: ["9M"], dragontail: ["9M", "8V", "8S10", "7M", "6M", "5M"], - dualwingbeat: ["8T"], + dualwingbeat: ["9M", "8T"], dynamicpunch: ["7V", "3T"], earthquake: ["9M", "8M", "8V", "7M", "7V", "7S9", "6M", "5M", "4M", "3M"], echoedvoice: ["7M", "6M", "5M"], ember: ["9M", "8L1", "8V", "7L1", "7V", "6L1", "6S5", "5L1", "4L1", "3L1"], endure: ["9M", "8M", "7V", "4M", "3T"], facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], - falseswipe: ["8M"], + falseswipe: ["9M", "8M"], fireblast: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], firefang: ["9M", "8M", "8L19", "7L28", "6L28", "6S1", "6S2", "5L28", "4L28"], firepledge: ["9M", "8T", "7T", "6T", "6S4", "5T"], firepunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], firespin: ["9M", "8M", "8L46", "8V", "7L56", "7V", "6L56", "6S5", "5L56", "4L49", "3L64", "3S0"], - fissure: ["7V"], + fissure: ["9M", "7V"], flameburst: ["7L32", "6L32", "6S1", "6S5", "5L32"], flamecharge: ["9M", "7M", "6M", "5M"], flamethrower: ["9M", "8M", "8L30", "8V", "8S10", "7M", "7L47", "7V", "7S8", "6M", "6L47", "6S5", "5M", "5L47", "4M", "4L42", "3M", "3L34"], @@ -633,7 +636,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mudslap: ["7V", "4T", "3T"], mysticalfire: ["8M"], naturalgift: ["4M"], - ominouswind: ["4T"], + ominouswind: ["9M", "4T"], outrage: ["9M", "8M", "8V", "7T", "6T", "5T", "4T"], overheat: ["9M", "8M", "7M", "6M", "6S3", "5M", "4M", "3M"], poweruppunch: ["6M"], @@ -649,14 +652,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab roost: ["8V", "7M", "6M", "5T", "4M"], round: ["8M", "7M", "6M", "5M"], sandstorm: ["9M", "7V"], - scaleshot: ["8T"], + scaleshot: ["9M", "8T"], scaryface: ["9M", "8M", "8L39", "7L21", "7V", "6L21", "6S4", "5L21", "4L21", "3L27"], scorchingsands: ["9M", "8T"], scratch: ["9M", "8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], secretpower: ["6M", "4M", "3M"], seismictoss: ["8V", "8S10", "7V", "7S8", "3T"], shadowclaw: ["9M", "8M", "7M", "7L1", "6M", "6L1", "5M", "5L1", "4M", "4L1"], - skullbash: ["7V"], + skullbash: ["9M", "7V"], skydrop: ["7M", "6M", "5M"], slash: ["9M", "8L24", "8V", "8S10", "7L41", "7V", "7S8", "6L41", "5L41", "4L32", "3L44", "3S0"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], @@ -730,7 +733,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dynamicpunch: ["7V", "3T"], endure: ["9M", "8M", "7V", "4M", "3T"], facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], - fakeout: ["9E", "8E", "7E", "6E", "5E", "4E"], + fakeout: ["9M", "9E", "8E", "7E", "6E", "5E", "4E"], falseswipe: ["8M", "5S2"], flail: ["9E", "8E", "7E", "7V", "6E", "5E", "4E", "3E"], fling: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -780,11 +783,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocktomb: ["9M", "8M", "7M", "6M", "5M", "4M"], rollout: ["7V", "4T", "3T"], round: ["8M", "7M", "6M", "5M"], - scald: ["8M", "8V", "7M", "6M", "5M"], + scald: ["9M", "8M", "8V", "7M", "6M", "5M"], secretpower: ["6M", "4M", "3M"], seismictoss: ["8V", "7V", "3T"], shellsmash: ["9M", "8L27"], - skullbash: ["8L36", "8V", "7L31", "7V", "6L31", "5L31", "4L31", "3L40"], + skullbash: ["9M", "8L36", "8V", "7L31", "7V", "6L31", "5L31", "4L31", "3L40"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], strength: ["7V", "6M", "5M", "4M", "3M"], @@ -849,6 +852,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dynamicpunch: ["7V", "3T"], endure: ["9M", "8M", "7V", "4M", "3T"], facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], + fakeout: ["9M"], falseswipe: ["8M"], fling: ["9M", "8M", "7M", "6M", "5M", "4M"], flipturn: ["9M", "8T"], @@ -889,11 +893,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocktomb: ["9M", "8M", "7M", "6M", "5M", "4M"], rollout: ["7V", "4T", "3T"], round: ["8M", "7M", "6M", "5M"], - scald: ["8M", "8V", "7M", "6M", "5M"], + scald: ["9M", "8M", "8V", "7M", "6M", "5M"], secretpower: ["6M", "4M", "3M"], seismictoss: ["8V", "7V", "3T"], shellsmash: ["9M", "8L35"], - skullbash: ["8L50", "8V", "7L37", "7V", "6L36", "5L36", "4L36", "3L45"], + skullbash: ["9M", "8L50", "8V", "7L37", "7V", "6L36", "5L36", "4L36", "3L45"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], strength: ["7V", "6M", "5M", "4M", "3M"], @@ -953,8 +957,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab earthquake: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], endure: ["9M", "8M", "7V", "4M", "3T"], facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], - fakeout: ["8V"], - falseswipe: ["8M"], + fakeout: ["9M", "8V"], + falseswipe: ["9M", "8M"], fissure: ["7V"], flashcannon: ["9M", "8M", "8L0", "8V", "7M", "7L1", "6M", "6L1", "5M", "5L1", "4M", "4L1"], fling: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -1002,13 +1006,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocktomb: ["9M", "8M", "7M", "6M", "5M", "4M"], rollout: ["7V", "4T", "3T"], round: ["8M", "7M", "6M", "5M"], - scald: ["8M", "8V", "7M", "6M", "5M"], + scald: ["9M", "8M", "8V", "7M", "6M", "5M"], scaryface: ["9M"], secretpower: ["6M", "4M", "3M"], seismictoss: ["8V", "7V", "3T"], shellsmash: ["9M", "8L35"], signalbeam: ["7T", "6T", "5T", "4T"], - skullbash: ["8L56", "8V", "7L40", "7V", "6L39", "5L39", "4L39", "3L55", "3S0"], + skullbash: ["9M", "8L56", "8V", "7L40", "7V", "6L39", "5L39", "4L39", "3L55", "3S0"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], smackdown: ["9M", "7M", "6M", "5M"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], @@ -1170,6 +1174,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab learnset: { bugbite: ["7T", "7L9", "6T", "6L15", "5T", "5L15", "4T", "4L15"], electroweb: ["9M", "7T", "6T", "5T"], + facade: ["9M"], poisonsting: ["9M", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], stringshot: ["9M", "8V", "7L1", "7V", "6L1", "5L1", "4T", "4L1", "3L1"], }, @@ -1183,6 +1188,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab learnset: { bugbite: ["7T", "6T", "5T", "4T"], electroweb: ["9M", "7T", "6T", "5T"], + facade: ["9M"], harden: ["9M", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], irondefense: ["9M", "7T", "6T", "5T", "4T"], poisonsting: ["9M"], @@ -1217,13 +1223,15 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab cut: ["7V", "6M", "5M", "4M", "3M"], defog: ["7T", "4M"], doubleedge: ["7V", "3T"], + doublehit: ["9M"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], drillrun: ["9M", "8V", "7T", "6T", "5T"], + dualwingbeat: ["9M"], electroweb: ["9M", "7T", "6T", "5T"], endeavor: ["7T", "7L41", "6T", "6L40", "5T", "5L40", "4T", "4L40", "3L45"], endure: ["9M", "7V", "4M", "3T"], - facade: ["8V", "7M", "6M", "5M", "4M", "3M"], - falseswipe: ["7M", "6M", "5M", "4M"], + facade: ["9M", "8V", "7M", "6M", "5M", "4M", "3M"], + falseswipe: ["9M", "7M", "6M", "5M", "4M"], fellstinger: ["7L44", "6L45"], flash: ["6M", "5M", "4M"], focusenergy: ["9M", "8V", "7L20", "7V", "6L13", "5L13", "4L13", "3L15"], @@ -1260,7 +1268,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab roost: ["8V", "7M", "6M", "5T", "4M"], round: ["7M", "6M", "5M"], secretpower: ["6M", "4M", "3M"], - silverwind: ["4M"], + silverwind: ["9M", "4M"], skullbash: ["7V"], sleeptalk: ["7M", "7V", "6M", "5T", "4M", "3T"], sludgebomb: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3M", "3S0"], @@ -1309,8 +1317,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab detect: ["7V"], doubleedge: ["7V", "3T"], doubleteam: ["9M", "7M", "7V", "6M", "5M", "4M", "3M"], + dualwingbeat: ["9M"], endure: ["9M", "7V", "4M", "3T"], - facade: ["8V", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8V", "7M", "6M", "5M", "4M", "3M"], featherdance: ["9M", "7L25", "6L25", "5L25", "4L25", "3L31"], feintattack: ["7E", "7V", "6E", "5E", "4E", "3E"], fly: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], @@ -1381,8 +1390,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab detect: ["7V"], doubleedge: ["7V", "3T"], doubleteam: ["9M", "7M", "7V", "6M", "5M", "4M", "3M"], + dualwingbeat: ["9M"], endure: ["9M", "7V", "4M", "3T"], - facade: ["8V", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8V", "7M", "6M", "5M", "4M", "3M"], featherdance: ["9M", "7L27", "6L27", "5L27", "4L27", "3L34", "3S0"], fly: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], frustration: ["7M", "7V", "6M", "5M", "4M", "3M"], @@ -1395,13 +1405,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mirrormove: ["8V", "7L52", "7V", "6L52", "5L52", "4L52", "3L52"], mudslap: ["7V", "4T", "3T"], naturalgift: ["4M"], - ominouswind: ["4T"], + ominouswind: ["9M", "4T"], pluck: ["5M", "4M"], protect: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], quickattack: ["9M", "8V", "7L13", "7V", "6L13", "5L13", "4L13", "3L13"], rage: ["7V"], raindance: ["7M", "6M", "5M", "4M", "3M"], - razorwind: ["8V", "7V"], + razorwind: ["9M", "8V", "7V"], reflect: ["9M", "8V", "7V"], refresh: ["3S0"], rest: ["8V", "7M", "7V", "6M", "5M", "4M", "3M"], @@ -1410,7 +1420,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["7M", "6M", "5M"], sandattack: ["8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], secretpower: ["6M", "4M", "3M"], - skyattack: ["7T", "7V", "6T", "3T"], + skyattack: ["9M", "7T", "7V", "6T", "3T"], sleeptalk: ["7M", "7V", "6M", "5T", "4M", "3T"], snore: ["7T", "7V", "6T", "5T", "4T", "3T"], steelwing: ["7M", "7V", "6M", "4M", "3M", "3S0"], @@ -1455,8 +1465,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab detect: ["7V"], doubleedge: ["7V", "3T"], doubleteam: ["9M", "7M", "7V", "6M", "5M", "4M", "3M"], + dualwingbeat: ["9M"], endure: ["9M", "7V", "4M", "3T"], - facade: ["8V", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8V", "7M", "6M", "5M", "4M", "3M"], featherdance: ["9M", "7L27", "6L27", "5L27", "4L27", "3L34"], fly: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], frustration: ["7M", "7V", "6M", "5M", "4M", "3M"], @@ -1472,13 +1483,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mirrormove: ["8V", "7L56", "7V", "6L56", "5L56", "5S0", "4L56", "3L62"], mudslap: ["7V", "4T", "3T"], naturalgift: ["4M"], - ominouswind: ["4T"], + ominouswind: ["9M", "4T"], pluck: ["5M", "4M"], protect: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], quickattack: ["9M", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], rage: ["7V"], raindance: ["7M", "6M", "5M", "4M", "3M"], - razorwind: ["8V", "7V"], + razorwind: ["9M", "8V", "7V"], reflect: ["9M", "8V", "7V"], rest: ["8V", "7M", "7V", "6M", "5M", "4M", "3M"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], @@ -1486,7 +1497,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["7M", "6M", "5M"], sandattack: ["8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], secretpower: ["6M", "4M", "3M"], - skyattack: ["8V", "7T", "7V", "6T", "5T", "5S0", "4T", "3T"], + skyattack: ["9M", "8V", "7T", "7V", "6T", "5T", "5S0", "4T", "3T"], sleeptalk: ["7M", "7V", "6M", "5T", "4M", "3T"], snore: ["7T", "7V", "6T", "5T", "4T", "3T"], steelwing: ["7M", "7V", "6M", "4M", "3M"], @@ -2102,7 +2113,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mudslap: ["9M"], naturalgift: ["4M"], payback: ["7M", "6M", "5M", "4M"], - poisonfang: ["9E", "7E", "6E", "5E", "4E", "3E"], + poisonfang: ["9M", "9E", "7E", "6E", "5E", "4E", "3E"], poisonjab: ["9M", "8V", "7M", "6M", "5M", "4M"], poisonsting: ["9M", "8V", "7L4", "7V", "6L4", "5L4", "5D", "4L4", "3L8", "3S0", "3S1"], poisontail: ["9M", "9E", "7E", "6E", "5E", "4E"], @@ -2214,6 +2225,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab naturalgift: ["4M"], painsplit: ["9M"], payback: ["7M", "6M", "5M", "4M"], + poisonfang: ["9M"], poisonjab: ["9M", "8V", "7M", "6M", "5M", "4M"], poisonsting: ["9M", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], poisontail: ["9M"], @@ -2303,7 +2315,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endeavor: ["4S5"], endure: ["9M", "9S6", "8M", "7E", "7V", "6E", "5E", "4M", "4S5", "3T"], facade: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - fakeout: ["9E", "8E", "7E", "6E", "5E", "4E"], + fakeout: ["9M", "9E", "8E", "7E", "6E", "5E", "4E"], flail: ["9E", "8E", "7E", "6E", "5E", "4E"], flash: ["7V", "6M", "5M", "4M", "3M"], fling: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -2464,7 +2476,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M", "8M", "7V", "4M", "3T"], extremespeed: ["5S26"], facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], - fakeout: ["6S39"], + fakeout: ["9M", "6S39"], faketears: ["9M"], feint: ["9M", "8L16", "7L21", "6L21", "5L34", "5S29", "4L29"], flash: ["7V", "6M", "6S40", "5M", "4M", "4S13", "3M"], @@ -2514,7 +2526,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab shockwave: ["7T", "6T", "4M", "3M"], signalbeam: ["7T", "6T", "5T", "4T"], sing: ["8S52", "5S23"], - skullbash: ["7V"], + skullbash: ["9M", "7V"], slam: ["8L28", "8V", "7L37", "7V", "7S47", "6L26", "5L26", "4L21", "3L20"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "4S19", "3T"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "4S19", "3T"], @@ -3396,8 +3408,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab seismictoss: ["8V", "7M"], slam: ["8V", "7L24"], sleeptalk: ["9M"], - splishysplash: ["8V", "7T"], spark: ["9M"], + splishysplash: ["8V", "7T"], substitute: ["9M", "8V", "7M"], surf: ["9M"], sweetkiss: ["9M"], @@ -3517,6 +3529,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab counter: ["3T"], covet: ["7T", "6T", "5T"], curse: ["7V"], + dazzlinggleam: ["9M"], defensecurl: ["7V", "3T"], detect: ["7V"], dig: ["9M", "8M", "8V", "6M", "5M", "4M", "3M"], @@ -3525,6 +3538,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleedge: ["7V", "3T"], doubleteam: ["9M", "8L1", "7M", "7V", "6M", "5M", "4M", "3M"], drainingkiss: ["9M", "8M"], + drainpunch: ["9M"], dynamicpunch: ["7V", "3T"], echoedvoice: ["7M", "6M", "5M"], eerieimpulse: ["9M", "8M"], @@ -3535,7 +3549,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endeavor: ["9M"], endure: ["9M", "8M", "7V", "4M", "3T"], facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], - fakeout: ["8V"], + fakeout: ["9M", "8V"], faketears: ["9M"], feint: ["9M", "8L1"], flash: ["7V", "6M", "5M", "4M", "3M"], @@ -3553,6 +3567,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab knockoff: ["9M", "7T", "6T", "5T", "4T"], laserfocus: ["7T"], lightscreen: ["9M", "8M", "8L1", "8V", "7M", "6M", "5M", "4M", "3M"], + magnetbomb: ["9M"], magnetrise: ["7T", "6T", "5T", "4T"], megakick: ["8M", "7V", "3T"], megapunch: ["8M", "7V", "3T"], @@ -3581,7 +3596,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab seismictoss: ["8V", "7V", "3T"], shockwave: ["7T", "6T", "4M", "3M"], signalbeam: ["7T", "6T", "5T", "4T"], - skullbash: ["7V"], + skullbash: ["9M", "7V"], slam: ["8L1"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], @@ -3626,6 +3641,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab charm: ["9M", "8M", "8L1"], confide: ["7M"], covet: ["7T"], + dazzlinggleam: ["9M"], dig: ["9M", "8M", "8V"], discharge: ["9M", "8L1"], doubleteam: ["9M", "8L1", "8V", "7M"], @@ -3640,7 +3656,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M", "8M"], expandingforce: ["9M", "8T"], facade: ["9M", "8M", "8V", "7M"], - fakeout: ["8V"], + fakeout: ["9M", "8V"], faketears: ["9M"], feint: ["9M", "8L1"], fling: ["9M", "8M", "7M"], @@ -3660,6 +3676,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lightscreen: ["9M", "8M", "8L1", "8V", "7M"], magiccoat: ["7T"], magicroom: ["8M", "7T"], + magnetbomb: ["9M"], magnetrise: ["7T"], megakick: ["8M"], megapunch: ["8M"], @@ -3687,6 +3704,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab shockwave: ["7T"], signalbeam: ["7T"], skillswap: ["9M"], + skullbash: ["9M"], slam: ["8L1"], sleeptalk: ["9M", "8M", "7M"], snore: ["8M", "7T"], @@ -4886,7 +4904,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], drainingkiss: ["9M", "8M"], drainpunch: ["9M", "8M", "7T", "6T", "5T", "4M"], - dreameater: ["8V", "7M", "7V", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], dualwingbeat: ["9M", "8T"], dynamicpunch: ["7V", "3T"], echoedvoice: ["7M", "6M", "5M"], @@ -4997,7 +5015,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderbolt: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], thunderpunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], thunderwave: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], - triattack: ["8M", "8V", "7V"], + triattack: ["9M", "8M", "8V", "7V"], trick: ["9M", "8M", "7T", "6T", "5T", "4T"], uproar: ["9M", "8M"], wakeupslap: ["7L22", "6L22", "5L22", "4L22"], @@ -5052,7 +5070,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], drainingkiss: ["9M", "8M"], drainpunch: ["9M", "8M", "7T", "6T", "5T", "4M"], - dreameater: ["8V", "7M", "7V", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], dualwingbeat: ["9M", "8T"], dynamicpunch: ["7V", "3T"], echoedvoice: ["7M", "6M", "5M"], @@ -5167,7 +5185,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderbolt: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], thunderpunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], thunderwave: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], - triattack: ["8M", "8V", "7V"], + triattack: ["9M", "8M", "8V", "7V"], trick: ["9M", "8M", "7T", "6T", "5T", "4T"], uproar: ["9M", "8M"], watergun: ["7V"], @@ -5561,9 +5579,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab attract: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], bodyslam: ["9M", "8M", "3T"], bounce: ["8M", "7T", "6T", "5T", "4T"], + brickbreak: ["9M"], + calmmind: ["9M"], captivate: ["7E", "6E", "5E", "4M"], charm: ["9M", "8M", "8L20", "7L1", "7V", "6L1", "5L1", "4L1", "3L1", "3S0"], confide: ["7M", "6M"], + confusion: ["9M"], copycat: ["9M", "8L1", "7L11", "6L11", "5L17", "4L17"], counter: ["3T"], covet: ["9E", "8E", "7T", "7E", "6T", "6E", "5T", "5E", "4E"], @@ -5582,6 +5603,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab encore: ["9M"], endeavor: ["9M", "7T", "6T", "5T", "4T"], endure: ["9M", "8M", "7V", "4M", "3T"], + energyball: ["9M"], facade: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], faketears: ["9M", "8M", "7E", "6E", "5E", "5D", "4E", "3E"], feintattack: ["7E", "7V", "6E", "5E", "4E", "3E"], @@ -5604,9 +5626,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab magiccoat: ["7T", "6T", "5T", "4T"], megakick: ["8M", "3T"], megapunch: ["8M", "3T"], - mimic: ["3T"], + mimic: ["9M", "3T"], mistyterrain: ["9M", "8M", "7E", "6E"], mudslap: ["7V", "4T", "3T"], + nastyplot: ["9M"], naturalgift: ["4M"], nightmare: ["7V", "3T"], painsplit: ["9M", "7T", "6T", "5T", "4T"], @@ -5617,6 +5640,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab protect: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], psychic: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], psychup: ["9M", "7M", "7V", "6M", "5M", "4M", "3T"], + psyshock: ["9M"], punishment: ["7E", "6E", "5E"], raindance: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], recycle: ["7T", "6T", "5T", "4M"], @@ -5624,7 +5648,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rest: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], roleplay: ["7T", "6T", "5T", "4T"], - rollout: ["9E", "8E", "7V", "4T", "3T"], + rollout: ["9M", "9E", "8E", "7V", "4T", "3T"], round: ["8M", "7M", "6M", "5M"], safeguard: ["8M", "7M", "6M", "5M", "4M", "3M"], screech: ["8M"], @@ -5636,22 +5660,26 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab sleeptalk: ["9M", "8M", "7M", "7E", "7V", "6M", "6E", "5T", "5E", "4M", "3T"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], solarbeam: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], + stealthrock: ["9M"], substitute: ["9M", "8M", "7M", "6M", "5M", "4M", "3T"], sunnyday: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], swagger: ["7M", "7V", "6M", "5M", "4M", "3T"], sweetkiss: ["9M", "8L8", "7L9", "7V", "6L9", "5L13", "4L13", "3L14"], swift: ["9M"], + tackle: ["9M"], takedown: ["9M"], + taunt: ["9M"], terablast: ["9M"], thunderwave: ["9M", "8M", "7M", "6M", "5M", "4M", "3T"], tickle: ["3S0"], trailblaze: ["9M"], uproar: ["8M", "7T", "6T", "5T", "4T"], - waterpulse: ["7T", "6T", "4M", "3M"], + waterpulse: ["9M", "7T", "6T", "4M", "3M"], wildcharge: ["9M", "8M", "7M", "6M", "5M"], - wish: ["9E", "8E", "7E", "6E", "5E", "4E", "3E"], + wish: ["9M", "9E", "8E", "7E", "6E", "5E", "4E", "3E"], workup: ["8M", "7M", "5M"], zapcannon: ["7V"], + zenheadbutt: ["9M"], }, eventData: [ { generation: 3, level: 5, shiny: 1, abilities: ["cutecharm"], moves: ["sing", "charm", "defensecurl", "tickle"], pokeball: "pokeball", emeraldEventEgg: true }, @@ -5677,6 +5705,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab charm: ["9M", "8M", "8L1"], chillingwater: ["9M"], confide: ["7M", "6M"], + confusion: ["9M"], copycat: ["9M", "8L1"], counter: ["7V", "3T"], covet: ["9M", "8L8", "7T", "6T", "5T"], @@ -5693,7 +5722,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], drainingkiss: ["9M", "8M"], drainpunch: ["9M", "8M", "7T", "6T", "5T", "4M"], - dreameater: ["8V", "7M", "7V", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], dynamicpunch: ["7V", "3T"], echoedvoice: ["9M", "8L4", "7M", "6M", "5M"], encore: ["9M"], @@ -5701,6 +5730,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M", "8M", "7V", "4M", "3T"], energyball: ["9M"], facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], + fakeout: ["9M"], faketears: ["9M", "8M"], fireblast: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], firepunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], @@ -5712,7 +5742,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab grassknot: ["9M", "8M", "7M", "6M", "5M", "4M"], gravity: ["9M", "7T", "6T", "5T", "4T"], gyroball: ["9M", "8M", "8L32", "7M", "7L35", "6M", "6L37", "5M", "5L37", "4M", "4L33"], - headbutt: ["8V", "7V", "4T"], + headbutt: ["9M", "8V", "7V", "4T"], healbell: ["7T", "6T", "5T", "4T"], helpinghand: ["9M", "8M", "8V", "7T", "6T", "5T", "4T"], hypervoice: ["9M", "8M", "8L36", "7T", "7L41", "6T", "6L44", "5T", "5L49", "4L45", "3L44"], @@ -5732,11 +5762,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mimic: ["9M", "8L28", "8V", "7L38", "7V", "6L37", "5L45", "4L41", "3T", "3L39"], mistyexplosion: ["9M", "8T"], mistyterrain: ["9M", "8M"], + moonblast: ["9M"], mudslap: ["7V", "4T", "3T"], nastyplot: ["9M"], naturalgift: ["4M"], nightmare: ["7V", "3T"], painsplit: ["9M", "7T", "6T", "5T", "4T"], + perishsong: ["9M"], playnice: ["7L9", "6L8"], playrough: ["9M", "8M", "8L40", "8V"], pound: ["9M", "8L1", "8V", "7L5", "7V", "6L5", "5L9", "4L9", "3L9"], @@ -5755,14 +5787,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab retaliate: ["8M", "6M", "5M"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], roleplay: ["7T", "6T", "5T", "4T"], - rollout: ["7L20", "7V", "6L21", "5L21", "4T", "4L17", "3T", "3L19"], + rollout: ["9M", "7L20", "7V", "6L21", "5L21", "4T", "4L17", "3T", "3L19"], round: ["9M", "8M", "8L16", "7M", "7L22", "6M", "6L17", "5M", "5L17"], safeguard: ["8M", "7M", "6M", "5M", "4M", "3M"], sandstorm: ["9M"], screech: ["8M"], secretpower: ["6M", "4M", "3M"], seismictoss: ["8V", "7V", "3T"], - selfdestruct: ["8M"], + selfdestruct: ["9M", "8M"], shadowball: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], shockwave: ["7T", "6T", "4M", "3M"], sing: ["9M", "8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], @@ -5785,6 +5817,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab swallow: ["9M", "8L12", "7L25"], sweetkiss: ["9M", "8L1"], swift: ["9M"], + tackle: ["9M"], takedown: ["9M", "7V"], taunt: ["9M"], telekinesis: ["7T"], @@ -5796,12 +5829,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderpunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], thunderwave: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], trailblaze: ["9M"], - triattack: ["8M", "8V", "7V"], + triattack: ["9M", "8M", "8V", "7V"], uproar: ["9M", "8M"], wakeupslap: ["7L27", "6L28", "5L41", "4L37"], watergun: ["7V"], waterpulse: ["9M", "7T", "6T", "4M", "3M"], wildcharge: ["9M", "8M", "7M", "6M", "5M"], + wish: ["9M"], workup: ["8M", "7M", "5M"], zapcannon: ["7V"], zenheadbutt: ["9M"], @@ -5832,6 +5866,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab charm: ["9M", "8M", "8L1"], chillingwater: ["9M"], confide: ["7M", "6M"], + confusion: ["9M"], copycat: ["9M", "8L1"], counter: ["7V", "3T"], covet: ["9M", "8L1", "7T", "6T", "5T"], @@ -5848,7 +5883,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], drainingkiss: ["9M", "8M"], drainpunch: ["9M", "8M", "7T", "6T", "5T", "4M"], - dreameater: ["8V", "7M", "7V", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], dynamicpunch: ["7V", "3T"], echoedvoice: ["9M", "8L1", "7M", "6M", "5M"], encore: ["9M"], @@ -5857,6 +5892,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab energyball: ["9M"], expandingforce: ["9M", "8T"], facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], + fakeout: ["9M"], faketears: ["9M", "8M"], fireblast: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], firepunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], @@ -5870,7 +5906,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab grassknot: ["9M", "8M", "7M", "6M", "5M", "4M"], gravity: ["9M", "7T", "6T", "5T", "4T"], gyroball: ["9M", "8M", "8L1", "7M", "6M", "5M", "4M"], - headbutt: ["8V", "7V", "4T"], + headbutt: ["9M", "8V", "7V", "4T"], healbell: ["7T", "6T", "5T", "4T"], helpinghand: ["9M", "8M", "8V", "7T", "6T", "5T", "4T"], hyperbeam: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], @@ -5894,11 +5930,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab minimize: ["8V"], mistyexplosion: ["9M", "8T"], mistyterrain: ["9M", "8M"], + moonblast: ["9M"], mudslap: ["7V", "4T", "3T"], nastyplot: ["9M"], naturalgift: ["4M"], nightmare: ["7V", "3T"], painsplit: ["9M", "7T", "6T", "5T", "4T"], + perishsong: ["9M"], playrough: ["9M", "8M", "8L1", "8V", "7L1", "6L1"], pound: ["9M", "8L1", "8V"], poweruppunch: ["6M"], @@ -5916,14 +5954,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab retaliate: ["8M", "6M", "5M"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], roleplay: ["7T", "6T", "5T", "4T"], - rollout: ["7V", "4T", "3T"], + rollout: ["9M", "7V", "4T", "3T"], round: ["9M", "8M", "8L1", "7M", "6M", "5M"], safeguard: ["8M", "7M", "6M", "5M", "4M", "3M"], sandstorm: ["9M"], screech: ["8M"], secretpower: ["6M", "4M", "3M"], seismictoss: ["8V", "7V", "3T"], - selfdestruct: ["8M"], + selfdestruct: ["9M", "8M"], shadowball: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], shockwave: ["7T", "6T", "4M", "3M"], sing: ["9M", "8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], @@ -5946,6 +5984,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab swallow: ["9M", "8L1"], sweetkiss: ["9M", "8L1"], swift: ["9M"], + tackle: ["9M"], takedown: ["9M", "7V"], taunt: ["9M"], telekinesis: ["7T"], @@ -5957,11 +5996,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderpunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], thunderwave: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], trailblaze: ["9M"], - triattack: ["8M", "8V", "7V"], + triattack: ["9M", "8M", "8V", "7V"], uproar: ["9M", "8M"], watergun: ["7V"], waterpulse: ["9M", "7T", "6T", "4M", "3M"], wildcharge: ["9M", "8M", "7M", "6M", "5M"], + wish: ["9M"], workup: ["8M", "7M", "5M"], zapcannon: ["7V"], zenheadbutt: ["9M"], @@ -5972,86 +6012,86 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, zubat: { learnset: { - absorb: ["8L1", "8V", "7L1"], + absorb: ["9M", "8L1", "8V", "7L1"], acrobatics: ["8M", "7M", "6M", "6L30", "5M", "5L30"], aerialace: ["7M", "6M", "5M", "4M", "3M"], - agility: ["8M"], + agility: ["9M", "8M"], aircutter: ["8L25", "7L19", "6L19", "5L25", "4T", "4L25", "3L31"], - airslash: ["8M", "8L50", "8V", "7L41", "6L41", "5L45", "4L41"], + airslash: ["9M", "8M", "8L50", "8V", "7L41", "6L41", "5L45", "4L41"], assurance: ["8M"], astonish: ["8L5", "7L7", "6L7", "5L8", "4L9", "3L6"], attract: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], bide: ["7V"], - bite: ["8L30", "8V", "7L11", "7V", "6L11", "5L12", "4L13", "3L16"], + bite: ["9M", "8L30", "8V", "7L11", "7V", "6L11", "5L12", "4L13", "3L16"], bravebird: ["8M", "7E", "6E", "5E", "4E"], captivate: ["4M"], confide: ["7M", "6M"], - confuseray: ["8L45", "8V", "7L17", "7V", "6L17", "5L19", "4L21", "3L26"], - crunch: ["8M"], - curse: ["8E", "7E", "7V", "6E", "5E", "4E", "3E"], + confuseray: ["9M", "8L45", "8V", "7L17", "7V", "6L17", "5L19", "4L21", "3L26"], + crunch: ["9M", "8M"], + curse: ["9M", "8E", "7E", "7V", "6E", "5E", "4E", "3E"], defog: ["8E", "7T", "7E", "6E", "5E", "4M"], detect: ["7V"], doubleedge: ["7V", "3T"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], - dualwingbeat: ["8T"], - endure: ["8M", "7V", "4M", "3T"], - facade: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + dualwingbeat: ["9M", "8T"], + endure: ["9M", "8M", "7V", "4M", "3T"], + facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], feintattack: ["7E", "7V", "6E", "5E", "4E", "3E"], - fly: ["8M", "8V", "7M", "6M", "5M", "4M"], + fly: ["9M", "8M", "8V", "7M", "6M", "5M", "4M"], frustration: ["7M", "7V", "6M", "5M", "4M", "3M"], - gigadrain: ["8M", "7T", "7E", "7V", "6T", "6E", "5T", "5E", "4M", "3M"], - gust: ["8E", "7E", "7V", "6E", "5E", "4E", "3E"], - haze: ["8L35", "8V", "7L35", "7V", "6L35", "5L41", "4L37", "3L46"], + gigadrain: ["9M", "8M", "7T", "7E", "7V", "6T", "6E", "5T", "5E", "4M", "3M"], + gust: ["9M", "8E", "7E", "7V", "6E", "5E", "4E", "3E"], + haze: ["9M", "8L35", "8V", "7L35", "7V", "6L35", "5L41", "4L37", "3L46"], headbutt: ["8V"], - heatwave: ["8M", "7T", "6T", "5T", "4T"], - hypnosis: ["8E", "7E", "6E", "5E", "5D", "4E"], - leechlife: ["8M", "8L55", "8V", "7M", "7L31", "7V", "6L1", "5L1", "4L1", "3L1"], + heatwave: ["9M", "8M", "7T", "6T", "5T", "4T"], + hypnosis: ["9M", "8E", "7E", "6E", "5E", "5D", "4E"], + leechlife: ["9M", "8M", "8L55", "8V", "7M", "7L31", "7V", "6L1", "5L1", "4L1", "3L1"], meanlook: ["8L10", "7L29", "7V", "6L29", "5L29", "4L29", "3L36"], megadrain: ["8V", "7V"], mimic: ["7V", "3T"], - nastyplot: ["8M", "7E", "6E", "5E", "4E"], + nastyplot: ["9M", "8M", "7E", "6E", "5E", "4E"], naturalgift: ["4M"], - ominouswind: ["4T"], + ominouswind: ["9M", "4T"], payback: ["8M", "7M", "6M", "5M", "4M"], pluck: ["5M", "4M"], - poisonfang: ["8L15", "7L25", "6L25", "5L37", "4L33", "3L41"], - protect: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + poisonfang: ["9M", "8L15", "7L25", "6L25", "5L37", "4L33", "3L41"], + protect: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], pursuit: ["7E", "7V", "6E", "5E", "4E", "3E"], - quickattack: ["8E", "7E", "7V", "6E", "5E", "4E", "3E"], + quickattack: ["9M", "8E", "7E", "7V", "6E", "5E", "4E", "3E"], quickguard: ["8L20", "7L43", "6L43"], rage: ["7V"], raindance: ["8M", "7M", "6M", "5M", "4M", "3M"], - razorwind: ["7V"], + razorwind: ["9M", "7V"], rest: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], roost: ["8V", "7M", "6M", "5T", "4M"], round: ["8M", "7M", "6M", "5M"], secretpower: ["6M", "4M", "3M"], - shadowball: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + shadowball: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], sleeptalk: ["8M", "7M", "7V", "6M", "5T", "4M", "3T"], - sludgebomb: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + sludgebomb: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], snatch: ["7T", "6T", "5T", "4M", "3M"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], steelwing: ["8M", "7M", "7E", "7V", "6M", "6E", "5E", "4M", "3M"], - substitute: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], + substitute: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], sunnyday: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], superfang: ["7T", "6T", "5T", "5D", "4T"], - supersonic: ["8L1", "8V", "7L5", "7V", "6L4", "5L4", "5D", "4L5", "3L6"], - swagger: ["7M", "7V", "6M", "5M", "4M", "3T"], - swift: ["8M", "8V", "7L23", "7V", "6L23", "5L23", "4T", "3T"], + supersonic: ["9M", "8L1", "8V", "7L5", "7V", "6L4", "5L4", "5D", "4L5", "3L6"], + swagger: ["9M", "7M", "7V", "6M", "5M", "4M", "3T"], + swift: ["9M", "8M", "8V", "7L23", "7V", "6L23", "5L23", "4T", "3T"], tailwind: ["7T", "6T", "5T", "4T"], takedown: ["7V"], - taunt: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + taunt: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], thief: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], torment: ["7M", "6M", "5M", "4M", "3M"], twister: ["4T"], uproar: ["8M", "7T", "6T", "5T", "4T"], - uturn: ["8M", "8V", "7M", "6M", "5M", "4M"], + uturn: ["9M", "8M", "8V", "7M", "6M", "5M", "4M"], venomdrench: ["8M", "7E", "6E"], venoshock: ["8M", "8L40", "7M", "7L37", "6M", "6L37", "5M"], - whirlwind: ["8E", "7E", "7V", "6E", "5E", "4E", "3E"], - wingattack: ["8E", "8V", "7L13", "7V", "6L13", "5L15", "4L17", "3L21"], - zenheadbutt: ["8M", "7T", "7E", "6T", "6E", "5T", "5E", "4T", "4E"], + whirlwind: ["9M", "8E", "7E", "7V", "6E", "5E", "4E", "3E"], + wingattack: ["9M", "8E", "8V", "7L13", "7V", "6L13", "5L15", "4L17", "3L21"], + zenheadbutt: ["9M", "8M", "7T", "7E", "6T", "6E", "5T", "5E", "4T", "4E"], }, encounters: [ { generation: 1, level: 6 }, @@ -6060,85 +6100,90 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, golbat: { learnset: { - absorb: ["8L1", "8V", "7L1"], + absorb: ["9M", "8L1", "8V", "7L1"], acrobatics: ["8M", "7M", "6M", "6L33", "5M", "5L33"], - aerialace: ["7M", "6M", "5M", "4M", "3M"], - agility: ["8M"], + aerialace: ["9M", "7M", "6M", "5M", "4M", "3M"], + agility: ["9M", "8M"], aircutter: ["8L27", "7L19", "6L19", "5L27", "4T", "4L27", "3L35"], - airslash: ["8M", "8L62", "8V", "7L48", "6L48", "5L52", "4L51"], + airslash: ["9M", "8M", "8L62", "8V", "7L48", "6L48", "5L52", "4L51"], assurance: ["8M"], astonish: ["8L1", "7L1", "6L1", "5L1", "4L1", "3L1"], attract: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], bide: ["7V"], - bite: ["8L34", "8V", "7L1", "7V", "6L1", "5L12", "4L13", "3L16"], + bite: ["9M", "8L34", "8V", "7L1", "7V", "6L1", "5L12", "4L13", "3L16"], bravebird: ["8M"], captivate: ["4M"], confide: ["7M", "6M"], - confuseray: ["8L55", "8V", "7L17", "7V", "6L17", "5L19", "4L21", "3L28"], - crunch: ["8M", "8V"], - curse: ["7V"], + confuseray: ["9M", "8L55", "8V", "7L17", "7V", "6L17", "5L19", "4L21", "3L28"], + crunch: ["9M", "8M", "8V"], + curse: ["9M", "7V"], defog: ["7T", "4M"], detect: ["7V"], doubleedge: ["7V", "3T"], - doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], - dualwingbeat: ["8T"], - endure: ["8M", "7V", "4M", "3T"], - facade: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], - fly: ["8M", "8V", "7M", "6M", "5M", "4M"], + doubleteam: ["9M", "7M", "7V", "6M", "5M", "4M", "3M"], + dualwingbeat: ["9M", "8T"], + endure: ["9M", "8M", "7V", "4M", "3T"], + facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], + fly: ["9M", "8M", "8V", "7M", "6M", "5M", "4M"], frustration: ["7M", "7V", "6M", "5M", "4M", "3M"], - gigadrain: ["8M", "7T", "7V", "6T", "5T", "4M", "3M"], - gigaimpact: ["8M", "7M", "6M", "5M", "4M"], - haze: ["8L41", "8V", "7L40", "7V", "6L40", "5L47", "4L45", "3L56"], + gigadrain: ["9M", "8M", "7T", "7V", "6T", "5T", "4M", "3M"], + gigaimpact: ["9M", "8M", "7M", "6M", "5M", "4M"], + gust: ["9M"], + haze: ["9M", "8L41", "8V", "7L40", "7V", "6L40", "5L47", "4L45", "3L56"], headbutt: ["8V"], - heatwave: ["8M", "7T", "6T", "5T", "4T"], - hyperbeam: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], - leechlife: ["8M", "8L69", "8V", "7M", "7L35", "7V", "6L1", "5L1", "4L1", "3L1"], + heatwave: ["9M", "8M", "7T", "6T", "5T", "4T"], + hyperbeam: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + hypnosis: ["9M"], + leechlife: ["9M", "8M", "8L69", "8V", "7M", "7L35", "7V", "6L1", "5L1", "4L1", "3L1"], meanlook: ["8L1", "7L32", "7V", "6L32", "5L33", "4L33", "3L42"], megadrain: ["8V", "7V"], mimic: ["7V", "3T"], - nastyplot: ["8M"], + nastyplot: ["9M", "8M"], naturalgift: ["4M"], - ominouswind: ["4T"], + ominouswind: ["9M", "4T"], payback: ["8M", "7M", "6M", "5M", "4M"], pluck: ["5M", "4M"], - poisonfang: ["8L15", "7L27", "6L27", "5L42", "4L39", "3L49"], - protect: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], - quickattack: ["8V"], + poisonfang: ["9M", "8L15", "7L27", "6L27", "5L42", "4L39", "3L49"], + protect: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + quickattack: ["9M", "8V"], quickguard: ["8L20", "7L51", "6L51"], rage: ["7V"], raindance: ["8M", "7M", "6M", "5M", "4M", "3M"], - razorwind: ["7V"], + razorwind: ["9M", "7V"], rest: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], roost: ["8V", "7M", "6M", "5T", "4M"], round: ["8M", "7M", "6M", "5M"], - screech: ["8M", "8L1", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], + screech: ["9M", "8M", "8L1", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], secretpower: ["6M", "4M", "3M"], - shadowball: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + shadowball: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], + skyattack: ["9M"], sleeptalk: ["8M", "7M", "7V", "6M", "5T", "4M", "3T"], - sludgebomb: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + sludgebomb: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], snatch: ["7T", "6T", "5T", "4M", "3M"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], steelwing: ["8M", "7M", "7V", "6M", "4M", "3M"], - substitute: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], + substitute: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], sunnyday: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], superfang: ["7T", "6T", "5T", "4T"], - supersonic: ["8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], - swagger: ["7M", "7V", "6M", "5M", "4M", "3T"], - swift: ["8M", "8V", "7L24", "7V", "6L24", "5L24", "4T", "3T"], + supersonic: ["9M", "8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], + swagger: ["9M", "7M", "7V", "6M", "5M", "4M", "3T"], + swift: ["9M", "8M", "8V", "7L24", "7V", "6L24", "5L24", "4T", "3T"], tailwind: ["7T", "6T", "5T", "4T"], takedown: ["7V"], - taunt: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + taunt: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], thief: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], torment: ["7M", "6M", "5M", "4M", "3M"], + toxic: ["9M"], twister: ["4T"], uproar: ["8M", "7T", "6T", "5T", "4T"], - uturn: ["8M", "8V", "7M", "6M", "5M", "4M"], + uturn: ["9M", "8M", "8V", "7M", "6M", "5M", "4M"], venomdrench: ["8M"], venoshock: ["8M", "8L48", "7M", "7L43", "6M", "6L43", "5M"], - whirlwind: ["8V", "7V"], - wingattack: ["8V", "7L13", "7V", "6L13", "5L15", "4L17", "3L21"], - zenheadbutt: ["8M", "7T", "6T", "5T", "4T"], + whirlwind: ["9M", "8V", "7V"], + wingattack: ["9M", "8V", "7L13", "7V", "6L13", "5L15", "4L17", "3L21"], + xscissor: ["9M"], + zenheadbutt: ["9M", "8M", "7T", "6T", "5T", "4T"], }, encounters: [ { generation: 2, level: 13 }, @@ -6150,83 +6195,94 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, crobat: { learnset: { - absorb: ["8L1", "7L1"], + absorb: ["9M", "8L1", "7L1"], + acidspray: ["9M"], acrobatics: ["8M", "7M", "6M", "6L33", "5M", "5L33"], - aerialace: ["7M", "6M", "5M", "4M", "3M"], - agility: ["8M"], + aerialace: ["9M", "7M", "6M", "5M", "4M", "3M"], + agility: ["9M", "8M"], aircutter: ["8L27", "7L19", "6L19", "5L27", "4T", "4L27", "3L35"], - airslash: ["8M", "8L62", "7L48", "7S1", "6L48", "5L52", "4L51", "4S0"], + airslash: ["9M", "8M", "8L62", "7L48", "7S1", "6L48", "5L52", "4L51", "4S0"], assurance: ["8M"], astonish: ["8L1", "7L1", "6L1", "5L1", "4L1", "3L1"], attract: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], - bite: ["8L34", "7L1", "7V", "6L1", "5L12", "4L13", "3L16"], - bravebird: ["8M"], + bite: ["9M", "8L34", "7L1", "7V", "6L1", "5L12", "4L13", "3L16"], + bravebird: ["9M", "8M"], captivate: ["4M"], confide: ["7M", "6M"], - confuseray: ["8L55", "7L17", "7V", "6L17", "5L19", "4L21", "3L28"], + confuseray: ["9M", "8L55", "7L17", "7V", "6L17", "5L19", "4L21", "3L28"], crosspoison: ["8M", "8L0", "7L1", "6L1", "5L1", "4L1"], - crunch: ["8M"], - curse: ["7V"], - darkpulse: ["8M", "7M", "7S1", "6M", "5T", "4M"], + crunch: ["9M", "8M"], + curse: ["9M", "7V"], + darkpulse: ["9M", "8M", "7M", "7S1", "6M", "5T", "4M"], defog: ["7T", "4M"], detect: ["7V"], doubleedge: ["3T"], - doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], - dualwingbeat: ["8T"], - endure: ["8M", "7V", "4M", "3T"], - facade: ["8M", "7M", "6M", "5M", "4M", "3M"], - fly: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], + doublehit: ["9M"], + doubleteam: ["9M", "7M", "7V", "6M", "5M", "4M", "3M"], + dualwingbeat: ["9M", "8T"], + endure: ["9M", "8M", "7V", "4M", "3T"], + facade: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], + fly: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], frustration: ["7M", "7V", "6M", "5M", "4M", "3M"], - gigadrain: ["8M", "7T", "7V", "6T", "5T", "4M", "3M"], - gigaimpact: ["8M", "7M", "6M", "5M", "4M"], - haze: ["8L41", "7L40", "7V", "6L40", "5L47", "4L45", "3L56"], - heatwave: ["8M", "7T", "6T", "5T", "4T", "4S0"], + gigadrain: ["9M", "8M", "7T", "7V", "6T", "5T", "4M", "3M"], + gigaimpact: ["9M", "8M", "7M", "6M", "5M", "4M"], + gust: ["9M"], + haze: ["9M", "8L41", "7L40", "7V", "6L40", "5L47", "4L45", "3L56"], + heatwave: ["9M", "8M", "7T", "6T", "5T", "4T", "4S0"], hex: ["8M"], - hurricane: ["8M"], - hyperbeam: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], - leechlife: ["8M", "8L69", "7M", "7L35", "7V", "6L1", "5L1", "4L1", "3L1"], + hurricane: ["9M", "8M"], + hyperbeam: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], + hypnosis: ["9M"], + knockoff: ["9M"], + leechlife: ["9M", "8M", "8L69", "7M", "7L35", "7V", "6L1", "5L1", "4L1", "3L1"], meanlook: ["8L1", "7L32", "7V", "6L32", "5L33", "4L33", "3L42"], mimic: ["3T"], - nastyplot: ["8M"], + nastyplot: ["9M", "8M"], naturalgift: ["4M"], - ominouswind: ["4T"], + nightslash: ["9M"], + ominouswind: ["9M", "4T"], payback: ["8M", "7M", "6M", "5M", "4M"], pluck: ["5M", "4M"], - poisonfang: ["8L15", "7L27", "6L27", "5L42", "4L39", "3L49"], - protect: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], + poisonfang: ["9M", "8L15", "7L27", "6L27", "5L42", "4L39", "3L49"], + protect: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], + psychicfangs: ["9M"], + quickattack: ["9M"], quickguard: ["8L20", "7L51", "6L51"], raindance: ["8M", "7M", "6M", "5M", "4M", "3M"], + razorwind: ["9M"], rest: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], roost: ["7M", "6M", "5T", "4M"], round: ["8M", "7M", "6M", "5M"], - screech: ["8M", "8L1", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], + screech: ["9M", "8M", "8L1", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], secretpower: ["6M", "4M", "3M"], - shadowball: ["8M", "7M", "6M", "5M", "4M", "3M"], - skyattack: ["7T", "6T", "5T", "4T"], + shadowball: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], + skyattack: ["9M", "7T", "6T", "5T", "4T"], sleeptalk: ["8M", "7M", "7V", "6M", "5T", "4M", "3T"], - sludgebomb: ["8M", "7M", "7S1", "6M", "5M", "4M", "4S0", "3M"], + sludgebomb: ["9M", "8M", "7M", "7S1", "6M", "5M", "4M", "4S0", "3M"], snatch: ["7T", "6T", "5T", "4M", "3M"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], steelwing: ["8M", "7M", "7V", "6M", "4M", "3M"], - substitute: ["8M", "7M", "6M", "5M", "4M", "3T"], + substitute: ["9M", "8M", "7M", "6M", "5M", "4M", "3T"], sunnyday: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], superfang: ["7T", "6T", "5T", "4T", "4S0"], - supersonic: ["8L1", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], - swagger: ["7M", "7V", "6M", "5M", "4M", "3T"], - swift: ["8M", "7L24", "7V", "6L24", "5L24", "4T", "3T"], + supersonic: ["9M", "8L1", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], + swagger: ["9M", "7M", "7V", "6M", "5M", "4M", "3T"], + swift: ["9M", "8M", "7L24", "7V", "6L24", "5L24", "4T", "3T"], tailwind: ["8L1", "7T", "6T", "5T", "4T"], - taunt: ["8M", "7M", "6M", "5M", "4M", "3M"], + taunt: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], thief: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], torment: ["7M", "6M", "5M", "4M", "3M"], + toxic: ["9M"], twister: ["4T"], uproar: ["8M", "7T", "6T", "5T", "4T"], - uturn: ["8M", "7M", "6M", "5M", "4M"], + uturn: ["9M", "8M", "7M", "6M", "5M", "4M"], venomdrench: ["8M"], venoshock: ["8M", "8L48", "7M", "7L43", "6M", "6L43", "5M"], - wingattack: ["7L13", "7V", "6L13", "5L15", "4L17", "3L21"], - xscissor: ["8M", "7M", "6M", "5M", "4M"], - zenheadbutt: ["8M", "7T", "6T", "5T", "4T"], + whirlwind: ["9M"], + wingattack: ["9M", "7L13", "7V", "6L13", "5L15", "4L17", "3L21"], + xscissor: ["9M", "8M", "7M", "6M", "5M", "4M"], + zenheadbutt: ["9M", "8M", "7T", "6T", "5T", "4T"], }, eventData: [ { generation: 4, level: 30, gender: "M", nature: "Timid", moves: ["heatwave", "airslash", "sludgebomb", "superfang"], pokeball: "cherishball" }, @@ -7291,14 +7347,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab chillingwater: ["9M"], confide: ["7M", "6M"], covet: ["9E", "8E", "7T", "6T", "5T"], - curse: ["7V"], + curse: ["9M", "7V"], cut: ["6M", "5M", "4M", "3M"], darkpulse: ["9M", "8M", "8V", "7M", "6M", "5T", "4M"], defensecurl: ["7V", "3T"], detect: ["7V"], dig: ["9M", "8M", "8V", "6M", "5M", "4M", "3M"], doubleedge: ["9M", "7V", "3T"], - doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], + doubleteam: ["9M", "7M", "7V", "6M", "5M", "4M", "3M"], dreameater: ["7M", "7V", "6M", "5M", "4M", "3T"], echoedvoice: ["7M", "6M", "5M"], endeavor: ["9M"], @@ -7317,18 +7373,20 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab growl: ["9M", "8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1", "3S0", "3S1", "3S2"], gunkshot: ["9M", "8M", "7T", "6T", "5T", "4T"], happyhour: ["6S7"], - headbutt: ["8V", "7V", "4T"], + headbutt: ["9M", "8V", "7V", "4T"], + healblock: ["9M"], helpinghand: ["9M"], honeclaws: ["6M", "5M"], hypervoice: ["9M", "8M", "7T", "6T", "5T"], - hypnosis: ["9E", "8E", "7E", "7V", "6E", "5E", "5D", "4E", "3E"], + hypnosis: ["9M", "9E", "8E", "7E", "7V", "6E", "5E", "5D", "4E", "3E"], icywind: ["9M", "8M", "7T", "7V", "6T", "5T", "4T", "3T"], irontail: ["8M", "8V", "7T", "7E", "7V", "6T", "6E", "5T", "5E", "4M", "3M"], knockoff: ["9M", "7T", "6T", "5T", "4T"], lashout: ["9M", "8T"], lastresort: ["9E", "8E", "7T", "7E", "6T", "6E", "5T", "5E", "4T", "4E"], metalclaw: ["9M"], - mimic: ["7V", "3T"], + metronome: ["9M"], + mimic: ["9M", "7V", "3T"], mudslap: ["7V", "4T", "3T"], nastyplot: ["9M", "8M", "8L40", "8V", "7L38", "6L38", "5L38", "5S6", "4L38"], naturalgift: ["4M"], @@ -7364,12 +7422,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab snarl: ["9M"], snatch: ["7T", "7E", "6T", "6E", "5T", "5E", "5S6", "4M", "3M"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], + spikes: ["9M"], spite: ["9M", "9E", "8E", "7T", "7E", "7V", "6T", "6E", "5T", "5E", "4T", "4E", "3E"], substitute: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], sunnyday: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], swagger: ["7M", "7V", "6M", "5M", "4M", "3T", "3L45"], swift: ["9M", "8M", "7V", "4T", "3T"], - tailwhip: ["9E", "8E", "7E", "6E", "5E", "4E"], + tailwhip: ["9M", "9E", "8E", "7E", "6E", "5E", "4E"], takedown: ["9M", "7V"], taunt: ["9M", "8M", "8L20", "8V", "7M", "7L25", "6M", "6L25", "5M", "5L25", "4M", "4L25", "3M"], terablast: ["9M"], @@ -7383,8 +7442,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab uproar: ["8M", "7T", "6T", "5T", "4T"], uturn: ["9M", "8M", "8V", "7M", "6M", "5M", "4M"], watergun: ["7V"], - waterpulse: ["7T", "6T", "4M", "3M"], - workup: ["8M", "7M", "5M"], + waterpulse: ["9M", "7T", "6T", "4M", "3M"], + workup: ["9M", "8M", "7M", "5M"], zapcannon: ["7V"], }, eventData: [ @@ -7422,7 +7481,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab darkpulse: ["9M", "8M", "8V", "7M", "7L55"], dig: ["9M", "8M"], doubleedge: ["9M"], - doubleteam: ["7M"], + doubleteam: ["9M", "7M"], dreameater: ["8V", "7M"], echoedvoice: ["7M"], embargo: ["7M"], @@ -7431,6 +7490,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab facade: ["9M", "8M", "8V", "7M"], fakeout: ["9M", "8L1", "8V", "7L9"], faketears: ["9M"], + falseswipe: ["9M"], feint: ["9M", "8L4", "8V", "7L50"], feintattack: ["7L22"], flail: ["9E", "8E", "7E"], @@ -7440,19 +7500,22 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab furyswipes: ["9M", "8L29", "8V", "7L14"], growl: ["9M", "8L1", "8V", "7L1"], gunkshot: ["9M", "8M", "7T"], - headbutt: ["8V"], + headbutt: ["9M", "8V"], + healblock: ["9M"], helpinghand: ["9M"], hypervoice: ["9M", "8M", "7T"], - hypnosis: ["9E", "8E", "7E"], + hypnosis: ["9M", "9E", "8E", "7E"], icywind: ["9M", "8M", "7T"], irontail: ["8M", "8V", "7T"], knockoff: ["9M", "7T"], lashout: ["9M", "8T"], lastresort: ["7T"], metalclaw: ["9M"], + metronome: ["9M"], + mimic: ["9M"], nastyplot: ["9M", "8M", "8L40", "8V", "7L38"], nightslash: ["9M", "8L36", "7L49"], - partingshot: ["9E", "8E", "7E"], + partingshot: ["9M", "9E", "8E", "7E"], payback: ["8M", "7M"], payday: ["9M", "8M", "8L12", "8V", "7L30"], playrough: ["9M", "8M", "8L44", "8V"], @@ -7477,11 +7540,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab snarl: ["9M"], snatch: ["7T", "7E"], snore: ["8M", "7T"], + spikes: ["9M"], spite: ["9M", "9E", "8E", "7T", "7E"], substitute: ["9M", "8M", "8V", "7M"], sunnyday: ["9M", "8M", "7M"], swagger: ["7M"], swift: ["9M", "8M"], + tailwhip: ["9M"], takedown: ["9M"], taunt: ["9M", "8M", "8L20", "8V", "7M", "7L25"], terablast: ["9M"], @@ -7494,8 +7559,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab trailblaze: ["9M"], uproar: ["8M", "7T"], uturn: ["9M", "8M", "8V", "7M"], - waterpulse: ["7T"], - workup: ["8M", "7M"], + waterpulse: ["9M", "7T"], + workup: ["9M", "8M", "7M"], }, }, meowthgalar: { @@ -7504,9 +7569,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab amnesia: ["9M", "8M"], assurance: ["8M"], attract: ["8M"], + bite: ["9M"], bodyslam: ["9M", "8M"], brickbreak: ["9M"], + bulkup: ["9M"], charm: ["9M"], + closecombat: ["9M"], covet: ["9E", "8E"], crunch: ["9M", "8M"], curse: ["9M", "9E", "8E"], @@ -7527,19 +7595,25 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab growl: ["9M", "8L1", "8S0"], gunkshot: ["9M", "8M"], gyroball: ["9M", "8M"], + headbutt: ["9M"], + healblock: ["9M"], helpinghand: ["9M"], honeclaws: ["9M", "8L4", "8S0"], hypervoice: ["9M", "8M"], + hypnosis: ["9M"], + icywind: ["9M"], irondefense: ["9M", "8M"], ironhead: ["9M", "8M"], - irontail: ["8M"], + irontail: ["9M", "8M"], knockoff: ["9M"], lashout: ["9M", "8T"], metalclaw: ["9M", "8L16"], metalsound: ["9M", "8L40"], metronome: ["9M"], + mimic: ["9M"], nastyplot: ["9M", "8M"], - nightslash: ["9E", "8E"], + nightslash: ["9M", "9E", "8E"], + outrage: ["9M"], payback: ["8M"], payday: ["9M", "8M", "8L12", "8S0"], playrough: ["9M", "8M"], @@ -7556,13 +7630,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab slash: ["9M", "8L36"], sleeptalk: ["9M", "8M"], snore: ["8M"], + spikes: ["9M"], spite: ["9M", "9E", "8E"], stealthrock: ["9M"], steelbeam: ["9M", "8T"], substitute: ["9M", "8M"], sunnyday: ["9M", "8M"], swagger: ["9M", "8L24"], + swift: ["9M"], swordsdance: ["9M", "8M"], + tailwhip: ["9M"], takedown: ["9M"], taunt: ["9M", "8M", "8L20"], terablast: ["9M"], @@ -7571,10 +7648,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab throatchop: ["9M", "8M"], thunder: ["9M", "8M"], thunderbolt: ["9M", "8M"], + thunderwave: ["9M"], trailblaze: ["9M"], uproar: ["8M"], uturn: ["9M", "8M"], - workup: ["8M"], + waterpulse: ["9M"], + workup: ["9M", "8M"], xscissor: ["9M"], }, eventData: [ @@ -7597,14 +7676,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab chillingwater: ["9M"], confide: ["7M", "6M"], covet: ["7T", "6T", "5T"], - curse: ["7V"], + curse: ["9M", "7V"], cut: ["6M", "5M", "4M", "3M"], darkpulse: ["9M", "8M", "8V", "7M", "6M", "5T", "4M"], defensecurl: ["7V", "3T"], detect: ["7V"], dig: ["9M", "8M", "8V", "6M", "5M", "4M", "3M"], doubleedge: ["9M", "7V", "3T"], - doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], + doubleteam: ["9M", "7M", "7V", "6M", "5M", "4M", "3M"], dreameater: ["8V", "7M", "7V", "6M", "5M", "4M", "3T"], echoedvoice: ["7M", "6M", "5M"], embargo: ["7M", "6M", "5M", "4M"], @@ -7623,19 +7702,21 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab gigaimpact: ["9M", "8M", "7M", "6M", "5M", "4M"], growl: ["9M", "8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], gunkshot: ["9M", "8M", "7T", "6T", "5T", "4T"], - headbutt: ["8V", "7V", "4T"], + headbutt: ["9M", "8V", "7V", "4T"], + healblock: ["9M"], helpinghand: ["9M"], honeclaws: ["6M", "5M"], hyperbeam: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], hypervoice: ["9M", "8M", "7T", "6T", "5T"], - hypnosis: ["8V"], + hypnosis: ["9M", "8V"], icywind: ["9M", "8M", "7T", "7V", "6T", "5T", "4T", "3T"], - irontail: ["8M", "8V", "7T", "7V", "6T", "5T", "4M", "3M"], + irontail: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4M", "3M"], knockoff: ["9M", "7T", "6T", "5T", "4T"], lashout: ["9M", "8T"], lastresort: ["7T", "6T", "5T", "4T"], metalclaw: ["9M"], - mimic: ["7V", "3T"], + metronome: ["9M"], + mimic: ["9M", "7V", "3T"], mudslap: ["7V", "4T", "3T"], nastyplot: ["9M", "8M", "8L48", "8V", "7L44", "6L44", "5L44", "4L44"], naturalgift: ["4M"], @@ -7663,18 +7744,20 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab shadowclaw: ["9M", "8M", "7M", "6M", "5M", "4M"], shockwave: ["7T", "6T", "4M", "3M"], skittersmack: ["9M", "8T"], - skullbash: ["7V"], + skullbash: ["9M", "7V"], slash: ["9M", "8L42", "8V", "7L37", "7V", "6L37", "5L37", "4L37", "3L49"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], snarl: ["9M"], snatch: ["7T", "6T", "5T", "4M", "3M"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], + spikes: ["9M"], spite: ["9M", "7T", "6T", "5T", "4T"], substitute: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], sunnyday: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], swagger: ["7M", "7V", "6M", "5M", "4M", "3T", "3L61"], swift: ["9M", "8M", "8V", "7L1", "7V", "6L28", "5L28", "4T", "3T"], switcheroo: ["9M", "8L1", "7L1", "6L1", "5L1", "4L1"], + tailwhip: ["9M"], takedown: ["9M", "7V"], taunt: ["9M", "8M", "8L20", "8V", "7M", "7L25", "6M", "6L25", "5M", "5L25", "4M", "4L25", "3M"], terablast: ["9M"], @@ -7688,8 +7771,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab uproar: ["8M", "7T", "6T", "5T", "4T"], uturn: ["9M", "8M", "8V", "7M", "6M", "5M", "4M"], watergun: ["7V"], - waterpulse: ["7T", "6T", "4M", "3M"], - workup: ["8M", "7M", "5M"], + waterpulse: ["9M", "7T", "6T", "4M", "3M"], + workup: ["9M", "8M", "7M", "5M"], zapcannon: ["7V"], }, encounters: [ @@ -7718,7 +7801,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab darkpulse: ["9M", "8M", "8V", "7M", "7L69"], dig: ["9M", "8M"], doubleedge: ["9M"], - doubleteam: ["7M"], + doubleteam: ["9M", "7M"], dreameater: ["8V", "7M"], echoedvoice: ["7M"], embargo: ["7M"], @@ -7727,6 +7810,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab facade: ["9M", "8M", "8V", "7M"], fakeout: ["9M", "8L1", "8V", "7L1"], faketears: ["9M", "8M"], + falseswipe: ["9M"], feint: ["9M", "8L1", "8V", "7L65"], feintattack: ["7L22"], foulplay: ["9M", "8M", "8V", "7T"], @@ -7735,19 +7819,23 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab gigaimpact: ["9M", "8M", "7M"], growl: ["9M", "8L1", "8V", "7L1"], gunkshot: ["9M", "8M", "7T"], - headbutt: ["8V"], + headbutt: ["9M", "8V"], + healblock: ["9M"], helpinghand: ["9M"], hyperbeam: ["9M", "8M", "8V", "7M"], hypervoice: ["9M", "8M", "7T"], - hypnosis: ["8V"], + hypnosis: ["9M", "8V"], icywind: ["9M", "8M", "7T"], - irontail: ["8M", "8V", "7T"], + irontail: ["9M", "8M", "8V", "7T"], knockoff: ["9M", "7T"], lashout: ["9M", "8T"], lastresort: ["7T"], metalclaw: ["9M"], + metronome: ["9M"], + mimic: ["9M"], nastyplot: ["9M", "8M", "8L48", "8V", "7L44"], nightslash: ["9M", "8L42", "7L61"], + partingshot: ["9M"], payback: ["8M", "7M"], payday: ["9M", "8M", "8L12", "8V"], playrough: ["9M", "8M", "8L54", "8V", "7L1"], @@ -7774,12 +7862,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab snarl: ["9M", "8M", "7M"], snatch: ["7T"], snore: ["8M", "7T"], + spikes: ["9M"], spite: ["9M", "7T"], substitute: ["9M", "8M", "8V", "7M"], sunnyday: ["9M", "8M", "7M"], swagger: ["7M"], swift: ["9M", "8M", "8V", "7L1"], switcheroo: ["9M", "8L1", "7L1"], + tailwhip: ["9M"], takedown: ["9M"], taunt: ["9M", "8M", "8L20", "8V", "7M", "7L25"], terablast: ["9M"], @@ -7789,11 +7879,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderbolt: ["9M", "8M", "8V", "7M"], thunderwave: ["9M"], torment: ["7M"], + toxicspikes: ["9M"], trailblaze: ["9M"], uproar: ["8M", "7T"], uturn: ["9M", "8M", "8V", "7M"], - waterpulse: ["7T"], - workup: ["8M", "7M"], + waterpulse: ["9M", "7T"], + workup: ["9M", "8M", "7M"], }, }, perrserker: { @@ -7803,8 +7894,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab assurance: ["8M"], attract: ["8M"], batonpass: ["9M", "8M"], + bite: ["9M"], bodyslam: ["9M", "8M"], brickbreak: ["9M"], + bulkup: ["9M"], charm: ["9M"], chillingwater: ["9M"], closecombat: ["9M", "8M"], @@ -7813,6 +7906,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab darkpulse: ["9M", "8M"], dig: ["9M", "8M"], doubleedge: ["9M"], + dualchop: ["9M"], endeavor: ["9M"], endure: ["9M", "8M"], facade: ["9M", "8M"], @@ -7827,21 +7921,29 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab growl: ["9M", "8L1"], gunkshot: ["9M", "8M"], gyroball: ["9M", "8M"], + headbutt: ["9M"], + healblock: ["9M"], heavyslam: ["9M", "8M"], helpinghand: ["9M"], honeclaws: ["9M", "8L1"], hyperbeam: ["9M", "8M"], hypervoice: ["9M", "8M"], + hypnosis: ["9M"], + icywind: ["9M"], irondefense: ["9M", "8M", "8L1"], ironhead: ["9M", "8M", "8L0"], - irontail: ["8M"], + irontail: ["9M", "8M"], knockoff: ["9M"], lashout: ["9M", "8T"], + liquidation: ["9M"], metalburst: ["9M", "8L1"], metalclaw: ["9M", "8L16"], metalsound: ["9M", "8L48"], metronome: ["9M"], + mimic: ["9M"], nastyplot: ["9M", "8M"], + nightslash: ["9M"], + outrage: ["9M"], payback: ["8M"], payday: ["9M", "8M", "8L12"], playrough: ["9M", "8M"], @@ -7855,16 +7957,20 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab seedbomb: ["9M", "8M"], shadowball: ["9M", "8M"], shadowclaw: ["9M", "8M"], + skullbash: ["9M"], slash: ["9M", "8L42"], sleeptalk: ["9M", "8M"], snore: ["8M"], + spikes: ["9M"], spite: ["9M"], stealthrock: ["9M"], steelbeam: ["9M", "8T"], substitute: ["9M", "8M"], sunnyday: ["9M", "8M"], swagger: ["9M", "8L24"], + swift: ["9M"], swordsdance: ["9M", "8M"], + tailwhip: ["9M"], takedown: ["9M"], taunt: ["9M", "8M", "8L20"], terablast: ["9M"], @@ -7873,10 +7979,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab throatchop: ["9M", "8M"], thunder: ["9M", "8M"], thunderbolt: ["9M", "8M"], + thunderwave: ["9M"], trailblaze: ["9M"], uproar: ["8M"], uturn: ["9M", "8M"], - workup: ["8M"], + waterpulse: ["9M"], + workup: ["9M", "8M"], xscissor: ["9M"], }, }, @@ -8156,7 +8264,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bulkup: ["9M", "8V", "7M", "6M", "5M", "4M", "3M"], bulldoze: ["9M", "7M", "6M", "5M"], captivate: ["4M"], + circlethrow: ["9M"], closecombat: ["9M", "7L36", "7E", "6L49", "6E", "5L49", "5E", "4L49", "4E"], + cometpunch: ["9M"], confide: ["7M", "6M"], counter: ["9E", "7E", "7V", "6E", "5E", "4E", "3T", "3E"], covet: ["9M", "7T", "7L1", "6T", "6L1", "5T", "5L1", "4L1"], @@ -8168,8 +8278,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleedge: ["9M", "7V", "3T"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], drainpunch: ["9M"], - dualchop: ["7T", "6T", "5T"], - dynamicpunch: ["7V", "3T"], + dualchop: ["9M", "7T", "6T", "5T"], + dynamicpunch: ["9M", "7V", "3T"], earthquake: ["9M", "8V", "7M", "6M", "5M", "4M", "3M"], encore: ["9M", "9E", "7E", "6E", "5E", "4E"], endeavor: ["9M", "7T", "6T", "5T", "4T"], @@ -8185,12 +8295,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab frustration: ["7M", "7V", "6M", "5M", "4M", "3M"], furyswipes: ["9M", "8V", "7L5", "7V", "6L9", "5L9", "4L9", "3L16"], gunkshot: ["9M", "7T", "6T", "5T", "4T"], - headbutt: ["8V", "7V", "4T"], + headbutt: ["9M", "8V", "7V", "4T"], helpinghand: ["9M", "8V", "7T", "6T", "5T", "4T"], honeclaws: ["6M", "5M"], icepunch: ["9M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], irontail: ["8V", "7T", "7V", "6T", "5T", "4M", "3M"], karatechop: ["8V", "7L8", "7V", "6L13", "5L13", "4L13", "3L11"], + knockoff: ["9M"], lashout: ["9M"], leer: ["9M", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], lowkick: ["9M", "8V", "7T", "7L1", "7V", "6T", "6L1", "5T", "5L1", "5D", "4T", "4L1", "3L6"], @@ -8202,14 +8313,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mimic: ["7V", "3T"], mudslap: ["7V", "4T", "3T"], naturalgift: ["4M"], - nightslash: ["9E", "7E", "6E"], + nightslash: ["9M", "9E", "7E", "6E"], outrage: ["9M", "8V", "7T", "7L47", "6T", "5T", "4T"], overheat: ["9M", "7M", "6M", "5M", "4M", "3M"], payback: ["7M", "6M", "5M", "4M"], - payday: ["8V", "7V"], + payday: ["9M", "8V", "7V"], poisonjab: ["9M", "8V", "7M", "6M", "5M", "4M"], powertrip: ["7E"], - poweruppunch: ["6M"], + poweruppunch: ["9M", "6M"], protect: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], psychup: ["7V", "3T"], punishment: ["7L29", "6L45", "5L45", "4L45"], @@ -8221,9 +8332,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab return: ["7M", "7V", "6M", "5M", "4M", "3M"], revenge: ["7E", "6E", "5E", "4E", "3E"], reversal: ["9M", "7E", "7V", "6E", "5E", "5D", "4E", "3E"], + roar: ["9M"], rockclimb: ["4M"], rockslide: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "4E", "3T", "3E"], - rocksmash: ["7V", "6M", "5M", "4M", "3M"], + rocksmash: ["9M", "7V", "6M", "5M", "4M", "3M"], + rockthrow: ["9M"], rocktomb: ["9M", "7M", "6M", "5M", "4M", "3M"], roleplay: ["7T", "6T", "5T", "4T"], round: ["7M", "6M", "5M"], @@ -8242,12 +8355,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab spite: ["9M", "9E", "7T", "6T", "5T", "4T"], stompingtantrum: ["9M", "7T", "7L43"], stoneedge: ["9M"], + stormthrow: ["9M"], strength: ["7V", "6M", "5M", "4M", "3M"], submission: ["7V"], substitute: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], sunnyday: ["9M", "7M", "7V", "6M", "5M", "4M", "3M"], swagger: ["9M", "7M", "7L19", "7V", "6M", "6L33", "5M", "5L33", "4M", "4L33", "3T", "3L36"], swift: ["9M", "7V", "4T", "3T"], + tackle: ["9M"], takedown: ["9M", "7V"], taunt: ["9M", "8V", "7M", "6M", "5M", "4M", "3M"], terablast: ["9M"], @@ -8257,10 +8372,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunder: ["8V", "7M", "7V", "6M", "5M", "4M", "3M"], thunderbolt: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], thunderpunch: ["9M", "8V", "7T", "7V", "6T", "5T", "5D", "4T", "3T"], + torment: ["9M"], uproar: ["9M", "7T", "6T", "5T", "4T"], uturn: ["9M", "8V", "7M", "6M", "5M", "4M"], vacuumwave: ["4T"], - workup: ["7M", "5M"], + workup: ["9M", "7M", "5M"], }, encounters: [ { generation: 1, level: 3 }, @@ -8279,7 +8395,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bulkup: ["9M", "8V", "7M", "6M", "5M", "4M", "3M"], bulldoze: ["9M", "7M", "6M", "5M"], captivate: ["4M"], + circlethrow: ["9M"], closecombat: ["9M", "7L39", "6L59", "5L59", "4L59"], + cometpunch: ["9M"], confide: ["7M", "6M"], counter: ["8V", "7V", "3T"], covet: ["7T", "6T", "5T"], @@ -8291,8 +8409,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleedge: ["9M", "7V", "3T"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], drainpunch: ["9M"], - dualchop: ["7T", "6T", "5T"], - dynamicpunch: ["7V", "3T"], + dualchop: ["9M", "7T", "6T", "5T"], + dynamicpunch: ["9M", "7V", "3T"], earthquake: ["9M", "8V", "7M", "6M", "5M", "4M", "3M"], encore: ["9M", "8V"], endeavor: ["9M", "7T", "6T", "5T", "4T"], @@ -8308,13 +8426,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab furyswipes: ["9M", "8V", "7L5", "7V", "6L9", "5L9", "4L9", "3L16"], gigaimpact: ["9M", "7M", "6M", "5M", "4M"], gunkshot: ["9M", "7T", "6T", "5T", "4T"], - headbutt: ["8V", "7V", "4T"], + headbutt: ["9M", "8V", "7V", "4T"], helpinghand: ["9M", "8V", "7T", "6T", "5T", "4T", "3S0"], honeclaws: ["6M", "5M"], hyperbeam: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], icepunch: ["9M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], irontail: ["8V", "7T", "7V", "6T", "5T", "4M", "3M"], karatechop: ["8V", "7L8", "7V", "6L13", "5L13", "4L13", "3L11"], + knockoff: ["9M"], lashout: ["9M"], leer: ["9M", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], lowkick: ["9M", "8V", "7T", "7L1", "7V", "6T", "6L1", "5T", "5L1", "4T", "4L1", "3L1"], @@ -8325,12 +8444,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mimic: ["7V", "3T"], mudslap: ["7V", "4T", "3T"], naturalgift: ["4M"], + nightslash: ["9M"], outrage: ["9M", "8V", "7T", "7L53", "6T", "5T", "4T"], overheat: ["9M", "7M", "6M", "5M", "4M", "3M"], payback: ["7M", "6M", "5M", "4M"], - payday: ["8V", "7V"], + payday: ["9M", "8V", "7V"], poisonjab: ["9M", "8V", "7M", "6M", "5M", "4M"], - poweruppunch: ["6M"], + poweruppunch: ["9M", "6M"], protect: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], psychup: ["7V", "3T"], punishment: ["7L30", "6L53", "5L53", "4L53"], @@ -8342,9 +8462,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab retaliate: ["6M", "5M"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], reversal: ["9M", "3S0"], + roar: ["9M"], rockclimb: ["4M"], rockslide: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], - rocksmash: ["7V", "6M", "5M", "4M", "3M"], + rocksmash: ["9M", "7V", "6M", "5M", "4M", "3M"], + rockthrow: ["9M"], rocktomb: ["9M", "7M", "6M", "5M", "4M", "3M"], roleplay: ["7T", "6T", "5T", "4T"], round: ["7M", "6M", "5M"], @@ -8363,12 +8485,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab stealthrock: ["9M"], stompingtantrum: ["9M", "7T", "7L48"], stoneedge: ["9M", "7M", "6M", "5M", "4M"], + stormthrow: ["9M"], strength: ["7V", "6M", "5M", "4M", "3M"], submission: ["7V"], substitute: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], sunnyday: ["9M", "7M", "7V", "6M", "5M", "4M", "3M"], swagger: ["9M", "7M", "7L19", "7V", "6M", "6L35", "5M", "5L35", "4M", "4L35", "3T", "3L44"], swift: ["9M", "7V", "4T", "3T"], + tackle: ["9M"], takedown: ["9M", "7V"], taunt: ["9M", "8V", "7M", "6M", "5M", "4M", "3M"], terablast: ["9M"], @@ -8378,10 +8502,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunder: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], thunderbolt: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], thunderpunch: ["9M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], + torment: ["9M"], uproar: ["9M", "7T", "6T", "5T", "4T"], uturn: ["9M", "8V", "7M", "6M", "5M", "4M"], vacuumwave: ["9M", "4T"], - workup: ["7M", "5M"], + workup: ["9M", "7M", "5M"], }, eventData: [ { generation: 3, level: 34, abilities: ["vitalspirit"], moves: ["helpinghand", "crosschop", "focusenergy", "reversal"] }, @@ -8399,14 +8524,18 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab brickbreak: ["9M"], bulkup: ["9M"], bulldoze: ["9M"], + circlethrow: ["9M"], closecombat: ["9M"], coaching: ["9M"], + cometpunch: ["9M"], counter: ["9M"], crosschop: ["9M"], curse: ["9M"], dig: ["9M"], doubleedge: ["9M"], drainpunch: ["9M"], + dualchop: ["9M"], + dynamicpunch: ["9M"], earthquake: ["9M"], encore: ["9M"], endeavor: ["9M"], @@ -8421,25 +8550,33 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab furyswipes: ["9M"], gigaimpact: ["9M"], gunkshot: ["9M"], + headbutt: ["9M"], helpinghand: ["9M"], hyperbeam: ["9M"], icepunch: ["9M"], + knockoff: ["9M"], lashout: ["9M"], leer: ["9M"], lowkick: ["9M"], lowsweep: ["9M"], metronome: ["9M"], nightshade: ["9M"], + nightslash: ["9M"], outrage: ["9M"], overheat: ["9M"], + payday: ["9M"], phantomforce: ["9M"], poisonjab: ["9M"], + poweruppunch: ["9M"], protect: ["9M"], ragefist: ["9M"], raindance: ["9M"], rest: ["9M"], reversal: ["9M"], + roar: ["9M"], rockslide: ["9M"], + rocksmash: ["9M"], + rockthrow: ["9M"], rocktomb: ["9M"], scaryface: ["9M"], scratch: ["9M"], @@ -8455,10 +8592,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab stealthrock: ["9M"], stompingtantrum: ["9M"], stoneedge: ["9M"], + stormthrow: ["9M"], substitute: ["9M"], sunnyday: ["9M"], swagger: ["9M"], swift: ["9M"], + tackle: ["9M"], takedown: ["9M"], taunt: ["9M"], terablast: ["9M"], @@ -8468,9 +8607,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunder: ["9M"], thunderbolt: ["9M"], thunderpunch: ["9M"], + torment: ["9M"], uproar: ["9M"], uturn: ["9M"], vacuumwave: ["9M"], + workup: ["9M"], }, }, growlithe: { @@ -9207,14 +9348,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dazzlinggleam: ["9M", "8M", "8V", "7M", "6M"], doubleedge: ["7V", "3T"], doubleteam: ["9M", "7M", "7V", "6M", "5M", "4M", "3M"], - drainpunch: ["8M", "7T", "6T", "5T", "4M"], - dreameater: ["8V", "7M", "7V", "6M", "5M", "4M", "3T"], + drainpunch: ["9M", "8M", "7T", "6T", "5T", "4M"], + dreameater: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], dynamicpunch: ["7V", "3T"], embargo: ["7M", "6M", "5M", "4M"], encore: ["8M", "7E", "7V", "6E", "5E", "4E", "3E"], endure: ["9M", "8M", "7V", "4M", "3T"], energyball: ["9M", "8M", "7M", "6M", "5M", "4M"], - facade: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], firepunch: ["9M", "8M", "8V", "7T", "7E", "7V", "6T", "6E", "5T", "5E", "4T", "4E", "3T", "3E"], flash: ["7V", "6M", "5M", "4M", "3M"], fling: ["8M", "7M", "6M", "5M", "4M"], @@ -9280,7 +9421,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderpunch: ["9M", "8M", "8V", "7T", "7E", "7V", "6T", "6E", "5T", "5E", "4T", "4E", "3T", "3E"], thunderwave: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], torment: ["7M", "6M", "5M", "4M", "3M"], - triattack: ["8M", "8V", "7V"], + triattack: ["9M", "8M", "8V", "7V"], trick: ["8M", "7T", "6T", "5T", "4T"], trickroom: ["8M", "7M", "6M", "5M", "4M"], wonderroom: ["8M", "7T", "6T", "5T"], @@ -9299,7 +9440,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bodyslam: ["9M", "8M", "7V", "3T"], calmmind: ["9M", "8M", "8L50", "8V", "7M", "6M", "5M", "4M", "3M"], captivate: ["4M"], - chargebeam: ["7M", "6M", "5M", "4M"], + chargebeam: ["9M", "7M", "6M", "5M", "4M"], confide: ["7M", "6M"], confusion: ["9M", "8L0", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], counter: ["7V", "3T"], @@ -9309,15 +9450,15 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab disable: ["8L1", "8V", "7L18", "7V", "6L18", "5L18", "4L18", "3L18"], doubleedge: ["7V", "3T"], doubleteam: ["9M", "7M", "7V", "6M", "5M", "4M", "3M"], - drainpunch: ["8M", "7T", "6T", "5T", "4M"], - dreameater: ["8V", "7M", "7V", "6M", "5M", "4M", "3T"], + drainpunch: ["9M", "8M", "7T", "6T", "5T", "4M"], + dreameater: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], dynamicpunch: ["7V", "3T"], embargo: ["7M", "6M", "5M", "4M"], encore: ["8M"], endure: ["9M", "8M", "7V", "4M", "3T"], energyball: ["9M", "8M", "7M", "6M", "5M", "4M"], expandingforce: ["8T"], - facade: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], firepunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], flash: ["8V", "7V", "6M", "5M", "4M", "3M"], fling: ["8M", "7M", "6M", "5M", "4M"], @@ -9387,7 +9528,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderpunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], thunderwave: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], torment: ["7M", "6M", "5M", "4M", "3M"], - triattack: ["8M", "8V", "7V"], + triattack: ["9M", "8M", "8V", "7V"], trick: ["8M", "7T", "7L46", "6T", "6L46", "5T", "5L52", "4T", "4L46", "3L43"], trickroom: ["8M", "7M", "6M", "5M", "4M"], wonderroom: ["8M", "7T", "6T", "5T"], @@ -9409,7 +9550,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bodyslam: ["9M", "8M", "7V", "3T"], calmmind: ["9M", "8M", "8L50", "8V", "7M", "7L41", "6M", "6L41", "5M", "5L42", "4M", "4L36", "3M", "3L33", "3S0"], captivate: ["4M"], - chargebeam: ["7M", "6M", "5M", "4M"], + chargebeam: ["9M", "7M", "6M", "5M", "4M"], confide: ["7M", "6M"], confusion: ["9M", "8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], counter: ["7V", "3T"], @@ -9419,15 +9560,15 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab disable: ["8L1", "8V", "7L18", "7V", "6L18", "5L18", "4L18", "3L18"], doubleedge: ["7V", "3T"], doubleteam: ["9M", "7M", "7V", "6M", "5M", "4M", "3M"], - drainpunch: ["8M", "7T", "6T", "5T", "4M"], - dreameater: ["8V", "7M", "7V", "6M", "5M", "4M", "3T"], + drainpunch: ["9M", "8M", "7T", "6T", "5T", "4M"], + dreameater: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], dynamicpunch: ["7V", "3T"], embargo: ["7M", "6M", "5M", "4M"], encore: ["8M", "8V"], endure: ["9M", "8M", "7V", "4M", "3T"], energyball: ["9M", "8M", "7M", "6M", "5M", "4M"], expandingforce: ["8T"], - facade: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], firepunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], flash: ["8V", "7V", "6M", "5M", "4M", "3M"], fling: ["8M", "7M", "6M", "5M", "4M"], @@ -9504,7 +9645,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderpunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], thunderwave: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], torment: ["7M", "6M", "5M", "4M", "3M"], - triattack: ["8M", "8V", "7V"], + triattack: ["9M", "8M", "8V", "7V"], trick: ["8M", "7T", "7L46", "6T", "6L46", "5T", "5L52", "4T", "4L46", "3L43", "3S0"], trickroom: ["8M", "7M", "6M", "5M", "4M"], wonderroom: ["8M", "7T", "6T", "5T"], @@ -9528,6 +9669,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab captivate: ["4M"], closecombat: ["9M", "8M", "7E", "6E", "5E", "4E"], coaching: ["8T"], + cometpunch: ["9M"], confide: ["7M", "6M"], counter: ["8E", "7E", "7V", "6E", "5E", "4E", "3T", "3E"], crosschop: ["8L48", "7L39", "7V", "6L39", "5L43", "4L37", "3L40"], @@ -9536,15 +9678,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dig: ["9M", "8M", "8V", "7V", "6M", "5M", "4M", "3M"], doubleedge: ["9M", "8L52", "7V", "3T"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], - dualchop: ["8L32", "7T", "7L31", "6T", "6L31", "5T"], + drainpunch: ["9M"], + dualchop: ["9M", "8L32", "7T", "7L31", "6T", "6L31", "5T"], dynamicpunch: ["9M", "8L44", "7L45", "7V", "6L45", "5L49", "4L46", "3T", "3L49"], earthquake: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], encore: ["8M", "7E", "7V", "6E", "5E", "4E", "3E"], endure: ["9M", "8M", "7V", "4M", "3T"], - facade: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], fireblast: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], firepunch: ["9M", "8M", "8V", "7T", "7E", "7V", "6T", "6E", "5T", "5E", "4T", "4E", "3T"], - fissure: ["7V"], + fissure: ["9M", "7V"], flamethrower: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], fling: ["8M", "7M", "6M", "5M", "4M"], focusblast: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -9562,7 +9705,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab leer: ["9M", "8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], lightscreen: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4E", "3E"], lowkick: ["8M", "8L1", "8V", "7T", "7L1", "7V", "6T", "6L1", "5T", "5L1", "5D", "4T", "4L1", "3L1"], - lowsweep: ["8M", "8L12", "7M", "7L13", "6M", "6L13", "5M", "5L13"], + lowsweep: ["9M", "8M", "8L12", "7M", "7L13", "6M", "6L13", "5M", "5L13"], meditate: ["7E", "7V", "6E", "5E", "4E", "3E"], megakick: ["8M", "7V", "3T"], megapunch: ["8M", "7V", "3T"], @@ -9630,6 +9773,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab captivate: ["4M"], closecombat: ["9M", "8M"], coaching: ["8T"], + cometpunch: ["9M"], confide: ["7M", "6M"], counter: ["7V", "3T"], crosschop: ["8L60", "7L47", "7V", "6L44", "5L44", "4L40", "3L46"], @@ -9638,15 +9782,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dig: ["9M", "8M", "8V", "7V", "6M", "5M", "4M", "3M"], doubleedge: ["9M", "8L66", "7V", "3T"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], - dualchop: ["8L36", "7T", "7L33", "6T", "6L33", "5T"], + drainpunch: ["9M"], + dualchop: ["9M", "8L36", "7T", "7L33", "6T", "6L33", "5T"], dynamicpunch: ["9M", "8L54", "7L57", "7V", "6L55", "5L55", "4L51", "3T", "3L59"], earthquake: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], encore: ["8M"], endure: ["9M", "8M", "7V", "4M", "3T"], - facade: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], fireblast: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], firepunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], - fissure: ["7V"], + fissure: ["9M", "7V"], flamethrower: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], fling: ["8M", "7M", "6M", "5M", "4M"], focusblast: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -9664,7 +9809,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab leer: ["9M", "8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], lightscreen: ["9M", "8M", "8V", "7M", "6M", "5M"], lowkick: ["8M", "8L1", "8V", "7T", "7L1", "7V", "6T", "6L1", "5T", "5L1", "4T", "4L1", "3L1"], - lowsweep: ["8M", "8L12", "7M", "7L13", "6M", "6L13", "5M", "5L13", "5S0"], + lowsweep: ["9M", "8M", "8L12", "7M", "7L13", "6M", "6L13", "5M", "5L13", "5S0"], megakick: ["8M", "7V", "3T"], megapunch: ["8M", "7V", "3T"], metronome: ["9M", "8M", "7V", "3T"], @@ -9732,6 +9877,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab captivate: ["4M"], closecombat: ["9M", "8M"], coaching: ["8T"], + cometpunch: ["9M"], confide: ["7M", "6M"], counter: ["8V", "7V", "3T"], crosschop: ["8L60", "7L47", "7V", "6L44", "5L44", "4L40", "3L46"], @@ -9742,15 +9888,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dig: ["9M", "8M", "8V", "7V", "6M", "6S2", "5M", "4M", "3M"], doubleedge: ["9M", "8L66", "7V", "7S3", "3T"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], - dualchop: ["8L36", "7T", "7L33", "6T", "6L33", "5T"], + drainpunch: ["9M"], + dualchop: ["9M", "8L36", "7T", "7L33", "6T", "6L33", "5T"], dynamicpunch: ["9M", "8L54", "7L57", "7V", "6L55", "6S1", "6S2", "5L55", "4L51", "3T", "3L59"], earthquake: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], encore: ["8M", "8V"], endure: ["9M", "8M", "7V", "4M", "3T"], - facade: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], fireblast: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], firepunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], - fissure: ["7V"], + fissure: ["9M", "7V"], flamethrower: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], fling: ["8M", "7M", "6M", "5M", "4M"], focusblast: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -9771,7 +9918,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab leer: ["9M", "8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], lightscreen: ["9M", "8M", "8V", "7M", "6M", "5M"], lowkick: ["8M", "8L1", "8V", "7T", "7L1", "7V", "6T", "6L1", "5T", "5L1", "4T", "4L1", "3L1"], - lowsweep: ["8M", "8L12", "7M", "7L13", "6M", "6L13", "5M", "5L13"], + lowsweep: ["9M", "8M", "8L12", "7M", "7L13", "6M", "6L13", "5M", "5L13"], megakick: ["8M", "7V", "3T"], megapunch: ["8M", "7V", "3T"], metronome: ["9M", "8M", "7V", "3T"], @@ -9806,6 +9953,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], stompingtantrum: ["8M", "7T"], stoneedge: ["9M", "8M", "7M", "6M", "6S1", "5M", "4M"], + stormthrow: ["9M"], strength: ["8L31", "8V", "7L1", "7V", "7S3", "6M", "5M", "4M", "3M"], submission: ["8V", "7L37", "7V", "6L36", "5L36", "4L32", "3L41"], substitute: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], @@ -11045,8 +11193,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab { generation: 3, level: 40, moves: ["batonpass", "solarbeam", "sunnyday", "flamethrower"] }, ], encounters: [ - { generation: 2, level: 14, gender: "M" - }, + { generation: 2, level: 14, gender: "M" }, { generation: 3, level: 37 }, ], }, @@ -11136,7 +11283,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dive: ["8M", "6M", "5M", "4T", "3M"], doubleedge: ["7V", "3T"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], - dreameater: ["8V", "7M", "7V", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], earthquake: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], echoedvoice: ["7M", "6M", "5M"], endure: ["9M", "8M", "7V", "4M", "3T"], @@ -11187,12 +11334,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab return: ["7M", "7V", "6M", "5M", "4M", "3M"], round: ["8M", "7M", "6M", "5M"], safeguard: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "4E", "3M", "3E"], - scald: ["8M", "8V", "7M", "6M", "5M"], + scald: ["9M", "8M", "8V", "7M", "6M", "5M"], secretpower: ["6M", "4M", "3M"], shadowball: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], signalbeam: ["7T", "6T", "5T", "4T"], skillswap: ["9M", "8M", "7T", "6T", "5T", "4M", "3M"], - skullbash: ["7V"], + skullbash: ["9M", "7V"], slackoff: ["9M", "8L33", "7L36", "6L36", "5L36", "4L39"], sleeptalk: ["9M", "8M", "7M", "7E", "7V", "6M", "6E", "5T", "5E", "4M", "4E", "3T", "3E"], snore: ["8M", "7T", "7E", "7V", "6T", "6E", "5T", "5E", "4T", "4E", "3T", "3E"], @@ -11211,7 +11358,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab teleport: ["8V", "7V"], terablast: ["9M"], thunderwave: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], - triattack: ["8M", "8V", "7V"], + triattack: ["9M", "8M", "8V", "7V"], trick: ["9M", "8M", "7T", "6T", "5T", "4T"], trickroom: ["9M", "8M", "7M", "6M", "5M", "4M"], waterfall: ["9M"], @@ -11253,6 +11400,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dig: ["9M", "8M"], disable: ["9M", "8L15"], dive: ["8M"], + dreameater: ["9M"], earthquake: ["9M", "8M"], endure: ["9M", "8M"], expandingforce: ["9M", "8T"], @@ -11271,7 +11419,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab icebeam: ["9M", "8M"], icywind: ["9M", "8M"], imprison: ["9M", "8M"], - irontail: ["8M"], + irontail: ["9M", "8M"], lightscreen: ["9M", "8M"], liquidation: ["9M", "8M"], mudshot: ["9M", "8M"], @@ -11285,10 +11433,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab raindance: ["9M", "8M", "8L42"], rest: ["9M", "8M"], round: ["8M"], - safeguard: ["8M"], + safeguard: ["9M", "8M"], scald: ["8M"], shadowball: ["9M", "8M"], skillswap: ["9M", "8M"], + skullbash: ["9M"], slackoff: ["9M", "8L33"], sleeptalk: ["9M", "8M"], snore: ["8M"], @@ -11303,10 +11452,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab takedown: ["9M"], terablast: ["9M"], thunderwave: ["9M", "8M"], - triattack: ["8M"], + triattack: ["9M", "8M"], trick: ["9M", "8M"], trickroom: ["9M", "8M"], waterfall: ["9M"], + watergun: ["9M"], waterpulse: ["9M", "8L18"], weatherball: ["9M", "8M"], whirlpool: ["9M", "8M"], @@ -11320,6 +11470,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab aerialace: ["7M", "6M", "5M"], afteryou: ["7T", "6T", "5T"], amnesia: ["9M", "8M", "8L27", "8V", "7L43", "7V", "6L43", "5L43", "4L47", "3L36"], + ancientpower: ["9M"], aquatail: ["7T", "6T", "5T", "4T"], attract: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], avalanche: ["9M", "8M", "4M"], @@ -11345,7 +11496,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleedge: ["7V", "3T"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], drainpunch: ["9M", "8M", "7T", "6T", "5T", "4M"], - dreameater: ["8V", "7M", "7V", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], dynamicpunch: ["7V", "3T"], earthquake: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], echoedvoice: ["7M", "6M", "5M"], @@ -11419,7 +11570,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab shadowball: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], signalbeam: ["7T", "6T", "5T", "4T"], skillswap: ["9M", "8M", "7T", "6T", "5T", "4M", "3M"], - skullbash: ["7V"], + skullbash: ["9M", "7V"], slackoff: ["9M", "8L33", "7L36", "6L36", "6S0", "5L36", "4L41"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], @@ -11439,7 +11590,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab teleport: ["8V", "7V"], terablast: ["9M"], thunderwave: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], - triattack: ["8M", "8V", "7V"], + triattack: ["9M", "8M", "8V", "7V"], trick: ["9M", "8M", "7T", "6T", "5T", "4T"], trickroom: ["9M", "8M", "7M", "6M", "6S0", "5M", "4M"], waterfall: ["9M"], @@ -11471,6 +11622,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab acid: ["9M", "8L1"], acidspray: ["9M"], amnesia: ["9M", "8M", "8L27"], + ancientpower: ["9M"], attract: ["8M"], avalanche: ["9M", "8M"], blizzard: ["9M", "8M"], @@ -11489,6 +11641,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dive: ["8M"], doubleedge: ["9M"], drainpunch: ["9M", "8M"], + dreameater: ["9M"], earthquake: ["9M", "8M"], endure: ["9M", "8M"], expandingforce: ["9M", "8T"], @@ -11543,11 +11696,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["8M"], safeguard: ["9M", "8M"], sandstorm: ["9M"], - scald: ["8M"], + scald: ["9M", "8M"], scaryface: ["9M"], shadowball: ["9M", "8M"], shellsidearm: ["9M", "8L0"], skillswap: ["9M", "8M"], + skullbash: ["9M"], slackoff: ["9M", "8L33"], sleeptalk: ["9M", "8M"], sludgebomb: ["9M", "8M"], @@ -11567,7 +11721,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderwave: ["9M", "8M"], toxic: ["9M"], toxicspikes: ["9M"], - triattack: ["8M"], + triattack: ["9M", "8M"], trick: ["9M", "8M"], trickroom: ["9M", "8M"], venoshock: ["9M", "8M"], @@ -11587,6 +11741,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab afteryou: ["7T", "6T", "5T"], allyswitch: ["7T"], amnesia: ["9M", "8M", "8L27"], + ancientpower: ["9M"], aquatail: ["7T", "6T", "5T", "4T"], attract: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], avalanche: ["9M", "8M", "4M"], @@ -11611,7 +11766,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], dragontail: ["7M", "6M", "5M"], drainpunch: ["9M", "8M", "7T", "6T", "5T", "4M"], - dreameater: ["7M", "7V", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "7M", "7V", "6M", "5M", "4M", "3T"], dynamicpunch: ["7V", "3T"], earthquake: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], echoedvoice: ["7M", "6M", "5M"], @@ -11688,6 +11843,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab shadowball: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], signalbeam: ["7T", "6T", "5T", "4T"], skillswap: ["9M", "8M", "7T", "6T", "5T", "4M", "3M"], + skullbash: ["9M"], slackoff: ["9M", "8L33"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], @@ -11705,7 +11861,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab terablast: ["9M"], thunderpunch: ["9M"], thunderwave: ["9M", "8M", "7M", "6M", "5M", "4M", "3T"], - triattack: ["8M"], + triattack: ["9M", "8M"], trick: ["9M", "8M", "7T", "6T", "5T", "4T"], trickroom: ["9M", "8M", "7M", "6M", "5M", "4M"], trumpcard: ["7L49", "6L49", "5L49", "4L53"], @@ -11725,6 +11881,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab acid: ["9M", "8L1"], acidspray: ["9M"], amnesia: ["9M", "8M", "8L27"], + ancientpower: ["9M"], attract: ["8M"], avalanche: ["9M", "8M"], blizzard: ["9M", "8M"], @@ -11741,6 +11898,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab disable: ["9M", "8L15"], dive: ["8M"], drainpunch: ["9M", "8M"], + dreameater: ["9M"], earthquake: ["9M", "8M"], eeriespell: ["9M", "8L0"], endure: ["9M", "8M"], @@ -11780,6 +11938,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab muddywater: ["9M", "8M"], mudshot: ["9M", "8M"], nastyplot: ["9M", "8M", "8L1"], + ominouswind: ["9M"], payday: ["8M"], poisonjab: ["9M"], powergem: ["9M", "8M", "8L1"], @@ -11799,6 +11958,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab scaryface: ["9M"], shadowball: ["9M", "8M"], skillswap: ["9M", "8M"], + skullbash: ["9M"], slackoff: ["9M", "8L33"], sleeptalk: ["9M", "8M"], sludgebomb: ["9M", "8M"], @@ -11821,7 +11981,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderwave: ["9M", "8M"], toxic: ["9M"], toxicspikes: ["9M"], - triattack: ["8M"], + triattack: ["9M", "8M"], trick: ["9M", "8M"], trickroom: ["9M", "8M"], venomdrench: ["8M"], @@ -12089,66 +12249,66 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab farfetchd: { learnset: { acrobatics: ["8M", "7M", "7L37", "6M", "6L37", "5M", "5L37"], - aerialace: ["8L20", "7M", "7L9", "6M", "6L9", "5M", "5L13", "4M", "4L13", "3M", "3S1"], - agility: ["8M", "8L60", "8V", "7L31", "7V", "6L31", "5L31", "4L31", "3L36"], + aerialace: ["9M", "8L20", "7M", "7L9", "6M", "6L9", "5M", "5L13", "4M", "4L13", "3M", "3S1"], + agility: ["9M", "8M", "8L60", "8V", "7L31", "7V", "6L31", "5L31", "4L31", "3L36"], aircutter: ["8L25", "7L21", "6L21", "5L21", "4T", "4L21"], - airslash: ["8M", "8L50", "8V", "7L49", "6L49", "5L49", "4L37"], + airslash: ["9M", "8M", "8L50", "8V", "7L49", "6L49", "5L49", "4L37"], attract: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], batonpass: ["8M", "3S1"], bide: ["7V"], - bodyslam: ["8M", "7V", "3T"], - bravebird: ["8M", "8L65", "7L1", "6L1", "5L55"], - brutalswing: ["8M", "7M"], + bodyslam: ["9M", "8M", "7V", "3T"], + bravebird: ["9M", "8M", "8L65", "7L1", "6L1", "5L55"], + brutalswing: ["9M", "8M", "7M"], captivate: ["4M"], - closecombat: ["8M"], + closecombat: ["9M", "8M"], confide: ["7M", "6M"], covet: ["8E", "7T", "7E", "6T", "6E", "5T", "5E", "4E"], - curse: ["8E", "7E", "7V", "6E", "5E", "4E", "3E"], + curse: ["9M", "8E", "7E", "7V", "6E", "5E", "4E", "3E"], cut: ["8L15", "8V", "7V", "6M", "5M", "4M", "3M"], defog: ["7T", "4M"], detect: ["7V"], doubleedge: ["7V", "3T"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], - dualwingbeat: ["8T"], - endure: ["8M", "7V", "4M", "3T"], - facade: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], - falseswipe: ["8M", "8L35", "7M", "7L45", "7V", "6M", "6L45", "5M", "5L45", "4M", "4L43", "3L46"], - featherdance: ["8E", "7E", "6E", "5E", "4E", "3E"], + dualwingbeat: ["9M", "8T"], + endure: ["9M", "8M", "7V", "4M", "3T"], + facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], + falseswipe: ["9M", "8M", "8L35", "7M", "7L45", "7V", "6M", "6L45", "5M", "5L45", "4M", "4L43", "3L46"], + featherdance: ["9M", "8E", "7E", "6E", "5E", "4E", "3E"], feint: ["8E", "8V", "7L43", "6L43", "5L43", "4L43"], finalgambit: ["8E", "7E"], - firstimpression: ["8E", "7E"], + firstimpression: ["9M", "8E", "7E"], flail: ["8E", "7E", "7V", "6E", "5E", "4E", "3E"], - fly: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], - focusenergy: ["8M", "8V"], + fly: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + focusenergy: ["9M", "8M", "8V"], foresight: ["7E", "7V", "6E", "5E", "4E", "3E"], frustration: ["7M", "7V", "6M", "5M", "4M", "3M"], furyattack: ["8V", "7L7", "7V", "6L7", "5L7", "4L7", "3L16"], furycutter: ["8L10", "7L1", "6L1", "5L1", "5D", "4T", "4L1", "3L26"], - gust: ["8E", "7E", "7V", "6E", "5E", "4E", "3E"], + gust: ["9M", "8E", "7E", "7V", "6E", "5E", "4E", "3E"], headbutt: ["8V", "7V", "4T"], - heatwave: ["8M", "7T", "6T", "5T", "4T"], + heatwave: ["9M", "8M", "7T", "6T", "5T", "4T"], helpinghand: ["8M", "8V", "7T", "6T", "5T"], - irontail: ["8M", "8V", "7T", "7V", "6T", "5T", "4M", "3M"], - knockoff: ["8L30", "7T", "7L13", "6T", "6L13", "5T", "5L9", "4T", "4L9", "3L21"], + irontail: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4M", "3M"], + knockoff: ["9M", "8L30", "7T", "7L13", "6T", "6L13", "5T", "5L9", "4T", "4L9", "3L21"], laserfocus: ["7T"], lastresort: ["7T", "6T", "5T", "4T"], - leafblade: ["8M", "8L55", "7E", "6E", "5E", "5D", "4E"], - leer: ["8L5", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L11"], + leafblade: ["9M", "8M", "8L55", "7E", "6E", "5E", "5D", "4E"], + leer: ["9M", "8L5", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L11"], mimic: ["7V", "3T"], mirrormove: ["8V", "7E", "7V", "6E", "5E", "4E", "3E"], mudslap: ["7E", "7V", "6E", "5E", "4T", "4E", "3T"], naturalgift: ["4M"], - nightslash: ["8E", "7L33", "7E", "6L33", "6E", "5L33", "5E", "4L33", "4E"], + nightslash: ["9M", "8E", "7L33", "7E", "6L33", "6E", "5L33", "5E", "4L33", "4E"], ominouswind: ["4T"], - peck: ["8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], + peck: ["9M", "8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], pluck: ["5M", "4M"], - poisonjab: ["8M", "8V", "7M", "7L1", "6M", "6L1", "5M", "5L1", "4M", "4L1"], - protect: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + poisonjab: ["9M", "8M", "8V", "7M", "7L1", "6M", "6L1", "5M", "5L1", "4M", "4L1"], + protect: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], psychup: ["7M", "7V", "6M", "5M", "4M", "3T"], - quickattack: ["8E", "8V", "7E", "7V", "6E", "5E", "4E", "3E"], + quickattack: ["9M", "8E", "8V", "7E", "7V", "6E", "5E", "4E", "3E"], rage: ["7V"], razorleaf: ["8V"], - razorwind: ["7V"], + razorwind: ["9M", "7V"], reflect: ["8V", "7V"], rest: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], retaliate: ["8M", "6M", "5M"], @@ -12160,28 +12320,29 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab secretpower: ["6M", "4M", "3M"], simplebeam: ["8E", "7E", "6E"], skullbash: ["7V"], - skyattack: ["8E", "8V", "7T", "6T", "5T"], - slash: ["8L40", "8V", "7L19", "7V", "6L19", "5L19", "4L19", "3L41", "3S1"], + skyattack: ["9M", "8E", "8V", "7T", "6T", "5T"], + slash: ["9M", "8L40", "8V", "7L19", "7V", "6L19", "5L19", "4L19", "3L41", "3S1"], sleeptalk: ["8M", "7M", "7V", "6M", "5T", "4M", "3T"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], - solarblade: ["8M"], - steelwing: ["8M", "7M", "7E", "7V", "6M", "6E", "5E", "4M", "4E", "3M", "3E"], - substitute: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], + solarblade: ["9M", "8M"], + steelwing: ["9M", "8M", "7M", "7E", "7V", "6M", "6E", "5E", "4M", "4E", "3M", "3E"], + substitute: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], sunnyday: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], swagger: ["7M", "7V", "6M", "5M", "4M", "3T"], - swift: ["8M", "7V", "4T", "3T"], - swordsdance: ["8M", "8L45", "8V", "7M", "7L25", "7V", "6M", "6L25", "5M", "5L25", "4M", "4L25", "3T", "3L31", "3S1"], + swift: ["9M", "8M", "7V", "4T", "3T"], + swordsdance: ["9M", "8M", "8L45", "8V", "7M", "7L25", "7V", "6M", "6L25", "5M", "5L25", "4M", "4L25", "3T", "3L31", "3S1"], tailwind: ["7T", "6T", "5T"], takedown: ["7V"], thief: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], throatchop: ["8M", "7T"], + trailblaze: ["9M"], trumpcard: ["7E", "6E", "5E"], twister: ["4T"], uproar: ["8M", "7T", "6T", "5T", "4T"], - uturn: ["8M", "8V", "7M", "6M", "5M", "4M"], + uturn: ["9M", "8M", "8V", "7M", "6M", "5M", "4M"], whirlwind: ["7V"], wish: ["3S0"], - workup: ["8M", "7M", "5M"], + workup: ["9M", "8M", "7M", "5M"], yawn: ["3S0"], }, eventData: [ @@ -12195,104 +12356,133 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, farfetchdgalar: { learnset: { + aerialace: ["9M"], + agility: ["9M"], assurance: ["8M"], attract: ["8M"], - bodyslam: ["8M"], - bravebird: ["8M", "8L65"], - brickbreak: ["8M", "8L40"], - brutalswing: ["8M", "8L20"], - closecombat: ["8M"], + bodyslam: ["9M", "8M"], + bravebird: ["9M", "8M", "8L65"], + brickbreak: ["9M", "8M", "8L40"], + brutalswing: ["9M", "8M", "8L20"], + closecombat: ["9M", "8M"], counter: ["8E"], covet: ["8E"], - curse: ["8E"], + curse: ["9M", "8E"], defog: ["8L35"], - detect: ["8L25"], - doubleedge: ["8E"], - dualwingbeat: ["8T"], - endure: ["8M"], - facade: ["8M"], + detect: ["9M", "8L25"], + doubleedge: ["9M", "8E"], + dualwingbeat: ["9M", "8T"], + endure: ["9M", "8M"], + facade: ["9M", "8M"], + falseswipe: ["9M"], + featherdance: ["9M"], feint: ["8E"], finalgambit: ["8L60"], + firstimpression: ["9M"], flail: ["8E"], - focusenergy: ["8M"], + fly: ["9M"], + focusenergy: ["9M", "8M"], furycutter: ["8L10"], helpinghand: ["8M"], - knockoff: ["8L30"], - leafblade: ["8M", "8L55"], - leer: ["8L5"], - nightslash: ["8E"], - peck: ["8L1"], - poisonjab: ["8M"], - protect: ["8M"], - quickattack: ["8E"], + irontail: ["9M"], + knockoff: ["9M", "8L30"], + leafblade: ["9M", "8M", "8L55"], + leer: ["9M", "8L5"], + nightslash: ["9M", "8E"], + peck: ["9M", "8L1"], + poisonjab: ["9M", "8M"], + protect: ["9M", "8M"], + quickattack: ["9M", "8E"], quickguard: ["8E"], + razorwind: ["9M"], rest: ["8M"], retaliate: ["8M"], revenge: ["8M"], - rocksmash: ["8L15"], + rocksmash: ["9M", "8L15"], round: ["8M"], sandattack: ["8L1"], simplebeam: ["8E"], - skyattack: ["8E"], + skyattack: ["9M", "8E"], slam: ["8L50"], + slash: ["9M"], sleeptalk: ["8M"], snore: ["8M"], - solarblade: ["8M"], - steelwing: ["8M"], - substitute: ["8M"], + solarblade: ["9M", "8M"], + steelwing: ["9M", "8M"], + substitute: ["9M", "8M"], sunnyday: ["8M"], superpower: ["8M"], - swordsdance: ["8M", "8L45"], + swift: ["9M"], + swordsdance: ["9M", "8M", "8L45"], throatchop: ["8M"], - workup: ["8M"], + uturn: ["9M"], + vacuumwave: ["9M"], + workup: ["9M", "8M"], }, }, sirfetchd: { learnset: { + aerialace: ["9M"], + agility: ["9M"], assurance: ["8M"], attract: ["8M"], - bodyslam: ["8M"], - bravebird: ["8M", "8L65"], - brickbreak: ["8M", "8L40"], - brutalswing: ["8M", "8L20", "8S0"], - closecombat: ["8M"], + bodyslam: ["9M", "8M"], + bravebird: ["9M", "8M", "8L65"], + brickbreak: ["9M", "8M", "8L40"], + brutalswing: ["9M", "8M", "8L20", "8S0"], + closecombat: ["9M", "8M"], coaching: ["8T"], + curse: ["9M"], defog: ["8L35"], - detect: ["8L25", "8S0"], - dualwingbeat: ["8T"], - endure: ["8M"], - facade: ["8M"], + detect: ["9M", "8L25", "8S0"], + doubleedge: ["9M"], + dualwingbeat: ["9M", "8T"], + endure: ["9M", "8M"], + facade: ["9M", "8M"], + falseswipe: ["9M"], + featherdance: ["9M"], finalgambit: ["8L60"], - firstimpression: ["8L1"], - focusenergy: ["8M"], + firstimpression: ["9M", "8L1"], + fly: ["9M"], + focusenergy: ["9M", "8M"], furycutter: ["8L1", "8S0"], grassyglide: ["8T"], helpinghand: ["8M"], - irondefense: ["8M", "8L0"], - knockoff: ["8L30"], - leafblade: ["8M", "8L55"], - leer: ["8L1"], - meteorassault: ["8L70", "8S0"], - peck: ["8L1"], - poisonjab: ["8M"], - protect: ["8M"], + irondefense: ["9M", "8M", "8L0"], + irontail: ["9M"], + knockoff: ["9M", "8L30"], + leafblade: ["9M", "8M", "8L55"], + leer: ["9M", "8L1"], + meteorassault: ["9M", "8L70", "8S0"], + nightslash: ["9M"], + peck: ["9M", "8L1"], + poisonjab: ["9M", "8M"], + protect: ["9M", "8M"], + quickattack: ["9M"], + razorwind: ["9M"], rest: ["8M"], retaliate: ["8M"], revenge: ["8M"], - rocksmash: ["8L15"], + rocksmash: ["9M", "8L15"], round: ["8M"], sandattack: ["8L1"], + skullbash: ["9M"], + skyattack: ["9M"], slam: ["8L50"], + slash: ["9M"], sleeptalk: ["8M"], snore: ["8M"], - solarblade: ["8M"], - steelwing: ["8M"], - substitute: ["8M"], + solarblade: ["9M", "8M"], + steelwing: ["9M", "8M"], + substitute: ["9M", "8M"], sunnyday: ["8M"], superpower: ["8M"], - swordsdance: ["8M", "8L45"], + swift: ["9M"], + swordsdance: ["9M", "8M", "8L45"], throatchop: ["8M"], - workup: ["8M"], + uturn: ["9M"], + vacuumwave: ["9M"], + workup: ["9M", "8M"], }, eventData: [ { generation: 8, level: 80, gender: "M", nature: "Brave", abilities: ["steadfast"], ivs: { hp: 30, atk: 31, def: 31, spa: 30, spd: 30, spe: 31 }, moves: ["meteorassault", "brutalswing", "furycutter", "detect"], pokeball: "pokeball" }, @@ -12468,8 +12658,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ], encounters: [ { generation: 1, level: 29 }, - { generation: 2, level: 10, gender: "F" - }, + { generation: 2, level: 10, gender: "F" }, { generation: 2, level: 30 }, { generation: 3, level: 29, pokeball: "safariball" }, { generation: 4, level: 15, gender: "F", nature: "Impish", ivs: { hp: 20, atk: 20, def: 20, spa: 15, spd: 15, spe: 15 }, abilities: ["runaway"], pokeball: "pokeball" }, @@ -12977,8 +13166,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab { generation: 3, level: 32 }, { generation: 4, level: 15 }, { generation: 5, level: 5 }, - { generation: 5, level: 35, isHidden: true - }, + { generation: 5, level: 35, isHidden: true }, { generation: 6, level: 30 }, ], }, @@ -13539,7 +13727,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab naturalgift: ["4M"], nightmare: ["7L61", "7V", "6L61", "5L61", "4L55", "3T", "3L53"], nightshade: ["9M", "8L30", "8V", "7L15", "7V", "6L15", "6S2", "5L15", "4L15", "3L16", "3S0"], - ominouswind: ["4T"], + ominouswind: ["9M", "4T"], painsplit: ["9M", "7T", "6T", "5T", "4T"], payback: ["9M", "8M", "8L12", "7M", "7L28", "6M", "6L28", "5M", "5L28", "4M", "4L28"], perishsong: ["9M", "8L1"], @@ -13644,7 +13832,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab earthquake: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], endure: ["9M", "8M", "7V", "4M", "3T"], explosion: ["7M", "7V", "6M", "5M", "4M", "4E", "3T", "3E"], - facade: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], fissure: ["7V"], flail: ["8E", "7E", "7V", "6E", "5E", "4E", "3E"], flashcannon: ["8M", "8V", "7M", "6M", "5M", "4M"], @@ -13657,7 +13845,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab highhorsepower: ["8M"], ironhead: ["9M", "8M", "7T", "6T", "5T", "4T"], irontail: ["9M", "8M", "8L48", "8V", "7T", "7L40", "7V", "6T", "6L40", "5T", "5L40", "4M", "4L38", "3M", "3L45"], - meteorbeam: ["8T"], + meteorbeam: ["9M", "8T"], mimic: ["7V", "3T"], mudslap: ["7V", "4T", "3T"], mudsport: ["7L1", "6L1", "5L1", "4L1"], @@ -13670,7 +13858,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rest: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], roar: ["7M", "7V", "6M", "5M", "4M", "3M"], - rockblast: ["8M", "7E", "6E", "5E", "4E"], + rockblast: ["9M", "8M", "7E", "6E", "5E", "4E"], rockclimb: ["7E", "6E", "5E", "5D", "4M"], rockpolish: ["8L8", "7M", "7L19", "6M", "6L19", "5M", "5L19", "4M", "4L30"], rockslide: ["9M", "8M", "8L20", "8V", "7M", "7L34", "7V", "6M", "6L34", "5M", "5L34", "4M", "4E", "3T", "3E"], @@ -13683,7 +13871,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab sandstorm: ["8M", "8L40", "7M", "7L52", "7V", "6M", "6L52", "5M", "5L25", "4M", "4L22", "3M", "3L33"], sandtomb: ["9M", "8M", "8L28", "7L37", "6L37", "5L37", "4L41", "3L49"], scaryface: ["8M"], - scorchingsands: ["8T"], + scorchingsands: ["9M", "8T"], screech: ["9M", "8M", "8L24", "8V", "7L31", "7V", "6L31", "5L6", "4L6", "3L1"], secretpower: ["6M", "4M", "3M"], selfdestruct: ["9M", "8M", "8V", "7V", "3T"], @@ -13712,7 +13900,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, steelix: { learnset: { - ancientpower: ["4T"], + ancientpower: ["9M", "4T"], aquatail: ["7T", "6T", "5T", "4T"], attract: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], autotomize: ["8L8", "7L19", "6L19", "5L19"], @@ -13742,8 +13930,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab earthquake: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], endure: ["9M", "8M", "7V", "4M", "3T"], explosion: ["7M", "6M", "5M", "4M", "3T"], - facade: ["8M", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], firefang: ["9M", "8M", "8L1", "7L1", "6L1", "5L1", "4L1"], + fissure: ["9M"], flashcannon: ["9M", "8M", "7M", "6M", "5M", "4M"], frustration: ["7M", "7V", "6M", "5M", "4M", "3M"], gigaimpact: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -13759,7 +13948,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ironhead: ["9M", "8M", "7T", "6T", "5T", "4T"], irontail: ["9M", "8M", "8L48", "7T", "7L40", "7V", "6T", "6L40", "5T", "5L40", "4M", "4L38", "3M", "3L45"], magnetrise: ["8L60", "7T", "6T", "5T", "4T"], - meteorbeam: ["8T"], + meteorbeam: ["9M", "8T"], mimic: ["3T"], mudslap: ["7V", "4T", "3T"], mudsport: ["7L1", "6L1", "5L1", "4L1"], @@ -13767,13 +13956,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab naturepower: ["7M", "6M"], payback: ["8M", "7M", "6M", "5M", "4M"], protect: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], - psychicfangs: ["8M"], + psychicfangs: ["9M", "8M"], psychup: ["7M", "6M", "5M", "4M"], rage: ["7L13", "7V", "6L13", "5L10", "4L14", "3L23"], rest: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], roar: ["7M", "7V", "6M", "5M", "4M", "3M"], - rockblast: ["8M"], + rockblast: ["9M", "8M"], rockclimb: ["4M"], rockpolish: ["8L1", "7M", "6M", "5M", "4M", "4L30"], rockslide: ["9M", "8M", "8L20", "7M", "7L34", "6M", "6L34", "5M", "5L34", "4M", "3T"], @@ -13785,7 +13974,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab sandstorm: ["8M", "8L40", "7M", "7L52", "7V", "6M", "6L52", "5M", "5L25", "4M", "4L22", "3M", "3L33"], sandtomb: ["9M", "8M", "8L28"], scaryface: ["8M"], - scorchingsands: ["8T"], + scorchingsands: ["9M", "8T"], screech: ["9M", "8M", "8L24", "7L31", "7V", "6L31", "5L6", "4L6", "3L1"], secretpower: ["6M", "4M", "3M"], selfdestruct: ["9M", "8M", "3T"], @@ -13794,7 +13983,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab smackdown: ["8L4", "7M", "7L22", "6M", "6L22", "5M", "5L22"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], stealthrock: ["9M", "8M", "8L32", "7T", "7L16", "6T", "6L16", "5T", "5L16", "4M"], - steelbeam: ["8T"], + steelbeam: ["9M", "8T"], steelroller: ["8T"], stompingtantrum: ["8M", "7T"], stoneedge: ["9M", "8M", "8L52", "7M", "7L46", "6M", "6L46", "5M", "5L46", "4M", "4L49"], @@ -14813,97 +15002,98 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab cubone: { learnset: { aerialace: ["7M", "6M", "5M", "4M", "3M"], - ancientpower: ["8E", "7E", "7V", "6E", "5E", "4E", "3E"], + ancientpower: ["9M", "8E", "7E", "7V", "6E", "5E", "4E", "3E"], attract: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], bellydrum: ["8E", "7E", "7V", "6E", "5E", "4E", "3E"], bide: ["7V"], - blizzard: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], - bodyslam: ["8M", "7V", "3T"], + blizzard: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + bodyslam: ["9M", "8M", "7V", "3T"], boneclub: ["8V", "7L7", "7V", "6L7", "5L7", "5D", "4L7", "3L9"], - bonemerang: ["8L40", "8V", "7L21", "7V", "6L21", "5L21", "4L21", "3L25"], + bonemerang: ["9M", "8L40", "8V", "7L21", "7V", "6L21", "5L21", "4L21", "3L25"], bonerush: ["8L29", "7L51", "7V", "6L37", "5L37", "4L37", "3L41"], - brickbreak: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], - brutalswing: ["8M", "7M"], + brickbreak: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], + brutalswing: ["9M", "8M", "7M"], bubblebeam: ["7V"], - bulldoze: ["8M", "7M", "6M", "5M"], + bulldoze: ["9M", "8M", "7M", "6M", "5M"], captivate: ["4M"], chipaway: ["7E", "6E", "5E"], confide: ["7M", "6M"], counter: ["7V", "3T"], - curse: ["8E", "7E", "7V"], - detect: ["8E", "7E", "7V", "6E", "5E", "4E"], - dig: ["8M", "8V", "7V", "6M", "5M", "4M", "3M"], - doubleedge: ["8L48", "8V", "7L43", "7V", "6L43", "5L43", "4L43", "3T", "3L45"], + curse: ["9M", "8E", "7E", "7V"], + detect: ["9M", "8E", "7E", "7V", "6E", "5E", "4E"], + dig: ["9M", "8M", "8V", "7V", "6M", "5M", "4M", "3M"], + doubleedge: ["9M", "8L48", "8V", "7L43", "7V", "6L43", "5L43", "4L43", "3T", "3L45"], doublekick: ["8E", "7E", "6E", "5E", "4E"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], dynamicpunch: ["7V", "3T"], - earthpower: ["8M", "7T", "6T", "5T", "4T"], - earthquake: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + earthpower: ["9M", "8M", "7T", "6T", "5T", "4T"], + earthquake: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], echoedvoice: ["7M", "6M", "5M"], endeavor: ["8L36", "7T", "7L41", "6T", "6L41", "5T", "5L41", "4T", "4L41"], - endure: ["8M", "7E", "7V", "6E", "5E", "4M", "3T"], - facade: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], - falseswipe: ["8M", "8L8", "7M", "7L27", "7V", "6M", "6L27", "5M", "5L27", "4M", "4L27", "3L33"], - fireblast: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], - firepunch: ["8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], + endure: ["9M", "8M", "7E", "7V", "6E", "5E", "4M", "3T"], + facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], + falseswipe: ["9M", "8M", "8L8", "7M", "7L27", "7V", "6M", "6L27", "5M", "5L27", "4M", "4L27", "3L33"], + fireblast: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + firepunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], fissure: ["7V"], - flamethrower: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + flamethrower: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], fling: ["8M", "8L20", "7M", "7L33", "6M", "6L33", "5M", "5L33", "4M", "4L33"], - focusenergy: ["8M", "8L32", "8V", "7L17", "7V", "6L17", "5L17", "4L17", "3L21"], + focusenergy: ["9M", "8M", "8L32", "8V", "7L17", "7V", "6L17", "5L17", "4L17", "3L21"], focuspunch: ["7T", "6T", "4M", "3M"], frustration: ["7M", "7V", "6M", "5M", "4M", "3M"], furycutter: ["4T"], - growl: ["8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], - headbutt: ["8L12", "8V", "7L11", "7V", "6L11", "5L11", "4T", "4L11", "3L13"], - icebeam: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], - icywind: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], + growl: ["9M", "8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], + headbutt: ["9M", "8L12", "8V", "7L11", "7V", "6L11", "5L11", "4T", "4L11", "3L13"], + icebeam: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + icywind: ["9M", "8M", "7T", "7V", "6T", "5T", "4T", "3T"], incinerate: ["6M", "5M"], - irondefense: ["8M", "7T", "6T", "5T", "4T"], - ironhead: ["8M", "7T", "7E", "6T", "6E", "5T", "5E", "4E"], - irontail: ["8M", "8V", "7T", "7V", "6T", "5T", "4M", "3M"], + irondefense: ["9M", "8M", "7T", "6T", "5T", "4T"], + ironhead: ["9M", "8M", "7T", "7E", "6T", "6E", "5T", "5E", "4E"], + irontail: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4M", "3M"], knockoff: ["7T", "6T", "5T", "4T"], - leer: ["8E", "8V", "7L13", "7V", "6L13", "5L13", "4L13", "3L17"], + leer: ["9M", "8E", "8V", "7L13", "7V", "6L13", "5L13", "4L13", "3L17"], lowkick: ["8M", "7T", "6T", "5T", "5D", "4T"], megakick: ["8M", "7V", "3T"], megapunch: ["8M", "7V", "3T"], mimic: ["7V", "3T"], mudslap: ["8L1", "7V", "4T", "3T"], naturalgift: ["4M"], - perishsong: ["8E", "7E", "7V", "6E", "5E", "5D", "4E", "3E"], + perishsong: ["9M", "8E", "7E", "7V", "6E", "5E", "5D", "4E", "3E"], poweruppunch: ["6M"], - protect: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + protect: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], rage: ["8V", "7L23", "7V", "6L23", "5L23", "4L23", "3L29"], rest: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], retaliate: ["8M", "8L16", "7L47", "6M", "6L47", "5M", "5L47"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], rockclimb: ["4M"], - rockslide: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "4E", "3T", "3E"], + rockslide: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "4E", "3T", "3E"], rocksmash: ["7V", "6M", "5M", "4M", "3M"], - rocktomb: ["8M", "7M", "6M", "5M", "4M", "3M"], + rocktomb: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], round: ["8M", "7M", "6M", "5M"], sandstorm: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], - scorchingsands: ["8T"], + scorchingsands: ["9M", "8T"], screech: ["8M", "7E", "7V", "6E", "5E", "4E", "3E"], secretpower: ["6M", "4M", "3M"], seismictoss: ["8V", "7V", "3T"], - skullbash: ["8E", "7E", "7V", "6E", "5E", "4E", "3E"], + skullbash: ["9M", "8E", "7E", "7V", "6E", "5E", "4E", "3E"], sleeptalk: ["8M", "7M", "7V", "6M", "5T", "4M", "3T"], smackdown: ["7M", "6M", "5M"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], - stealthrock: ["8M", "8V", "7T", "6T", "5T", "4M"], + stealthrock: ["9M", "8M", "8V", "7T", "6T", "5T", "4M"], stompingtantrum: ["8M", "8L24", "7L37"], strength: ["7V", "6M", "5M", "4M", "3M"], submission: ["7V"], - substitute: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], + substitute: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], sunnyday: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], swagger: ["7M", "7V", "6M", "5M", "4M", "3T"], - swift: ["8M"], - swordsdance: ["8M", "7M", "7V", "6M", "5M", "4M", "4E", "3T", "3E"], - tailwhip: ["8L4", "8V", "7L3", "7V", "6L3", "5L3", "4L3", "3L5"], + swift: ["9M", "8M"], + swordsdance: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "4E", "3T", "3E"], + tackle: ["9M"], + tailwhip: ["9M", "8L4", "8V", "7L3", "7V", "6L3", "5L3", "4L3", "3L5"], takedown: ["7V"], thief: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], thrash: ["8L44", "8V", "7L31", "7V", "6L31", "5L31", "4L31", "3L37"], - thunderpunch: ["8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], + thunderpunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], uproar: ["8M", "7T", "6T", "5T", "4T"], watergun: ["7V"], }, @@ -14914,100 +15104,103 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab marowak: { learnset: { aerialace: ["7M", "6M", "5M", "4M", "3M"], + ancientpower: ["9M"], attract: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], bide: ["7V"], - blizzard: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], - bodyslam: ["8M", "7V", "3T"], + blizzard: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + bodyslam: ["9M", "8M", "7V", "3T"], boneclub: ["8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], - bonemerang: ["8L48", "8V", "7L21", "7V", "6L21", "5L21", "4L21", "3L25"], + bonemerang: ["9M", "8L48", "8V", "7L21", "7V", "6L21", "5L21", "4L21", "3L25"], bonerush: ["8L31", "7L65", "7V", "6L43", "5L43", "4L43", "3L53"], - brickbreak: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], - brutalswing: ["8M", "7M"], + brickbreak: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], + brutalswing: ["9M", "8M", "7M"], bubblebeam: ["7V"], - bulldoze: ["8M", "7M", "6M", "5M"], + bulldoze: ["9M", "8M", "7M", "6M", "5M"], captivate: ["4M"], confide: ["7M", "6M"], counter: ["7V", "3T"], - curse: ["7V"], - detect: ["7V"], - dig: ["8M", "8V", "7V", "6M", "5M", "4M", "3M"], - doubleedge: ["8L60", "8V", "7L53", "7V", "6L53", "5L53", "4L53", "3T", "3L61"], + curse: ["9M", "7V"], + detect: ["9M", "7V"], + dig: ["9M", "8M", "8V", "7V", "6M", "5M", "4M", "3M"], + doubleedge: ["9M", "8L60", "8V", "7L53", "7V", "6L53", "5L53", "4L53", "3T", "3L61"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], dynamicpunch: ["7V", "3T"], - earthpower: ["8M", "7T", "6T", "5T", "4T"], - earthquake: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M", "3S0"], + earthpower: ["9M", "8M", "7T", "6T", "5T", "4T"], + earthquake: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M", "3S0"], echoedvoice: ["7M", "6M", "5M"], endeavor: ["8L42", "7T", "7L49", "6T", "6L49", "5T", "5L49", "4T", "4L49"], - endure: ["8M", "7V", "4M", "3T"], - facade: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], - falseswipe: ["8M", "8L1", "7M", "7L27", "7V", "6M", "6L27", "5M", "5L27", "4M", "4L27", "3L39"], - fireblast: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], - firepunch: ["8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], - fissure: ["7V"], - flamethrower: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + endure: ["9M", "8M", "7V", "4M", "3T"], + facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], + falseswipe: ["9M", "8M", "8L1", "7M", "7L27", "7V", "6M", "6L27", "5M", "5L27", "4M", "4L27", "3L39"], + fireblast: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + firepunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], + fissure: ["9M", "7V"], + flamethrower: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], fling: ["8M", "8L20", "7M", "7L37", "6M", "6L37", "5M", "5L37", "4M", "4L37"], - focusblast: ["8M", "7M", "6M", "5M", "4M"], - focusenergy: ["8M", "8L36", "8V", "7L17", "7V", "6L17", "5L17", "4L17", "3L21"], + focusblast: ["9M", "8M", "7M", "6M", "5M", "4M"], + focusenergy: ["9M", "8M", "8L36", "8V", "7L17", "7V", "6L17", "5L17", "4L17", "3L21"], focuspunch: ["7T", "6T", "4M", "3M"], frustration: ["7M", "7V", "6M", "5M", "4M", "3M"], furycutter: ["4T"], - gigaimpact: ["8M", "7M", "6M", "5M", "4M"], - growl: ["8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], - headbutt: ["8L12", "8V", "7L1", "7V", "6L1", "5L1", "4T", "4L1", "3L1"], - hyperbeam: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], - icebeam: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], - icywind: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], + gigaimpact: ["9M", "8M", "7M", "6M", "5M", "4M"], + growl: ["9M", "8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], + headbutt: ["9M", "8L12", "8V", "7L1", "7V", "6L1", "5L1", "4T", "4L1", "3L1"], + hyperbeam: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + icebeam: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + icywind: ["9M", "8M", "7T", "7V", "6T", "5T", "4T", "3T"], incinerate: ["6M", "5M"], - irondefense: ["8M", "7T", "6T", "5T", "4T"], - ironhead: ["8M", "7T", "6T", "5T"], - irontail: ["8M", "8V", "7T", "7V", "6T", "5T", "4M", "3M"], + irondefense: ["9M", "8M", "7T", "6T", "5T", "4T"], + ironhead: ["9M", "8M", "7T", "6T", "5T"], + irontail: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4M", "3M"], knockoff: ["7T", "6T", "5T", "4T"], laserfocus: ["7T"], - leer: ["8V", "7L13", "7V", "6L13", "5L13", "4L13", "3L17"], + leer: ["9M", "8V", "7L13", "7V", "6L13", "5L13", "4L13", "3L17"], lowkick: ["8M", "7T", "6T", "5T", "4T"], megakick: ["8M", "7V", "3T"], megapunch: ["8M", "7V", "3T"], mimic: ["7V", "3T"], mudslap: ["8L1", "7V", "4T", "3T"], naturalgift: ["4M"], - outrage: ["8M", "8V", "7T", "6T", "5T", "4T"], - poweruppunch: ["6M"], - protect: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + outrage: ["9M", "8M", "8V", "7T", "6T", "5T", "4T"], + perishsong: ["9M"], + poweruppunch: ["9M", "6M"], + protect: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], rage: ["8V", "7L23", "7V", "6L23", "5L23", "4L23", "3L32"], rest: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], retaliate: ["8M", "8L16", "7L59", "6M", "6L59", "5M", "5L59"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], rockclimb: ["4M"], - rockslide: ["8M", "8V", "7M", "6M", "5M", "4M", "3T", "3S0"], + rockslide: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3T", "3S0"], rocksmash: ["7V", "6M", "5M", "4M", "3M"], - rocktomb: ["8M", "7M", "6M", "5M", "4M", "3M"], + rocktomb: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], round: ["8M", "7M", "6M", "5M"], sandstorm: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], - scorchingsands: ["8T"], + scorchingsands: ["9M", "8T"], screech: ["8M", "8V"], secretpower: ["6M", "4M", "3M"], seismictoss: ["8V", "7V", "3T"], sing: ["3S0"], - skullbash: ["7V"], + skullbash: ["9M", "7V"], sleeptalk: ["8M", "7M", "7V", "6M", "5T", "4M", "3T"], smackdown: ["7M", "6M", "5M"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], - stealthrock: ["8M", "8V", "7T", "6T", "5T", "4M"], + stealthrock: ["9M", "8M", "8V", "7T", "6T", "5T", "4M"], stompingtantrum: ["8M", "8L24", "7T", "7L43"], - stoneedge: ["8M", "7M", "6M", "5M", "4M"], + stoneedge: ["9M", "8M", "7M", "6M", "5M", "4M"], strength: ["7V", "6M", "5M", "4M", "3M"], submission: ["7V"], - substitute: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], + substitute: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], sunnyday: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], swagger: ["7M", "7V", "6M", "5M", "4M", "3T"], - swift: ["8M"], - swordsdance: ["8M", "8V", "7M", "6M", "5M", "4M", "3T", "3S0"], - tailwhip: ["8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], + swift: ["9M", "8M"], + swordsdance: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3T", "3S0"], + tackle: ["9M"], + tailwhip: ["9M", "8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], takedown: ["7V"], thief: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], thrash: ["8L54", "8V", "7L33", "7V", "6L33", "5L33", "4L33", "3L46"], throatchop: ["8M", "7T"], - thunderpunch: ["8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], + thunderpunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], uproar: ["8M", "7T", "6T", "5T", "4T"], watergun: ["7V"], }, @@ -15024,99 +15217,107 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab learnset: { aerialace: ["7M"], allyswitch: ["8M", "7T"], + ancientpower: ["9M"], attract: ["8M", "7M"], - blizzard: ["8M", "8V", "7M"], - bodyslam: ["8M"], + blizzard: ["9M", "8M", "8V", "7M"], + bodyslam: ["9M", "8M"], boneclub: ["8V", "7L1"], - bonemerang: ["8L48", "8V", "7L21"], + bonemerang: ["9M", "8L48", "8V", "7L21"], bonerush: ["8L31", "7L65"], - brickbreak: ["8M", "8V", "7M"], - brutalswing: ["8M", "7M"], - bulldoze: ["8M", "7M"], + brickbreak: ["9M", "8M", "8V", "7M"], + brutalswing: ["9M", "8M", "7M"], + bulldoze: ["9M", "8M", "7M"], burningjealousy: ["8T"], confide: ["7M"], - darkpulse: ["8M", "8V", "7M"], - dig: ["8M", "8V"], - doubleedge: ["8L1"], + curse: ["9M"], + darkpulse: ["9M", "8M", "8V", "7M"], + detect: ["9M"], + dig: ["9M", "8M", "8V"], + doubleedge: ["9M", "8L1"], doubleteam: ["7M"], dreameater: ["8V", "7M"], - earthpower: ["8M", "7T"], - earthquake: ["8M", "8V", "7M"], + earthpower: ["9M", "8M", "7T"], + earthquake: ["9M", "8M", "8V", "7M"], echoedvoice: ["7M"], endeavor: ["8L42", "7T", "7L49"], - endure: ["8M"], - facade: ["8M", "8V", "7M"], - falseswipe: ["8M", "8L1", "7M"], - fireblast: ["8M", "8V", "7M"], - firepunch: ["8M", "8V", "7T"], - firespin: ["8M", "8L1", "8V"], - flamecharge: ["7M"], - flamethrower: ["8M", "8V", "7M"], - flamewheel: ["8L12", "7L1"], - flareblitz: ["8M", "8L60", "8V", "7L53"], + endure: ["9M", "8M"], + facade: ["9M", "8M", "8V", "7M"], + falseswipe: ["9M", "8M", "8L1", "7M"], + fireblast: ["9M", "8M", "8V", "7M"], + firepunch: ["9M", "8M", "8V", "7T"], + firespin: ["9M", "8M", "8L1", "8V"], + fissure: ["9M"], + flamecharge: ["9M", "7M"], + flamethrower: ["9M", "8M", "8V", "7M"], + flamewheel: ["9M", "8L12", "7L1"], + flareblitz: ["9M", "8M", "8L60", "8V", "7L53"], fling: ["8M", "8L20", "7M", "7L37"], - focusblast: ["8M", "7M"], - focusenergy: ["8M", "8L1"], + focusblast: ["9M", "8M", "7M"], + focusenergy: ["9M", "8M", "8L1"], focuspunch: ["7T"], frustration: ["7M"], - gigaimpact: ["8M", "7M"], - growl: ["8L1", "8V", "7L1"], - headbutt: ["8L1", "8V"], - heatwave: ["8M", "7T"], + gigaimpact: ["9M", "8M", "7M"], + growl: ["9M", "8L1", "8V", "7L1"], + headbutt: ["9M", "8L1", "8V"], + heatwave: ["9M", "8M", "7T"], hex: ["8M", "8L16", "7L17"], - hyperbeam: ["8M", "8V", "7M"], - icebeam: ["8M", "8V", "7M"], - icywind: ["8M", "7T"], + hyperbeam: ["9M", "8M", "8V", "7M"], + icebeam: ["9M", "8M", "8V", "7M"], + icywind: ["9M", "8M", "7T"], imprison: ["8M"], - irondefense: ["8M", "7T"], - ironhead: ["8M", "7T"], - irontail: ["8M", "8V", "7T"], + irondefense: ["9M", "8M", "7T"], + ironhead: ["9M", "8M", "7T"], + irontail: ["9M", "8M", "8V", "7T"], knockoff: ["7T"], laserfocus: ["7T"], - leer: ["8V", "7L13"], + leer: ["9M", "8V", "7L13"], lowkick: ["8M", "7T"], megakick: ["8M"], megapunch: ["8M"], mudslap: ["8L1"], - outrage: ["8M", "8V", "7T"], + outrage: ["9M", "8M", "8V", "7T"], painsplit: ["7T"], + perishsong: ["9M"], poltergeist: ["8T"], - protect: ["8M", "8V", "7M"], + poweruppunch: ["9M"], + protect: ["9M", "8M", "8V", "7M"], rage: ["8V"], raindance: ["8M", "7M"], rest: ["8M", "8V", "7M"], retaliate: ["8M", "8L1", "7L59"], return: ["7M"], - rockslide: ["8M", "8V", "7M"], - rocktomb: ["8M", "7M"], + rockslide: ["9M", "8M", "8V", "7M"], + rocktomb: ["9M", "8M", "7M"], round: ["8M", "7M"], sandstorm: ["8M", "7M"], - scorchingsands: ["8T"], + scorchingsands: ["9M", "8T"], screech: ["8M", "8V"], seismictoss: ["8V"], - shadowball: ["8M", "8V", "7M"], - shadowbone: ["8L0", "7L27"], + shadowball: ["9M", "8M", "8V", "7M"], + shadowbone: ["9M", "8L0", "7L27"], + skullbash: ["9M"], sleeptalk: ["8M", "7M"], smackdown: ["7M"], snore: ["8M", "7T"], spite: ["7T"], - stealthrock: ["8M", "8V", "7T"], + stealthrock: ["9M", "8M", "8V", "7T"], stompingtantrum: ["8M", "8L24", "7T", "7L43"], - stoneedge: ["8M", "7M"], - substitute: ["8M", "8V", "7M"], + stoneedge: ["9M", "8M", "7M"], + substitute: ["9M", "8M", "8V", "7M"], sunnyday: ["8M", "7M"], swagger: ["7M"], - swift: ["8M"], - swordsdance: ["8M", "8V", "7M"], - tailwhip: ["8L1", "8V", "7L1"], + swift: ["9M", "8M"], + swordsdance: ["9M", "8M", "8V", "7M"], + tackle: ["9M"], + tailwhip: ["9M", "8L1", "8V", "7L1"], thief: ["8M", "7M"], thrash: ["8L54", "8V", "7L33"], throatchop: ["8M", "7T"], - thunder: ["8M", "8V", "7M"], - thunderbolt: ["8M", "8V", "7M"], - thunderpunch: ["8M", "8V", "7T"], + thunder: ["9M", "8M", "8V", "7M"], + thunderbolt: ["9M", "8M", "8V", "7M"], + thunderpunch: ["9M", "8M", "8V", "7T"], uproar: ["8M", "7T"], - willowisp: ["8M", "8L36", "8V", "7M", "7L23"], + willowisp: ["9M", "8M", "8L36", "8V", "7M", "7L23"], }, }, marowakalolatotem: { @@ -16994,8 +17195,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bulldoze: ["9M", "8M", "7M", "6M", "5M"], captivate: ["4M"], chipaway: ["7L31", "6L31", "5L31"], - circlethrow: ["8E", "7E", "6E", "5E"], - cometpunch: ["8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1", "3S1"], + circlethrow: ["9M", "8E", "7E", "6E", "5E"], + cometpunch: ["9M", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1", "3S1"], confide: ["7M", "6M"], counter: ["8E", "7E", "7V", "6E", "5E", "5D", "4E", "3T", "3E"], covet: ["7T", "6T", "5T"], @@ -17007,15 +17208,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab disable: ["8E", "7E", "7V", "6E", "5E", "4E", "3E"], dizzypunch: ["8V", "7L34", "7V", "6L34", "5L34", "4L25", "3L43", "3S2"], doubleedge: ["9M", "8E", "7E", "7V", "6E", "5E", "4E", "3T"], - doublehit: ["8L32", "7L19", "6L19", "5L19", "4L43"], + doublehit: ["9M", "8L32", "7L19", "6L19", "5L19", "4L43"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], - drainpunch: ["8M", "7T", "6T", "5T", "5D", "4M"], + drainpunch: ["9M", "8M", "7T", "6T", "5T", "5D", "4M"], + dualchop: ["9M"], dynamicpunch: ["9M", "7V", "3T"], earthquake: ["9M", "8M", "8V", "7M", "7V", "6M", "6S3", "5M", "4M", "3M", "3S2"], endeavor: ["8E", "7T", "7E", "6T", "6E", "5T", "5E", "4T", "4E"], endure: ["9M", "8M", "8L40", "7L43", "7V", "6L43", "5L43", "4M", "4L34", "3T", "3L37"], - facade: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], - fakeout: ["8L8", "8V", "7L7", "6L7", "6S3", "5L7", "5D", "4L7", "3L19"], + facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], + fakeout: ["9M", "8L8", "8V", "7L7", "6L7", "6S3", "5L7", "5D", "4L7", "3L19"], fireblast: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], firepunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], fissure: ["7V"], @@ -17535,7 +17737,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleedge: ["7V", "3T"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], endure: ["9M", "8M", "7V", "4M", "3T"], - facade: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], flash: ["7V", "6M", "5M", "4M", "3M"], flashcannon: ["9M", "8M", "8V", "7M", "6M", "5M", "4M"], flipturn: ["9M", "8T"], @@ -17572,7 +17774,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rollout: ["4T"], round: ["8M", "7M", "6M", "5M"], safeguard: ["9M"], - scald: ["8M", "8V", "7M", "6M", "5M"], + scald: ["9M", "8M", "8V", "7M", "6M", "5M"], secretpower: ["6M", "4M", "3M"], selfdestruct: ["9M"], signalbeam: ["7T", "6T", "5T", "4T"], @@ -17589,7 +17791,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunder: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], thunderbolt: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], thunderwave: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], - triattack: ["8M", "8V", "7V"], + triattack: ["9M", "8M", "8V", "7V"], twister: ["4T"], waterfall: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], watergun: ["9M", "8L4", "8V", "7L4", "7V", "6L4", "5L6", "5D", "4L6", "3L6", "3S1"], @@ -17609,6 +17811,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab learnset: { agility: ["9M", "8M"], allyswitch: ["8M", "7T"], + ancientpower: ["9M"], aquajet: ["9M"], attract: ["7V"], avalanche: ["8M", "4M"], @@ -17617,6 +17820,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab brine: ["8M", "8L1", "4M"], bubblebeam: ["9M", "7V"], bulkup: ["9M"], + chargebeam: ["9M"], + chillingwater: ["9M"], confide: ["7M", "6M"], confuseray: ["9M", "8L1", "7L40", "7V", "6L22", "5L22", "4L28", "3L33"], cosmicpower: ["8M", "8L1"], @@ -17625,10 +17830,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dive: ["8M", "6M", "5M", "4T", "3M"], doubleedge: ["9M", "7V", "3T"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], - dreameater: ["8V", "7M", "7V", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], endure: ["9M", "8M", "7V", "4M", "3T"], expandingforce: ["8T"], - facade: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], flash: ["7V", "6M", "5M", "4M", "3M"], flashcannon: ["9M", "8M", "8V", "7M", "6M", "5M", "4M"], flipturn: ["9M", "8T"], @@ -17648,7 +17853,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lightscreen: ["9M", "8M", "8L1", "8V", "7M", "6M", "5M", "4M", "3M"], liquidation: ["9M"], magiccoat: ["7T", "6T", "5T", "4T"], - meteorbeam: ["8T"], + meteorbeam: ["9M", "8T"], mimic: ["7V", "3T"], minimize: ["8L1"], naturalgift: ["4M"], @@ -17674,12 +17879,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rollout: ["4T"], round: ["8M", "7M", "6M", "5M"], safeguard: ["9M"], - scald: ["8M", "8V", "7M", "6M", "5M"], + scald: ["9M", "8M", "8V", "7M", "6M", "5M"], secretpower: ["6M", "4M", "3M"], selfdestruct: ["9M"], signalbeam: ["7T", "6T", "5T", "4T"], skillswap: ["8M", "7T", "6T", "5T", "4M", "3M"], - skullbash: ["7V"], + skullbash: ["9M", "7V"], sleeptalk: ["8M", "7M", "7V", "6M", "5T", "4M", "3T"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], spotlight: ["7L1"], @@ -17694,9 +17899,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunder: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], thunderbolt: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], thunderwave: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], - triattack: ["8M", "8V", "7V"], + triattack: ["9M", "8M", "8V", "7V"], trick: ["8M", "7T", "6T", "5T", "4T"], trickroom: ["8M", "7M", "6M", "5M", "4M"], + tripleaxel: ["9M"], twister: ["4T"], waterfall: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M", "3S0"], watergun: ["9M", "8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], @@ -17716,83 +17922,91 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab attract: ["8M", "7M", "6M", "5M", "4M"], barrier: ["7L1", "6L1", "5L1", "4L1"], batonpass: ["8M", "8L4", "7L46", "6L46", "5L46", "4L46"], - brickbreak: ["8M", "7M", "6M", "5M", "4M"], - calmmind: ["8M", "7M", "6M", "5M", "4M"], + brickbreak: ["9M", "8M", "7M", "6M", "5M", "4M"], + calmmind: ["9M", "8M", "7M", "6M", "5M", "4M"], captivate: ["4M"], chargebeam: ["7M", "6M", "5M", "4M"], - charm: ["8M", "7E", "6E", "5E", "4E"], + charm: ["9M", "8M", "7E", "6E", "5E", "4E"], confide: ["7M", "6M"], - confuseray: ["8E", "7E", "6E", "5E", "4E"], - confusion: ["8L12", "7L1", "6L1", "5L1", "4L1"], + confuseray: ["9M", "8E", "7E", "6E", "5E", "4E"], + confusion: ["9M", "8L12", "7L1", "6L1", "5L1", "4L1"], copycat: ["8L1", "7L4", "6L4", "5L4", "4L4"], covet: ["7T", "6T", "5T"], - dazzlinggleam: ["8M", "8L44"], + dazzlinggleam: ["9M", "8M", "8L44"], doubleslap: ["7L11", "6L11", "5L11", "4L15"], doubleteam: ["7M", "6M", "5M", "4M"], - drainpunch: ["8M", "7T", "6T", "5T", "4M"], - dreameater: ["7M", "6M", "5M", "4M"], + drainpunch: ["9M", "8M", "7T", "6T", "5T", "4M"], + dreameater: ["9M", "7M", "6M", "5M", "4M"], encore: ["8M", "8L8", "7L18", "6L18", "5L11", "4L11"], - endure: ["8M", "4M"], - facade: ["8M", "7M", "6M", "5M", "4M"], - fakeout: ["8E", "7E", "6E", "5E", "4E"], + endure: ["9M", "8M", "4M"], + energyball: ["9M"], + facade: ["9M", "8M", "7M", "6M", "5M", "4M"], + fakeout: ["9M", "8E", "7E", "6E", "5E", "4E"], + firstimpression: ["9M"], flash: ["6M", "5M", "4M"], fling: ["8M", "7M", "6M", "5M", "4M"], focuspunch: ["7T", "6T", "4M"], frustration: ["7M", "6M", "5M", "4M"], - futuresight: ["8M", "7E", "6E", "5E", "4E"], + futuresight: ["9M", "8M", "7E", "6E", "5E", "4E"], grassknot: ["8M", "7M", "6M", "5M", "4M"], - headbutt: ["4T"], + haze: ["9M"], + headbutt: ["9M", "4T"], + healblock: ["9M"], healingwish: ["7E", "6E", "5E", "4E"], helpinghand: ["8M", "7T", "6T", "5T", "4T"], - hypnosis: ["8E", "7E", "6E", "5E", "4E"], - icywind: ["8M", "7T", "7E", "6T", "6E", "5T", "5E"], - infestation: ["7M", "6M"], - lightscreen: ["8M", "8L36", "7M", "7L22", "6M", "6L22", "5M", "5L22", "4M", "4L22"], + hypnosis: ["9M", "8E", "7E", "6E", "5E", "4E"], + icywind: ["9M", "8M", "7T", "7E", "6T", "6E", "5T", "5E"], + infestation: ["9M", "7M", "6M"], + lightscreen: ["9M", "8M", "8L36", "7M", "7L22", "6M", "6L22", "5M", "5L22", "4M", "4L22"], magiccoat: ["7T", "6T", "5T", "4T"], magicroom: ["8M", "7T", "7E", "6T", "6E", "5T", "5E"], meditate: ["7L8", "6L8", "5L8", "4L8"], - mimic: ["8L32", "7L15", "7E", "6L15", "6E", "5L15", "5E", "4L18", "4E"], + mimic: ["9M", "8L32", "7L15", "7E", "6L15", "6E", "5L15", "5E", "4L18", "4E"], + mist: ["9M"], mistyterrain: ["8M"], mudslap: ["4T"], - nastyplot: ["8M", "7E", "6E", "5E", "4E"], + nastyplot: ["9M", "8M", "7E", "6E", "5E", "4E"], naturalgift: ["4M"], pound: ["8L1", "7L1"], powersplit: ["8E", "7E", "6E", "5E"], - protect: ["8M", "8L20", "7M", "6M", "5M", "4M"], - psybeam: ["8L28", "7L25", "6L25", "5L25", "4L25"], - psychic: ["8M", "8L48", "7M", "7L39", "6M", "6L39", "5M", "5L39", "4M", "4L39"], + protect: ["9M", "8M", "8L20", "7M", "6M", "5M", "4M"], + psybeam: ["9M", "8L28", "7L25", "6L25", "5L25", "4L25"], + psychic: ["9M", "8M", "8L48", "7M", "7L39", "6M", "6L39", "5M", "5L39", "4M", "4L39"], psychicterrain: ["8M", "7E"], psychup: ["7M", "6M", "5M", "4M", "4E"], - psyshock: ["8M", "7M", "6M", "5M"], + psyshock: ["9M", "8M", "7M", "6M", "5M"], raindance: ["8M", "7M", "6M", "5M", "4M"], recycle: ["8L24", "7T", "7L32", "6T", "6L32", "5T", "5L32", "4M", "4L32"], - reflect: ["8M", "8L36", "7M", "7L22", "6M", "6L22", "5M", "5L22", "4M", "4L22"], + reflect: ["9M", "8M", "8L36", "7M", "7L22", "6M", "6L22", "5M", "5L22", "4M", "4L22"], rest: ["8M", "7M", "6M", "5M", "4M"], return: ["7M", "6M", "5M", "4M"], roleplay: ["8L16", "7T", "7L43", "6T", "6L43", "5T", "5L43", "4T", "4L43"], round: ["8M", "7M", "6M", "5M"], - safeguard: ["8M", "8L36", "7M", "7L50", "6M", "6L50", "5M", "5L50", "4M", "4L50"], + safeguard: ["9M", "8M", "8L36", "7M", "7L50", "6M", "6L50", "5M", "5L50", "4M", "4L50"], secretpower: ["6M", "4M"], - shadowball: ["8M", "7M", "6M", "5M", "4M"], + shadowball: ["9M", "8M", "7M", "6M", "5M", "4M"], shockwave: ["7T", "6T", "4M"], signalbeam: ["7T", "6T", "5T", "4T"], skillswap: ["8M", "7T", "6T", "5T", "4M"], sleeptalk: ["8M", "7M", "6M", "5T", "4M"], + smokescreen: ["9M"], snatch: ["7T", "6T", "5T", "4M"], snore: ["8M", "7T", "6T", "5T", "4T"], - solarbeam: ["8M", "7M", "6M", "5M", "4M"], + solarbeam: ["9M", "8M", "7M", "6M", "5M", "4M"], + stealthrock: ["9M"], storedpower: ["8M"], - substitute: ["8M", "7M", "7L29", "6M", "6L29", "5M", "5L29", "4M", "4L29"], + substitute: ["9M", "8M", "7M", "7L29", "6M", "6L29", "5M", "5L29", "4M", "4L29"], suckerpunch: ["8L40"], sunnyday: ["8M", "7M", "6M", "5M", "4M"], swagger: ["7M", "6M", "5M", "4M"], - taunt: ["8M", "7M", "6M", "5M", "4M"], + tackle: ["9M"], + taunt: ["9M", "8M", "7M", "6M", "5M", "4M"], teeterdance: ["8L52", "7E", "6E", "5E", "4E"], telekinesis: ["7T", "5M"], thief: ["8M", "7M", "6M", "5M", "4M"], - thunder: ["8M", "7M", "6M", "5M", "4M"], - thunderbolt: ["8M", "7M", "6M", "5M", "4M"], - thunderwave: ["8M", "7M", "6M", "5M", "4M"], + thunder: ["9M", "8M", "7M", "6M", "5M", "4M"], + thunderbolt: ["9M", "8M", "7M", "6M", "5M", "4M"], + thunderwave: ["9M", "8M", "7M", "6M", "5M", "4M"], tickle: ["8E", "7L1", "6L1", "5L1", "4L1"], torment: ["7M", "6M", "5M", "4M"], trick: ["8M", "7T", "7L36", "7E", "6T", "6L36", "6E", "5T", "5L36", "5E", "4T", "4L36", "4E"], @@ -17800,6 +18014,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab uproar: ["8M", "7T", "6T", "5T", "4T"], wakeupslap: ["7E", "6E", "5E", "4E"], wonderroom: ["8M", "7T", "6T", "5T"], + zenheadbutt: ["9M"], }, }, mrmime: { @@ -17810,126 +18025,137 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab barrier: ["8V", "7L1", "7V", "6L1", "5L1", "5D", "4L1", "3L1"], batonpass: ["8M", "8L1", "7L46", "7V", "6L46", "5L46", "4L46", "3L47"], bide: ["7V"], - bodyslam: ["8M", "7V", "3T"], - brickbreak: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], - calmmind: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + bodyslam: ["9M", "8M", "7V", "3T"], + brickbreak: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], + calmmind: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], captivate: ["4M"], - chargebeam: ["7M", "6M", "5M", "4M"], - charm: ["8M"], + chargebeam: ["9M", "7M", "6M", "5M", "4M"], + charm: ["9M", "8M"], + cometpunch: ["9M"], confide: ["7M", "6M"], - confuseray: ["8E", "7E", "6E", "5E", "4E"], - confusion: ["8L12", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L5"], + confuseray: ["9M", "8E", "7E", "6E", "5E", "4E"], + confusion: ["9M", "8L12", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L5"], copycat: ["8L1", "7L4", "6L4", "5L4", "4L4"], counter: ["7V", "3T"], covet: ["7T", "6T", "5T"], curse: ["7V"], - dazzlinggleam: ["8M", "8L44", "8V", "7M", "6M"], + dazzlinggleam: ["9M", "8M", "8L44", "8V", "7M", "6M"], doubleedge: ["7V", "3T"], doubleslap: ["8V", "7L11", "7V", "6L11", "5L11", "4L15", "3L15"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], - drainpunch: ["8M", "7T", "6T", "5T", "4M"], - dreameater: ["8V", "7M", "7V", "6M", "5M", "4M", "3T"], + drainpunch: ["9M", "8M", "7T", "6T", "5T", "4M"], + dreameater: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], dynamicpunch: ["7V"], encore: ["8M", "8L1", "8V", "7L18", "7V", "6L18", "5L11", "4L11", "3L25", "3S0"], - endure: ["8M", "7V", "4M", "3T"], - energyball: ["8M", "7M", "6M", "5M", "4M"], + endure: ["9M", "8M", "7V", "4M", "3T"], + energyball: ["9M", "8M", "7M", "6M", "5M", "4M"], expandingforce: ["8T"], - facade: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], - fakeout: ["8E", "7E", "6E", "5E", "4E", "3E"], - firepunch: ["8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], + facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], + fakeout: ["9M", "8E", "7E", "6E", "5E", "4E", "3E"], + firepunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], + firstimpression: ["9M"], flash: ["7V", "6M", "5M", "4M", "3M"], fling: ["8M", "7M", "6M", "5M", "4M"], - focusblast: ["8M", "7M", "6M", "5M", "4M"], + focusblast: ["9M", "8M", "7M", "6M", "5M", "4M"], focuspunch: ["7T", "6T", "4M", "3M"], followme: ["3S0"], foulplay: ["8M", "8V", "7T", "6T", "5T"], frustration: ["7M", "7V", "6M", "5M", "4M", "3M"], - futuresight: ["8M", "7E", "7V", "6E", "5E", "4E", "3E"], - gigaimpact: ["8M", "7M", "6M", "5M", "4M"], + futuresight: ["9M", "8M", "7E", "7V", "6E", "5E", "4E", "3E"], + gigaimpact: ["9M", "8M", "7M", "6M", "5M", "4M"], grassknot: ["8M", "7M", "6M", "5M", "4M"], guardswap: ["8M", "8L1", "7L1", "6L1", "5L1", "4L1"], - headbutt: ["8V", "7V", "4T"], + haze: ["9M"], + headbutt: ["9M", "8V", "7V", "4T"], + healblock: ["9M"], helpinghand: ["8M", "8V", "7T", "6T", "5T", "4T"], - hyperbeam: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], - hypnosis: ["8E", "7E", "7V", "6E", "5E", "4E", "3E"], - icepunch: ["8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], - icywind: ["8M", "7T", "7E", "6T", "6E", "5T", "5E"], - infestation: ["7M", "6M"], - irondefense: ["8M", "7T", "6T", "5T", "4T"], - lightscreen: ["8M", "8L36", "8V", "7M", "7L22", "7V", "6M", "6L22", "5M", "5L22", "4M", "4L22", "3M", "3L19"], + hyperbeam: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + hypnosis: ["9M", "8E", "7E", "7V", "6E", "5E", "4E", "3E"], + icepunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T"], + icywind: ["9M", "8M", "7T", "7E", "6T", "6E", "5T", "5E"], + infestation: ["9M", "7M", "6M"], + irondefense: ["9M", "8M", "7T", "6T", "5T", "4T"], + lightscreen: ["9M", "8M", "8L36", "8V", "7M", "7L22", "7V", "6M", "6L22", "5M", "5L22", "4M", "4L22", "3M", "3L19"], magicalleaf: ["8M", "7L1", "6L1", "5L1", "4L1", "3L22"], magiccoat: ["7T", "6T", "5T", "4T"], magicroom: ["8M", "7T", "7E", "6T", "6E", "5T", "5E"], + magnetbomb: ["9M"], meditate: ["8V", "7L8", "7V", "6L8", "5L8", "4L8", "3L12"], megakick: ["8M", "7V", "3T"], megapunch: ["8M", "7V", "3T"], - metronome: ["8M", "7V", "3T"], - mimic: ["8L32", "8V", "7L15", "7E", "7V", "6L15", "6E", "5L15", "5E", "4L18", "4E", "3T", "3E"], + metronome: ["9M", "8M", "7V", "3T"], + mimic: ["9M", "8L32", "8V", "7L15", "7E", "7V", "6L15", "6E", "5L15", "5E", "4L18", "4E", "3T", "3E"], + mist: ["9M"], mistyterrain: ["8M", "7L1", "6L1"], mudslap: ["7V", "4T", "3T"], - mysticalfire: ["8M"], - nastyplot: ["8M", "7E", "6E", "5E", "4E"], + mysticalfire: ["9M", "8M"], + nastyplot: ["9M", "8M", "7E", "6E", "5E", "4E"], naturalgift: ["4M"], nightmare: ["7V", "3T"], payback: ["8M", "7M", "6M", "5M", "4M"], + playrough: ["9M"], pound: ["8L1", "8V", "7L1"], powersplit: ["8E", "7E", "6E", "5E"], powerswap: ["8M", "8L1", "7L1", "6L1", "5L1", "4L1"], poweruppunch: ["6M"], - protect: ["8M", "8L20", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], - psybeam: ["8L28", "8V", "7L25", "7V", "6L25", "5L25", "4L25", "3L29"], - psychic: ["8M", "8L48", "8V", "7M", "7L39", "7V", "6M", "6L39", "5M", "5L39", "4M", "4L39", "3M", "3L43", "3S0"], + protect: ["9M", "8M", "8L20", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + psybeam: ["9M", "8L28", "8V", "7L25", "7V", "6L25", "5L25", "4L25", "3L29"], + psychic: ["9M", "8M", "8L48", "8V", "7M", "7L39", "7V", "6M", "6L39", "5M", "5L39", "4M", "4L39", "3M", "3L43", "3S0"], psychicterrain: ["8M", "7E"], psychup: ["7M", "7V", "6M", "5M", "4M", "4E", "3T", "3E"], - psyshock: ["8M", "7M", "6M", "5M"], + psyshock: ["9M", "8M", "7M", "6M", "5M"], psywave: ["8V", "7L15", "7V", "6L15", "5L15"], quickguard: ["8L1", "7L1", "6L1", "5L1"], rage: ["7V"], raindance: ["8M", "7M", "6M", "5M", "4M", "3M"], recycle: ["8L24", "7T", "7L32", "6T", "6L32", "5T", "5L32", "4M", "4L32", "3L33"], - reflect: ["8M", "8L36", "8V", "7M", "7L22", "7V", "6M", "6L22", "5M", "5L22", "4M", "4L22", "3M", "3L19"], + reflect: ["9M", "8M", "8L36", "8V", "7M", "7L22", "7V", "6M", "6L22", "5M", "5L22", "4M", "4L22", "3M", "3L19"], rest: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], roleplay: ["8L16", "7T", "7L43", "6T", "6L43", "5T", "5L43", "4T", "4L43", "3L40"], round: ["8M", "7M", "6M", "5M"], - safeguard: ["8M", "8L36", "7M", "7L50", "7V", "6M", "6L50", "5M", "5L50", "4M", "4L50", "3M", "3L50"], + safeguard: ["9M", "8M", "8L36", "7M", "7L50", "7V", "6M", "6L50", "5M", "5L50", "4M", "4L50", "3M", "3L50"], secretpower: ["6M", "4M", "3M"], seismictoss: ["8V", "7V", "3T"], - shadowball: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + shadowball: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], shockwave: ["7T", "6T", "4M", "3M"], signalbeam: ["7T", "6T", "5T", "4T"], skillswap: ["8M", "7T", "6T", "5T", "5D", "4M", "3M"], skullbash: ["7V"], sleeptalk: ["8M", "7M", "7V", "6M", "5T", "4M", "3T"], + smokescreen: ["9M"], snatch: ["7T", "6T", "5T", "4M", "3M"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], - solarbeam: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + solarbeam: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + stealthrock: ["9M"], storedpower: ["8M"], submission: ["7V"], - substitute: ["8M", "8V", "7M", "7L29", "7V", "6M", "6L29", "5M", "5L29", "4M", "4L29", "3T", "3L8"], + substitute: ["9M", "8M", "8V", "7M", "7L29", "7V", "6M", "6L29", "5M", "5L29", "4M", "4L29", "3T", "3L8"], suckerpunch: ["8L40"], sunnyday: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], - swagger: ["7M", "7V", "6M", "5M", "4M", "3T"], + swagger: ["9M", "7M", "7V", "6M", "5M", "4M", "3T"], + tackle: ["9M"], takedown: ["7V"], - taunt: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + taunt: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], teeterdance: ["8L52", "7E", "6E", "5E", "5D", "4E"], telekinesis: ["7T", "5M"], teleport: ["8V", "7V"], thief: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], - thunder: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], - thunderbolt: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], - thunderpunch: ["8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T", "3S0"], - thunderwave: ["8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], + thunder: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + thunderbolt: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], + thunderpunch: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4T", "3T", "3S0"], + thunderwave: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], tickle: ["8E"], - torment: ["7M", "6M", "5M", "4M", "3M"], + torment: ["9M", "7M", "6M", "5M", "4M", "3M"], trick: ["8M", "7T", "7L36", "7E", "6T", "6L36", "6E", "5T", "5L36", "5E", "4T", "4L36", "4E", "3L36", "3E"], trickroom: ["8M", "7M", "6M", "5M", "4M"], + tripleaxel: ["9M"], uproar: ["8M"], wakeupslap: ["7E", "6E", "5E", "4E"], wideguard: ["8L1", "7L1", "6L1", "5L1"], wonderroom: ["8M", "7T", "6T", "5T"], zapcannon: ["7V"], - zenheadbutt: ["8M", "7T", "6T", "5T", "4T"], + zenheadbutt: ["9M", "8M", "7T", "6T", "5T", "4T"], }, eventData: [ { generation: 3, level: 42, abilities: ["soundproof"], moves: ["followme", "psychic", "encore", "thunderpunch"] }, @@ -17944,91 +18170,110 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab attract: ["8M"], avalanche: ["8M"], batonpass: ["8M", "8L1"], - blizzard: ["8M"], - bodyslam: ["8M"], - brickbreak: ["8M"], - calmmind: ["8M"], - charm: ["8M"], - confuseray: ["8E"], - confusion: ["8L12", "8S0"], + blizzard: ["9M", "8M"], + bodyslam: ["9M", "8M"], + brickbreak: ["9M", "8M"], + calmmind: ["9M", "8M"], + chargebeam: ["9M"], + charm: ["9M", "8M"], + chillingwater: ["9M"], + cometpunch: ["9M"], + confuseray: ["9M", "8E"], + confusion: ["9M", "8L12", "8S0"], copycat: ["8L1", "8S0"], - dazzlinggleam: ["8M", "8L1"], + dazzlinggleam: ["9M", "8M", "8L1"], doublekick: ["8L24"], - drainpunch: ["8M"], + drainpunch: ["9M", "8M"], + dreameater: ["9M"], encore: ["8M", "8L1", "8S0"], - endure: ["8M"], - energyball: ["8M"], + endure: ["9M", "8M"], + energyball: ["9M", "8M"], expandingforce: ["8T"], - facade: ["8M"], - fakeout: ["8E"], + facade: ["9M", "8M"], + fakeout: ["9M", "8E"], + firstimpression: ["9M"], fling: ["8M"], - focusblast: ["8M"], + focusblast: ["9M", "8M"], foulplay: ["8M"], - freezedry: ["8L44"], - futuresight: ["8M"], - gigaimpact: ["8M"], + freezedry: ["9M", "8L44"], + frostbreath: ["9M"], + futuresight: ["9M", "8M"], + gigaimpact: ["9M", "8M"], grassknot: ["8M"], guardswap: ["8M"], hail: ["8M"], + haze: ["9M"], + headbutt: ["9M"], + healblock: ["9M"], helpinghand: ["8M"], - hyperbeam: ["8M"], - hypnosis: ["8L32"], - icebeam: ["8M"], - icepunch: ["8M"], - iceshard: ["8L1", "8S0"], - iciclespear: ["8M"], - icywind: ["8M", "8L20"], - irondefense: ["8M"], - lightscreen: ["8M", "8L1"], + hyperbeam: ["9M", "8M"], + hypnosis: ["9M", "8L32"], + icebeam: ["9M", "8M"], + icepunch: ["9M", "8M"], + iceshard: ["9M", "8L1", "8S0"], + iciclespear: ["9M", "8M"], + icywind: ["9M", "8M", "8L20"], + infestation: ["9M"], + irondefense: ["9M", "8M"], + lightscreen: ["9M", "8M", "8L1"], magicroom: ["8M"], + magnetbomb: ["9M"], megakick: ["8M"], megapunch: ["8M"], - metronome: ["8M"], - mimic: ["8L1"], + metronome: ["9M", "8M"], + mimic: ["9M", "8L1"], mirrorcoat: ["8L36"], + mist: ["9M"], mistyterrain: ["8M", "8L1"], - nastyplot: ["8M"], + nastyplot: ["9M", "8M"], payback: ["8M"], pound: ["8L1"], powersplit: ["8E"], powerswap: ["8M"], - protect: ["8M", "8L1"], - psybeam: ["8L28"], - psychic: ["8M", "8L48"], + protect: ["9M", "8M", "8L1"], + psybeam: ["9M", "8L28"], + psychic: ["9M", "8M", "8L48"], psychicterrain: ["8M"], - psyshock: ["8M"], + psyshock: ["9M", "8M"], raindance: ["8M"], rapidspin: ["8L1"], recycle: ["8L1"], - reflect: ["8M", "8L1"], + reflect: ["9M", "8M", "8L1"], rest: ["8M"], roleplay: ["8L1"], round: ["8M"], - safeguard: ["8M", "8L1"], + safeguard: ["9M", "8M", "8L1"], screech: ["8M"], - shadowball: ["8M"], + shadowball: ["9M", "8M"], + sheercold: ["9M"], skillswap: ["8M"], sleeptalk: ["8M"], + smokescreen: ["9M"], snore: ["8M"], - solarbeam: ["8M"], + solarbeam: ["9M", "8M"], + stealthrock: ["9M"], stompingtantrum: ["8M"], storedpower: ["8M"], - substitute: ["8M"], + substitute: ["9M", "8M"], suckerpunch: ["8L40"], sunnyday: ["8M"], - taunt: ["8M"], + swagger: ["9M"], + tackle: ["9M"], + taunt: ["9M", "8M"], teeterdance: ["8L52"], thief: ["8M"], - thunder: ["8M"], - thunderbolt: ["8M"], - thunderwave: ["8M"], + thunder: ["9M", "8M"], + thunderbolt: ["9M", "8M"], + thunderpunch: ["9M"], + thunderwave: ["9M", "8M"], tickle: ["8E"], + torment: ["9M"], trick: ["8M"], trickroom: ["8M"], - tripleaxel: ["8T"], + tripleaxel: ["9M", "8T"], uproar: ["8M"], wonderroom: ["8M"], - zenheadbutt: ["8M"], + zenheadbutt: ["9M", "8M"], }, eventData: [ { generation: 8, level: 15, isHidden: true, moves: ["copycat", "encore", "iceshard", "confusion"], pokeball: "cherishball" }, @@ -18041,90 +18286,111 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab attract: ["8M"], avalanche: ["8M"], batonpass: ["8M", "8L1"], - blizzard: ["8M"], + blizzard: ["9M", "8M"], block: ["8L1"], - bodyslam: ["8M"], - brickbreak: ["8M"], - calmmind: ["8M"], - charm: ["8M"], - confusion: ["8L12"], + bodyslam: ["9M", "8M"], + brickbreak: ["9M", "8M"], + calmmind: ["9M", "8M"], + chargebeam: ["9M"], + charm: ["9M", "8M"], + chillingwater: ["9M"], + cometpunch: ["9M"], + confuseray: ["9M"], + confusion: ["9M", "8L12"], copycat: ["8L1"], - dazzlinggleam: ["8M", "8L1"], + dazzlinggleam: ["9M", "8M", "8L1"], doublekick: ["8L24"], - drainpunch: ["8M"], + drainpunch: ["9M", "8M"], + dreameater: ["9M"], encore: ["8M", "8L1"], - endure: ["8M"], - energyball: ["8M"], + endure: ["9M", "8M"], + energyball: ["9M", "8M"], expandingforce: ["8T"], - facade: ["8M"], - faketears: ["8M", "8L1"], + facade: ["9M", "8M"], + fakeout: ["9M"], + faketears: ["9M", "8M", "8L1"], + firstimpression: ["9M"], fling: ["8M"], - focusblast: ["8M"], + focusblast: ["9M", "8M"], foulplay: ["8M"], - freezedry: ["8L44"], - futuresight: ["8M"], - gigaimpact: ["8M"], + freezedry: ["9M", "8L44"], + frostbreath: ["9M"], + futuresight: ["9M", "8M"], + gigaimpact: ["9M", "8M"], grassknot: ["8M"], guardswap: ["8M"], hail: ["8M"], + haze: ["9M"], + headbutt: ["9M"], + healblock: ["9M"], helpinghand: ["8M"], - hyperbeam: ["8M"], - hypnosis: ["8L32"], - icebeam: ["8M"], - icepunch: ["8M"], - iceshard: ["8L1"], - iciclespear: ["8M"], - icywind: ["8M", "8L20"], - irondefense: ["8M"], - lightscreen: ["8M", "8L1"], + hyperbeam: ["9M", "8M"], + hypnosis: ["9M", "8L32"], + icebeam: ["9M", "8M"], + icepunch: ["9M", "8M"], + iceshard: ["9M", "8L1"], + iciclespear: ["9M", "8M"], + icywind: ["9M", "8M", "8L20"], + infestation: ["9M"], + irondefense: ["9M", "8M"], + lightscreen: ["9M", "8M", "8L1"], magicroom: ["8M"], + magnetbomb: ["9M"], megakick: ["8M"], megapunch: ["8M"], - metronome: ["8M"], - mimic: ["8L1"], + metronome: ["9M", "8M"], + mimic: ["9M", "8L1"], mirrorcoat: ["8L36"], + mist: ["9M"], mistyterrain: ["8M", "8L1"], - nastyplot: ["8M"], + nastyplot: ["9M", "8M"], payback: ["8M"], pound: ["8L1"], powerswap: ["8M"], - protect: ["8M", "8L1"], - psybeam: ["8L28"], - psychic: ["8M", "8L48"], + protect: ["9M", "8M", "8L1"], + psybeam: ["9M", "8L28"], + psychic: ["9M", "8M", "8L48"], psychicterrain: ["8M"], - psyshock: ["8M"], + psyshock: ["9M", "8M"], raindance: ["8M"], rapidspin: ["8L1"], recycle: ["8L1"], - reflect: ["8M", "8L1"], + reflect: ["9M", "8M", "8L1"], rest: ["8M"], roleplay: ["8L1"], round: ["8M"], - safeguard: ["8M", "8L1"], + safeguard: ["9M", "8M", "8L1"], screech: ["8M"], - shadowball: ["8M"], + shadowball: ["9M", "8M"], + sheercold: ["9M"], skillswap: ["8M"], slackoff: ["8L1"], sleeptalk: ["8M"], + smokescreen: ["9M"], snore: ["8M"], - solarbeam: ["8M"], + solarbeam: ["9M", "8M"], + stealthrock: ["9M"], stompingtantrum: ["8M"], storedpower: ["8M"], - substitute: ["8M"], + substitute: ["9M", "8M"], suckerpunch: ["8L40"], sunnyday: ["8M"], - taunt: ["8M"], + swagger: ["9M"], + tackle: ["9M"], + taunt: ["9M", "8M"], teeterdance: ["8L52"], thief: ["8M"], - thunder: ["8M"], - thunderbolt: ["8M"], - thunderwave: ["8M"], + thunder: ["9M", "8M"], + thunderbolt: ["9M", "8M"], + thunderpunch: ["9M"], + thunderwave: ["9M", "8M"], + torment: ["9M"], trick: ["8M"], trickroom: ["8M"], - tripleaxel: ["8T"], + tripleaxel: ["9M", "8T"], uproar: ["8M"], wonderroom: ["8M"], - zenheadbutt: ["8M"], + zenheadbutt: ["9M", "8M"], }, }, scyther: { @@ -18154,6 +18420,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleedge: ["9M", "7V", "3T"], doublehit: ["9M", "8L20", "7L49", "6L49", "5L49", "4L49"], doubleteam: ["9M", "8L16", "8V", "7M", "7L37", "7V", "6M", "6L37", "5M", "5L37", "4M", "4L37", "3M", "3L41"], + dualchop: ["9M"], dualwingbeat: ["9M", "8T"], endure: ["9M", "8M", "7E", "7V", "6E", "5E", "4M", "4E", "3T", "3E"], facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], @@ -18184,7 +18451,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab quickguard: ["9E", "8E", "7E", "6E"], rage: ["7V"], raindance: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - razorwind: ["8V", "7L33", "7E", "7V", "6L33", "6E", "5L33", "5E", "4L33", "4E", "3E", "3S1"], + razorwind: ["9M", "8V", "7L33", "7E", "7V", "6L33", "6E", "5L33", "5E", "4L33", "4E", "3E", "3S1"], rest: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], reversal: ["9M", "8M", "7E", "7V", "6E", "5E", "4E", "3E"], @@ -18194,7 +18461,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab safeguard: ["8M", "7M", "7V", "6M", "5M", "4E", "3E"], scaryface: ["9M"], secretpower: ["6M", "4M", "3M"], - silverwind: ["7E", "6E", "5E", "4M", "4E", "3E", "3S1"], + silverwind: ["9M", "7E", "6E", "5E", "4M", "4E", "3E", "3S1"], skittersmack: ["9M"], skullbash: ["7V"], slash: ["9M", "8L24", "8V", "7L29", "7V", "6L29", "5L29", "5S2", "4L29", "3L31", "3S1"], @@ -18254,6 +18521,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleedge: ["9M", "3T"], doublehit: ["9M", "8L20", "7L49", "6L49", "6S4", "5L49", "4L49"], doubleteam: ["9M", "8L16", "7M", "7V", "6M", "5M", "4M", "3M", "3L41"], + dualchop: ["9M"], dualwingbeat: ["9M", "8T"], endure: ["9M", "8M", "7V", "4M", "3T"], facade: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], @@ -18276,6 +18544,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab leer: ["9M", "8L1", "7L1", "7V", "6L1", "5L1", "5S3", "4L1", "3L1"], lightscreen: ["9M", "8M", "7M", "6M", "5M"], lunge: ["9M"], + magnetbomb: ["9M"], metalclaw: ["9M", "8L12", "7L21", "7V", "6L21", "6S6", "5L21", "4L21", "3L26", "3S0"], mimic: ["3T"], naturalgift: ["4M"], @@ -18287,7 +18556,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab pursuit: ["7L9", "7V", "6L9", "5L9", "5S3", "4L9", "3L11"], quickattack: ["9M", "8L1", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], raindance: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - razorwind: ["7L33", "6L33", "5L33", "4L33"], + razorwind: ["9M", "7L33", "6L33", "5L33", "4L33"], rest: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], reversal: ["9M", "8M"], @@ -18299,7 +18568,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab sandtomb: ["8M"], scaryface: ["9M"], secretpower: ["6M", "4M", "3M"], - silverwind: ["4M"], + silverwind: ["9M", "4M"], skittersmack: ["9M"], slash: ["9M", "8L24", "7L29", "7V", "6L29", "5L29", "4L29", "3L31", "3S0"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], @@ -18343,14 +18612,17 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab agility: ["9M"], aircutter: ["9M"], airslash: ["9M"], + ancientpower: ["9M"], batonpass: ["9M"], brickbreak: ["9M"], + brutalswing: ["9M"], bugbite: ["9M"], bugbuzz: ["9M"], closecombat: ["9M"], doubleedge: ["9M"], doublehit: ["9M"], doubleteam: ["9M"], + dualchop: ["9M"], dualwingbeat: ["9M"], endure: ["9M"], facade: ["9M"], @@ -18360,20 +18632,26 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab gigaimpact: ["9M"], helpinghand: ["9M"], hyperbeam: ["9M"], + knockoff: ["9M"], leer: ["9M"], lightscreen: ["9M"], lunge: ["9M"], + nightslash: ["9M"], + ominouswind: ["9M"], pounce: ["9M"], protect: ["9M"], quickattack: ["9M"], raindance: ["9M"], + razorwind: ["9M"], rest: ["9M"], reversal: ["9M"], rockblast: ["9M"], rockslide: ["9M"], + rocksmash: ["9M"], rocktomb: ["9M"], sandstorm: ["9M"], scaryface: ["9M"], + silverwind: ["9M"], skittersmack: ["9M"], slash: ["9M"], sleeptalk: ["9M"], @@ -18393,6 +18671,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab trailblaze: ["9M"], uturn: ["9M"], vacuumwave: ["9M"], + wingattack: ["9M"], xscissor: ["9M"], }, }, @@ -19230,6 +19509,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bulkup: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], bulldoze: ["8M", "7M", "6M", "5M"], captivate: ["4M"], + circlethrow: ["9M"], closecombat: ["9M", "8M", "7E", "6E", "5E", "5D", "4E"], confide: ["7M", "6M"], curse: ["7V"], @@ -19237,12 +19517,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab detect: ["9M"], dig: ["9M", "8M", "8V", "6M", "5M", "4M", "3M"], doubleedge: ["7V", "3T"], - doublehit: ["8L24", "7L22", "6L22"], + doublehit: ["9M", "8L24", "7L22", "6L22"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], + dualwingbeat: ["9M"], earthquake: ["9M", "8M", "8V", "7M", "6M", "6S1", "6S2", "5M", "4M", "3M"], endure: ["9M", "8M", "7V", "4M", "3T"], - facade: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], - falseswipe: ["8M", "7M", "6M", "5M", "4M", "4E", "3E", "3S0"], + facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], + falseswipe: ["9M", "8M", "7M", "6M", "5M", "4M", "4E", "3E", "3S0"], feint: ["8E", "7E", "6E", "6S2", "5E", "4E"], feintattack: ["7E", "6E", "5E", "4E", "3E"], flail: ["8E", "7E", "7V", "6E", "5E", "4E", "3E"], @@ -19288,7 +19569,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], stealthrock: ["9M", "8M", "8V", "7T", "6T", "5T", "4M"], stoneedge: ["9M", "8M", "7M", "6M", "6S1", "5M", "4M"], - stormthrow: ["8L20", "7L36", "6L33", "5L33"], + stormthrow: ["9M", "8L20", "7L36", "6L33", "5L33"], strength: ["8L36", "7V", "6M", "5M", "4M", "3M"], stringshot: ["4T"], strugglebug: ["6M", "5M"], @@ -19598,6 +19879,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab learnset: { bounce: ["8M", "7T", "7S7", "6T", "5T", "5D", "5S5", "4T"], celebrate: ["6S6"], + facade: ["9M"], flail: ["9M", "8L25", "7L30", "7V", "6L30", "5L30", "5S5", "4L30", "3L30"], happyhour: ["6S6"], hydropump: ["9M", "8M", "5S5"], @@ -19692,7 +19974,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab scaleshot: ["9M", "8T"], scaryface: ["9M", "8M", "8L16", "7L33"], secretpower: ["6M", "4M", "3M"], - skullbash: ["7V"], + skullbash: ["9M", "7V"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], spite: ["9M", "7T", "6T", "5T", "4T"], @@ -19702,7 +19984,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab substitute: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], sunnyday: ["9M"], surf: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], - swagger: ["7M", "7V", "6M", "5M", "4M", "3T"], + swagger: ["9M", "7M", "7V", "6M", "5M", "4M", "3T"], tackle: ["9M", "8L1", "7V"], takedown: ["9M", "7V"], taunt: ["9M", "9S2", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], @@ -19910,7 +20192,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab irontail: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4M", "4S1", "3M"], laserfocus: ["7T"], lastresort: ["9M", "8L55", "7T", "7L41", "6T", "6L41", "5T", "5L41", "4T", "4L50"], - mimic: ["7V", "3T"], + mimic: ["9M", "7V", "3T"], mudslap: ["9M", "9E", "8E", "7V", "4T", "3T"], naturalgift: ["7E", "6E", "5E", "4M"], payday: ["8M", "8V"], @@ -20080,7 +20362,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab laserfocus: ["7T"], lastresort: ["9M", "8L55", "7T", "7L41", "6T", "6L41", "5T", "5L41", "4T", "4L50"], liquidation: ["9M", "8M"], - mimic: ["7V", "3T"], + mimic: ["9M", "7V", "3T"], mist: ["7V"], muddywater: ["9M", "8M", "8L40", "7L37", "6L37", "5L37", "4L78"], mudslap: ["9M", "7V", "4T", "3T"], @@ -20102,7 +20384,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab secretpower: ["6M", "4M", "3M"], shadowball: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], signalbeam: ["7T", "6T", "5T", "4T"], - skullbash: ["7V"], + skullbash: ["9M", "7V"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], storedpower: ["9M", "8M"], @@ -20147,7 +20429,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab captivate: ["4M"], celebrate: ["6S1"], charge: ["9M"], - chargebeam: ["7M", "6M", "5M", "4M"], + chargebeam: ["9M", "7M", "6M", "5M", "4M"], charm: ["9M", "8M", "8L1"], confide: ["7M", "6M"], copycat: ["9M", "8L1"], @@ -20185,7 +20467,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lightscreen: ["9M", "8M", "8V", "7M", "7S2", "6M", "5M", "4M"], magnetrise: ["7T", "6T", "5T", "4T"], metalsound: ["9M"], - mimic: ["7V", "3T"], + mimic: ["9M", "7V", "3T"], mudslap: ["9M", "7V", "4T", "3T"], naturalgift: ["4M"], payday: ["8M", "8V"], @@ -20207,7 +20489,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab shadowball: ["9M", "8M", "8V", "7M", "7V", "7S2", "6M", "5M", "4M", "3M"], shockwave: ["7T", "6T", "4M", "3M"], signalbeam: ["7T", "6T", "5T", "4T"], - skullbash: ["7V"], + skullbash: ["9M", "7V"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], storedpower: ["9M", "8M"], @@ -20293,7 +20575,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lastresort: ["9M", "8L55", "7T", "7L41", "6T", "6L41", "5T", "5L41", "4T", "4L50"], lavaplume: ["9M", "8L40", "7L37", "6L37", "5L37", "4L78"], leer: ["7V", "3L47"], - mimic: ["7V", "3T"], + mimic: ["9M", "7V", "3T"], mudslap: ["9M", "7V", "4T", "3T"], mysticalfire: ["8M"], naturalgift: ["4M"], @@ -20315,7 +20597,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab scorchingsands: ["9M", "8T"], secretpower: ["6M", "4M", "3M"], shadowball: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], - skullbash: ["7V"], + skullbash: ["9M", "7V"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], smog: ["9M", "8L20", "8V", "7L33", "7V", "6L33", "5L33", "4L57", "3L42"], smokescreen: ["9M"], @@ -20375,7 +20657,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleedge: ["9M", "8L1", "3T"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], drainingkiss: ["9M"], - dreameater: ["7M", "7V", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "7M", "7V", "6M", "5M", "4M", "3T"], echoedvoice: ["7M", "6M", "5M"], endure: ["9M", "8M", "7V", "4M", "3T"], expandingforce: ["9M", "8T"], @@ -20403,7 +20685,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab magicalleaf: ["9M"], magiccoat: ["7T", "6T", "5T", "4T"], magicroom: ["8M", "7T", "6T", "5T"], - mimic: ["3T"], + mimic: ["9M", "3T"], morningsun: ["9M", "8L30", "7L33", "7V", "6L33", "5L33", "4L71", "3L52", "3S0"], mudslap: ["9M", "7V", "4T", "3T"], naturalgift: ["4M"], @@ -20433,6 +20715,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab shadowball: ["9M", "8M", "7M", "7V", "7S3", "6M", "5M", "4M", "3M"], signalbeam: ["7T", "6T", "5T", "4T"], skillswap: ["9M", "8M", "7T", "6T", "5T", "4M", "3M"], + skullbash: ["9M"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], storedpower: ["9M", "8M"], @@ -20488,7 +20771,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab disarmingvoice: ["9M"], doubleedge: ["9M", "8L1", "3T"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], - dreameater: ["7M", "7V", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "7M", "7V", "6M", "5M", "4M", "3T"], echoedvoice: ["7M", "6M", "5M"], endure: ["9M", "8M", "7V", "4M", "3T"], facade: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], @@ -20513,11 +20796,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lastresort: ["9M", "8L55", "7T", "7L41", "6T", "6L41", "5T", "5L41", "4T", "4L50"], lightscreen: ["9M"], meanlook: ["9M", "8L50", "7L37", "7V", "6L37", "5L37", "4L57", "3L42", "3S0"], - mimic: ["3T"], + mimic: ["9M", "3T"], moonlight: ["9M", "8L30", "7L33", "7V", "7S3", "6L33", "5L33", "4L71", "3L52", "3S0"], mudslap: ["9M", "7V", "4T", "3T"], naturalgift: ["4M"], nightmare: ["7V", "3T"], + ominouswind: ["9M"], payback: ["8M", "7M", "6M", "5M", "4M"], payday: ["8M"], protect: ["9M", "8M", "7M", "7V", "7S3", "6M", "5M", "4M", "3M"], @@ -20526,6 +20810,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab pursuit: ["7L1", "7V", "6L9", "6S2", "5L9", "4L15", "3L16"], quickattack: ["9M", "8L10", "7L13", "7V", "6L13", "5L13", "4L22", "3L23"], raindance: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], + razorwind: ["9M"], reflect: ["9M"], rest: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], retaliate: ["8M", "6M", "5M"], @@ -20538,6 +20823,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab secretpower: ["6M", "4M", "3M"], shadowball: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], skillswap: ["9M"], + skullbash: ["9M"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], snarl: ["9M", "8M", "8L0", "7M", "7S3", "6M", "5M"], snatch: ["7T", "6T", "5T", "4M", "3M"], @@ -20547,7 +20833,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab substitute: ["9M", "8M", "7M", "6M", "5M", "4M", "3T"], suckerpunch: ["4T"], sunnyday: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], - swagger: ["7M", "7V", "6M", "5M", "4M", "3T"], + swagger: ["9M", "7M", "7V", "6M", "5M", "4M", "3T"], swift: ["9M", "8M", "8L1", "7V", "4T", "3T"], tackle: ["9M", "8L1", "7L1", "7V", "6L1", "5L1", "5S1", "4L1", "3L1"], tailwhip: ["9M", "8L1", "7L1", "7V", "6L1", "6S2", "5L1", "5S1", "4L1", "3L1"], @@ -20557,7 +20843,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thief: ["9M", "8M"], throatchop: ["9M", "8M", "7T"], thunderwave: ["9M"], - torment: ["7M", "6M", "5M", "4M", "3M"], + torment: ["9M", "7M", "6M", "5M", "4M", "3M"], toxic: ["9M"], trailblaze: ["9M"], weatherball: ["9M", "8M"], @@ -20623,11 +20909,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab leafstorm: ["9M", "8M"], leechseed: ["9M", "8L20"], magicalleaf: ["9M", "8M", "8L25", "7L20", "6L20", "5L21", "4L36"], + mimic: ["9M"], mudshot: ["9M"], mudslap: ["9M", "4T"], naturalgift: ["4M"], naturepower: ["7M", "6M"], payday: ["8M"], + petaldance: ["9M"], protect: ["9M", "8M", "7M", "6M", "5M", "4M"], quickattack: ["9M", "8L10", "7L13", "6L13", "5L13", "4L22"], raindance: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -20642,6 +20930,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab secretpower: ["6M", "4M"], seedbomb: ["9M", "8M", "7T", "6T", "5T", "4T"], shadowball: ["9M", "8M", "7M", "6M", "5M", "4M"], + skullbash: ["9M"], sleeptalk: ["9M", "8M", "7M", "6M", "5T", "4M"], snore: ["8M", "7T", "6T", "5T", "4T"], solarbeam: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -20704,7 +20993,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab faketears: ["9M", "8M"], focusenergy: ["8M"], freezedry: ["9M", "8L40"], - frostbreath: ["7M", "6M", "5M"], + frostbreath: ["9M", "7M", "6M", "5M"], frustration: ["7M", "6M", "5M", "4M"], gigaimpact: ["9M", "8M", "7M", "6M", "5M", "4M"], gravity: ["9M"], @@ -20724,6 +21013,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab irontail: ["9M", "8M", "7T", "6T", "5T", "4M"], laserfocus: ["7T"], lastresort: ["9M", "8L55", "7T", "7L41", "6T", "6L41", "5T", "5L41", "4T", "4L50"], + mimic: ["9M"], mirrorcoat: ["9M", "8L45", "7L33", "6L33", "5L33", "4L57"], mist: ["9M"], mudshot: ["9M"], @@ -20742,7 +21032,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab sandattack: ["9M", "8L5", "7L5", "6L5", "6S1", "5L5", "5S0", "4L8"], secretpower: ["6M", "4M"], shadowball: ["9M", "8M", "7M", "7S2", "6M", "5M", "4M"], + sheercold: ["9M"], signalbeam: ["7T", "6T", "5T", "4T"], + skullbash: ["9M"], sleeptalk: ["9M", "8M", "7M", "6M", "5T", "4M"], snore: ["8M", "7T", "6T", "5T", "4T"], snowscape: ["9M"], @@ -20781,6 +21073,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab charge: ["9M"], chargebeam: ["9M", "7M", "6M", "5M", "4M"], confide: ["7M", "6M"], + confuseray: ["9M"], conversion: ["9M", "8L1", "8V", "7L1", "7V", "6L1", "5L1", "5S0", "4L1", "3L1"], conversion2: ["9M", "8L25", "8S1", "7L1", "6L1", "5L1", "4L1", "3L1"], curse: ["7V"], @@ -20794,20 +21087,24 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M", "8M", "7V", "4M", "3T"], facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], flash: ["7V", "6M", "5M", "4M", "3M"], + flashcannon: ["9M"], foulplay: ["9M", "8M", "8V", "7T", "6T", "5T"], frustration: ["7M", "7V", "6M", "5M", "4M", "3M"], gigaimpact: ["9M", "8M", "7M", "6M", "5M", "4M"], gravity: ["9M", "7T", "6T", "5T", "4T"], guardswap: ["8M"], - headbutt: ["8V"], + headbutt: ["9M", "8V"], + healblock: ["9M"], hyperbeam: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], icebeam: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], icywind: ["9M", "8M", "7T", "7V", "6T", "5T", "4T", "3T"], - irontail: ["8M", "8V", "7T", "7V", "6T", "5T", "4M", "3M"], + irontail: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4M", "3M"], lastresort: ["7T", "6T", "5T", "4T"], lockon: ["9M", "8L55", "7L45", "7V", "6L45", "5L45", "4L45", "3L32"], magiccoat: ["8L50", "7T", "7L56", "6T", "6L56", "5T", "5L56", "4T", "4L56"], + magnetbomb: ["9M"], magnetrise: ["9M", "8L10", "8S1", "7T", "7L23", "6T", "6L23", "5T", "5L23", "4L23"], + metalsound: ["9M"], mimic: ["7V", "3T"], naturalgift: ["4M"], nightmare: ["7V", "3T"], @@ -20823,16 +21120,17 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab raindance: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], recover: ["9M", "8L35", "8V", "7L18", "7V", "6L18", "5L18", "4L18", "3L20"], recycle: ["9M", "8L5", "7T", "7L34", "6T", "6L34", "5T", "5L34", "4M", "4L34", "3L44"], - reflect: ["8V", "7V"], + reflect: ["9M", "8V", "7V"], rest: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], round: ["8M", "7M", "6M", "5M"], secretpower: ["6M", "4M", "3M"], + selfdestruct: ["9M"], shadowball: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], sharpen: ["8V", "7L1", "7V", "6L1", "5L1", "5S0", "4L1", "3L24"], shockwave: ["7T", "6T", "4M", "3M"], signalbeam: ["7T", "7L29", "6T", "6L29", "5T", "5L29", "4T", "4L29"], - skullbash: ["7V"], + skullbash: ["9M", "7V"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], solarbeam: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], @@ -20854,6 +21152,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab triattack: ["9M", "8M", "8L45", "8V", "7L50", "7V", "6L50", "5L51", "4L51", "3L36"], trick: ["9M", "8M", "7T", "6T", "5T", "4T"], trickroom: ["9M", "8M", "7M", "6M", "5M", "4M"], + voltswitch: ["9M"], wonderroom: ["8M", "7T", "6T", "5T"], zapcannon: ["9M", "8L60", "7L62", "7V", "6L62", "5L62", "4L62", "3L48"], zenheadbutt: ["9M", "8M", "7T", "6T", "5T", "4T"], @@ -20875,6 +21174,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab charge: ["9M"], chargebeam: ["9M", "7M", "6M", "5M", "4M"], confide: ["7M", "6M"], + confuseray: ["9M"], conversion: ["9M", "8L1", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], conversion2: ["9M", "8L25", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], curse: ["7V"], @@ -20888,19 +21188,24 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M", "8M", "7V", "4M", "3T"], facade: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], flash: ["7V", "6M", "5M", "4M", "3M"], + flashcannon: ["9M"], foulplay: ["9M", "8M", "7T", "6T", "5T"], frustration: ["7M", "7V", "6M", "5M", "4M", "3M"], gigaimpact: ["9M", "8M", "7M", "6M", "5M", "4M"], gravity: ["9M", "7T", "6T", "5T", "4T"], guardswap: ["8M"], + headbutt: ["9M"], + healblock: ["9M"], hyperbeam: ["9M", "8M", "8L65", "7M", "7L67", "7V", "6M", "6L67", "5M", "5L67", "4M", "4L67", "3M"], icebeam: ["9M", "9S1", "8M", "8S0", "7M", "6M", "5M", "4M", "3M"], icywind: ["9M", "8M", "7T", "7V", "6T", "5T", "4T", "3T"], - irontail: ["8M", "7T", "7V", "6T", "5T", "4M", "3M"], + irontail: ["9M", "8M", "7T", "7V", "6T", "5T", "4M", "3M"], lastresort: ["7T", "6T", "5T", "4T"], lockon: ["9M", "8L55", "7L45", "7V", "6L45", "5L45", "4L45", "3L32"], magiccoat: ["8L50", "7T", "7L1", "6T", "6L1", "5T", "5L56", "4T", "4L56"], + magnetbomb: ["9M"], magnetrise: ["9M", "8L1", "7T", "7L23", "6T", "6L23", "5T", "5L23", "4L23"], + metalsound: ["9M"], mimic: ["3T"], naturalgift: ["4M"], nightmare: ["7V", "3T"], @@ -20914,13 +21219,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab raindance: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], recover: ["9M", "9S1", "8L35", "8S0", "7L18", "7V", "6L18", "5L18", "4L18", "3L20"], recycle: ["9M", "8L1", "7T", "7L34", "6T", "6L34", "5T", "5L34", "4M", "4L34", "3L44"], + reflect: ["9M"], rest: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], round: ["8M", "7M", "6M", "5M"], secretpower: ["6M", "4M", "3M"], + selfdestruct: ["9M"], shadowball: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], shockwave: ["7T", "6T", "4M", "3M"], signalbeam: ["7T", "7L29", "6T", "6L29", "5T", "5L29", "4T", "4L29"], + skullbash: ["9M"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], snore: ["8M", "7T", "7V", "6T", "5T", "4T", "3T"], solarbeam: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], @@ -20941,6 +21249,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab triattack: ["9M", "8M", "8L45", "7L50", "7V", "6L50", "5L51", "4L51", "3L36"], trick: ["9M", "8M", "7T", "6T", "5T", "4T"], trickroom: ["9M", "9S1", "8M", "8S0", "7M", "6M", "5M", "4M"], + voltswitch: ["9M"], wonderroom: ["8M", "7T", "6T", "5T"], zapcannon: ["9M", "8L60", "7L1", "7V", "6L1", "5L62", "4L62", "3L48"], zenheadbutt: ["9M", "8M", "7T", "6T", "5T", "4T"], @@ -20959,6 +21268,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab charge: ["9M"], chargebeam: ["9M", "7M", "6M", "5M", "4M"], confide: ["7M", "6M"], + confuseray: ["9M"], conversion: ["9M", "8L1", "7L1", "6L1", "5L1", "4L1"], conversion2: ["9M", "8L25", "7L1", "6L1", "5L1", "4L1"], darkpulse: ["9M", "8M", "7M", "6M", "5T", "4M"], @@ -20973,21 +21283,27 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M", "8M", "4M"], facade: ["9M", "8M", "7M", "6M", "5M", "4M"], flash: ["6M", "5M", "4M"], + flashcannon: ["9M"], foulplay: ["9M", "8M", "7T", "6T", "5T"], frustration: ["7M", "6M", "5M", "4M"], gigaimpact: ["9M", "8M", "7M", "6M", "5M", "4M"], gravity: ["9M", "7T", "6T", "5T", "4T"], guardswap: ["8M"], + headbutt: ["9M"], + healblock: ["9M"], hyperbeam: ["9M", "8M", "8L65", "7M", "7L67", "6M", "6L67", "5M", "5L67", "4M", "4L67"], icebeam: ["9M", "8M", "7M", "6M", "5M", "4M"], icywind: ["9M", "8M", "7T", "6T", "5T", "4T"], - irontail: ["8M", "7T", "6T", "5T", "4M"], + irontail: ["9M", "8M", "7T", "6T", "5T", "4M"], lastresort: ["7T", "6T", "5T", "4T"], lockon: ["9M", "8L55", "7L45", "6L45", "5L45", "4L45"], magiccoat: ["8L50", "7T", "7L1", "6T", "6L1", "5T", "5L56", "4T", "4L56"], + magnetbomb: ["9M"], magnetrise: ["9M", "8L1", "7T", "7L23", "6T", "6L23", "5T", "5L23", "4L23"], + metalsound: ["9M"], nastyplot: ["9M", "8M", "8L1", "7L1", "6L1", "5L1", "4L1"], naturalgift: ["4M"], + ominouswind: ["9M"], painsplit: ["7T", "6T", "5T", "4T"], powerswap: ["8M"], protect: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -20998,13 +21314,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab raindance: ["9M", "8M", "7M", "6M", "5M", "4M"], recover: ["9M", "8L35", "7L18", "6L18", "5L18", "4L18"], recycle: ["9M", "8L1", "7T", "6T", "5T", "4M"], + reflect: ["9M"], rest: ["9M", "8M", "7M", "6M", "5M", "4M"], return: ["7M", "6M", "5M", "4M"], round: ["8M", "7M", "6M", "5M"], secretpower: ["6M", "4M"], + selfdestruct: ["9M"], shadowball: ["9M", "8M", "7M", "6M", "5M", "4M"], shockwave: ["7T", "6T", "4M"], signalbeam: ["7T", "7L29", "6T", "6L29", "5T", "5L29", "4T", "4L29"], + skullbash: ["9M"], sleeptalk: ["9M", "8M", "7M", "6M", "5T", "4M"], snore: ["8M", "7T", "6T", "5T", "4T"], solarbeam: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -21026,6 +21345,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab trick: ["9M", "8M", "7T", "6T", "5T", "4T"], trickroom: ["9M", "8M", "8L1", "7M", "7L1", "6M", "6L1", "5M", "5L1", "4M", "4L1"], uproar: ["9M", "8M", "7T", "6T", "5T", "4T"], + voltswitch: ["9M"], wonderroom: ["8M", "7T", "5T"], zapcannon: ["9M", "8L60", "7L1", "6L1", "5L62", "4L62"], zenheadbutt: ["9M", "8M", "7T", "6T", "5T", "4T"], @@ -21408,7 +21728,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab aerialace: ["7M", "6M", "5M", "4M", "3M"], agility: ["9M", "8M", "8L50", "8V", "7L17", "7V", "6L17", "5L17", "4L17", "3L8"], aircutter: ["4T"], - ancientpower: ["8L1", "7L25", "7V", "7S1", "6L25", "5L25", "4T", "4L25", "3L29"], + ancientpower: ["9M", "8L1", "7L25", "7V", "7S1", "6L25", "5L25", "4T", "4L25", "3L29"], aquatail: ["7T", "6T", "5T", "4T"], assurance: ["8M", "7E", "6E", "5E", "5D", "4E"], attract: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], @@ -21430,11 +21750,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dragondance: ["8M"], dragonpulse: ["9M", "8M", "8V", "7T", "6T", "5T", "4M"], dragonrage: ["7V"], - dualwingbeat: ["8T"], + dualwingbeat: ["9M", "8T"], earthpower: ["9M", "8M", "7T", "6T", "5T", "4T"], earthquake: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], endure: ["9M", "8M", "7V", "4M", "3T"], - facade: ["8M", "8V", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], fireblast: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], firefang: ["9M", "8M", "7L1", "6L1", "5L1", "5S0", "4L1"], flamethrower: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], @@ -21452,13 +21772,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ironhead: ["9M", "8M", "8L35", "7T", "7L1", "6T", "6L1", "5T", "5L57", "4T", "4L49"], irontail: ["9M", "8M", "8V", "7T", "7V", "6T", "5T", "4M", "3M"], laserfocus: ["7T"], - meteorbeam: ["8T"], + meteorbeam: ["9M", "8T"], mimic: ["7V", "3T"], naturalgift: ["4M"], - ominouswind: ["4T"], + ominouswind: ["9M", "4T"], payback: ["8M", "7M", "6M", "5M", "4M"], protect: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], - psychicfangs: ["8M"], + psychicfangs: ["9M", "8M"], pursuit: ["7E", "7V", "6E", "5E", "4E", "3E"], rage: ["7V"], raindance: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], @@ -21478,7 +21798,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab sandstorm: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], scaryface: ["8M", "8L15", "7L1", "7V", "6L1", "5L1", "4L1", "3L36"], secretpower: ["6M", "4M", "3M"], - skyattack: ["7T", "7V", "6T", "5T", "4T", "3T"], + skyattack: ["9M", "7T", "7V", "6T", "5T", "4T", "3T"], skydrop: ["7M", "7L49", "6M", "6L49", "5M", "5L49"], sleeptalk: ["8M", "7M", "7V", "6M", "5T", "4M", "3T"], smackdown: ["7M", "6M", "5M"], @@ -21490,7 +21810,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab substitute: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], sunnyday: ["8M", "7M", "6M", "5M", "4M", "3M"], supersonic: ["9M", "8L5", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L22"], - swagger: ["7M", "7V", "6M", "5M", "4M", "3T"], + swagger: ["9M", "7M", "7V", "6M", "5M", "4M", "3T"], swift: ["9M", "8M", "7V", "4T", "3T"], tailwind: ["8E", "7T", "7E", "6T", "6E", "5T", "5E", "4T"], takedown: ["9M", "8L40", "8V", "7L41", "7V", "6L41", "5L41", "4L41", "3L43"], @@ -22519,7 +22839,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dragonrage: ["8V", "7L15", "7V", "6L15", "5L15", "4L15", "3L22"], dragonrush: ["9M", "8L39", "7L47", "6L47", "5L47", "5S4", "5S5", "4L39"], dragontail: ["9M", "8L15", "8V", "7M", "7L33", "6M", "6L33", "5M", "5L33"], - dualwingbeat: ["8T"], + dualwingbeat: ["9M", "8T"], dynamicpunch: ["7V", "3T"], earthquake: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M", "3S1"], encore: ["9M"], @@ -22571,7 +22891,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab protect: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], rage: ["7V"], raindance: ["9M", "8M", "8L53", "7M", "7V", "6M", "5M", "4M", "3M"], - razorwind: ["7V"], + razorwind: ["9M", "7V"], reflect: ["8V", "7V"], rest: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], @@ -22587,7 +22907,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab scaryface: ["9M"], secretpower: ["6M", "4M", "3M"], shockwave: ["7T", "6T", "4M", "3M"], - skullbash: ["7V"], + skullbash: ["9M", "7V"], skydrop: ["7M", "6M", "5M"], slam: ["9M", "8L25", "8V", "7L21", "7V", "6L21", "6S8", "5L21", "4L21", "3L29"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], @@ -22612,6 +22932,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderpunch: ["9M", "8M", "8L1", "8V", "7T", "7L1", "7V", "6T", "6L1", "5T", "5L1", "5S4", "4T", "4L1", "3T"], thunderwave: ["9M", "8M", "8L1", "8V", "7M", "7L1", "7V", "6M", "6L1", "5M", "5L1", "4M", "4L1", "3T", "3L1"], twister: ["9M", "8L1", "7L1", "7V", "6L1", "5L1", "4T", "4L1", "3L1"], + vacuumwave: ["9M"], waterfall: ["9M", "8M", "8V", "7M", "7V", "6M", "5M", "4M", "3M"], watergun: ["7V"], waterpulse: ["9M", "7T", "6T", "4M", "3M"], @@ -22661,6 +22982,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab calmmind: ["9M", "9S9", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], chargebeam: ["7M", "6M", "5M", "4M"], chillingwater: ["9M"], + cometpunch: ["9M"], confide: ["7M", "6M"], confuseray: ["9M", "8V"], confusion: ["9M", "8L1", "8V", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], @@ -22674,7 +22996,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleedge: ["9M", "7V", "3T"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], drainpunch: ["9M", "8M", "7T", "6T", "5T", "4M"], - dreameater: ["8V", "7M", "7V", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "8V", "7M", "7V", "6M", "5M", "4M", "3T"], dynamicpunch: ["7V", "3T"], earthpower: ["9M"], earthquake: ["9M", "8M", "8V", "7M", "6M", "5M", "4M", "3M"], @@ -22733,7 +23055,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab naturalgift: ["4M"], nightmare: ["7V", "3T"], nightshade: ["9M"], - payday: ["8M", "8V", "7V"], + payday: ["9M", "8M", "8V", "7V"], poisonjab: ["9M", "8M", "8V", "7M", "6M", "5M", "4M"], powergem: ["9M"], powerswap: ["9M", "8M", "8L56", "7L43", "6L43", "5L57", "4L64", "4S1"], @@ -22800,9 +23122,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab torment: ["7M", "6M", "5M", "4M", "3M"], toxic: ["9M"], trailblaze: ["9M"], - triattack: ["8M", "8V", "7V"], + triattack: ["9M", "8M", "8V", "7V"], trick: ["9M", "8M", "7T", "6T", "5T", "4T"], trickroom: ["9M", "8M", "7M", "6M", "5M", "4M"], + vacuumwave: ["9M"], watergun: ["7V"], waterpulse: ["7T", "6T", "4M", "3M"], weatherball: ["9M"], @@ -23238,7 +23561,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, chikorita: { learnset: { - ancientpower: ["9E", "7E", "7V", "6E", "5E", "4T", "4E", "3E", "3S1"], + ancientpower: ["9M", "9E", "7E", "7V", "6E", "5E", "4T", "4E", "3E", "3S1"], aromatherapy: ["7L42", "7E", "6L42", "6E", "5L42", "5E", "4L42", "4E"], attract: ["7M", "7V", "6M", "5M", "4M", "3M"], bodyslam: ["9M", "7L34", "7E", "7V", "6L34", "6E", "5L34", "5E", "4L34", "4E", "3T", "3L29"], @@ -23329,7 +23652,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, bayleef: { learnset: { - ancientpower: ["4T"], + ancientpower: ["9M", "4T"], aromatherapy: ["7L50", "6L50", "5L50", "4L50"], attract: ["7M", "7V", "6M", "5M", "4M", "3M"], bodyslam: ["9M", "7L40", "7V", "6L40", "5L40", "4L40", "3T", "3L31"], @@ -23411,7 +23734,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, meganium: { learnset: { - ancientpower: ["4T"], + ancientpower: ["9M", "4T"], aromatherapy: ["7L60", "6L60", "5L60", "4L60"], attract: ["7M", "7V", "6M", "5M", "4M", "3M"], bodypress: ["9M"], @@ -23853,7 +24176,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab totodile: { learnset: { aerialace: ["9M", "7M", "6M", "5M", "4M", "3M"], - ancientpower: ["9E", "7E", "7V", "6E", "5E", "4T", "4E", "3E"], + ancientpower: ["9M", "9E", "7E", "7V", "6E", "5E", "4T", "4E", "3E"], aquajet: ["9M", "9E", "7E", "6E", "5E", "4E"], aquatail: ["9M", "7T", "7L43", "6T", "6L43", "5T", "5L43", "4T", "4L36"], attract: ["7M", "7V", "6M", "5M", "4M", "3M"], @@ -23915,6 +24238,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab outrage: ["9M"], poweruppunch: ["6M"], protect: ["9M", "7M", "7V", "6M", "5M", "4M", "3M"], + psychicfangs: ["9M"], rage: ["7L8", "7V", "6L8", "5L8", "4L8", "3L7", "3S0"], raindance: ["9M", "7M", "7V", "6M", "5M", "4M", "3M"], razorwind: ["7V"], @@ -23963,7 +24287,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab croconaw: { learnset: { aerialace: ["9M", "7M", "6M", "5M", "4M", "3M"], - ancientpower: ["4T"], + ancientpower: ["9M", "4T"], aquajet: ["9M"], aquatail: ["9M", "7T", "7L51", "6T", "6L51", "5T", "5L51", "4L42"], attract: ["7M", "7V", "6M", "5M", "4M", "3M"], @@ -24069,7 +24393,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab learnset: { aerialace: ["9M", "7M", "6M", "5M", "4M", "3M"], agility: ["9M", "7L1", "6L30", "5L30", "4L30"], - ancientpower: ["4T"], + ancientpower: ["9M", "4T"], aquajet: ["9M"], aquatail: ["9M", "7T", "7L63", "6T", "6L63", "5T", "5L63", "4T", "4L50"], attract: ["7M", "7V", "6M", "5M", "4M", "3M"], @@ -24123,6 +24447,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab icebeam: ["9M", "7M", "6M", "5M", "4M", "3M"], icefang: ["9M", "7L21", "6L21", "5L21", "4L21"], icepunch: ["9M", "7T", "7V", "6T", "6S0", "5T", "4T", "3T"], + iciclespear: ["9M"], icywind: ["9M", "7T", "7V", "6T", "5T", "4T", "3T"], irontail: ["7T", "7V", "6T", "5T", "4M", "3M"], lashout: ["9M"], @@ -24142,6 +24467,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab psychicfangs: ["9M"], rage: ["7L1", "7V", "6L1", "5L1", "4L1", "3L1"], raindance: ["9M", "7M", "7V", "6M", "5M", "4M", "3M"], + razorwind: ["9M"], rest: ["9M", "7M", "7V", "6M", "5M", "4M", "3M"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], roar: ["9M", "7M", "7V", "6M", "5M", "4M", "3M"], @@ -24150,7 +24476,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocksmash: ["9M", "7V", "6M", "5M", "4M", "3M"], rocktomb: ["9M", "7M", "6M", "5M", "4M"], round: ["7M", "6M", "5M"], - scald: ["7M", "6M", "5M"], + scald: ["9M", "7M", "6M", "5M"], scaleshot: ["9M"], scaryface: ["9M", "7L15", "7V", "6L15", "5L15", "4L15", "3L28"], scratch: ["9M", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], @@ -24872,7 +25198,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab electroweb: ["9M", "7T", "6T", "5T"], endure: ["9M", "7V", "4M", "3T"], facade: ["9M", "7M", "6M", "5M", "4M", "3M"], + falseswipe: ["9M"], fellstinger: ["9M", "7L1", "6L1"], + firstimpression: ["9M"], flash: ["7V", "6M", "5M", "4M", "3M"], focusenergy: ["9M", "7L1"], foulplay: ["9M", "7T", "6T", "5T"], @@ -25833,6 +26161,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab captivate: ["4M"], charge: ["9M", "7L16", "6L16", "5L16", "4L25"], chargebeam: ["9M", "7M", "6M", "5M", "4M"], + cometpunch: ["9M"], confide: ["7M", "6M"], confuseray: ["9M", "7L29", "6L29", "5L29"], cottonguard: ["9M", "7L46", "6L46", "5L40"], @@ -25848,6 +26177,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dragoncheer: ["9M"], dragonpulse: ["9M", "7T", "7L1", "6T", "6L1"], dragontail: ["9M"], + dualchop: ["9M"], dynamicpunch: ["7V", "3T"], echoedvoice: ["7M", "6M", "5M"], eerieimpulse: ["9M"], @@ -28901,17 +29231,17 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab acidspray: ["9M", "9E", "8E", "7E", "6E", "5E"], acupressure: ["9M", "8L60"], agility: ["9M"], - aquajet: ["9E", "8E", "7E", "6E", "5E", "5D", "4E"], + aquajet: ["9M", "9E", "8E", "7E", "6E", "5E", "5D", "4E"], aquatail: ["9M", "8L56", "7T", "7L45", "6T", "6L45", "5T", "5L45", "4T", "4L45"], assurance: ["8M"], astonish: ["9E", "8E", "7E", "6E", "5E", "4E", "3E"], attract: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], - barbbarrage: ["9E"], + barbbarrage: ["9M", "9E"], blizzard: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], bounce: ["8M", "7T", "6T", "5T", "4T"], brine: ["9M", "8M", "8L24", "7L33", "7E", "6L33", "6E", "5L33", "5E", "4M", "4L33"], bubble: ["7L13", "6L13"], - bubblebeam: ["9E", "8E", "7E", "7V", "6E", "5E", "4E", "3E"], + bubblebeam: ["9M", "9E", "8E", "7E", "7V", "6E", "5E", "4E", "3E"], captivate: ["4M"], chillingwater: ["9M"], confide: ["7M", "6M"], @@ -28963,7 +29293,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab scaleshot: ["9M", "8T"], scaryface: ["9M", "8M"], secretpower: ["6M", "5D", "4M", "3M"], - selfdestruct: ["9E", "8M", "3T"], + selfdestruct: ["9M", "9E", "8M", "3T"], shadowball: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], shockwave: ["7T", "6T", "4M", "3M"], signalbeam: ["7T", "7E", "6T", "6E", "5T", "5E", "4T", "4E"], @@ -28988,6 +29318,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab terablast: ["9M"], throatchop: ["9M", "8M", "7T"], thunderwave: ["9M", "8M", "7M", "6M", "5M", "4M", "3T"], + toxic: ["9M"], toxicspikes: ["9M", "8M", "8L36", "7L21", "6L21", "5L21", "4L21"], venomdrench: ["8M"], venoshock: ["9M", "8M", "7M", "6M", "5M"], @@ -29005,14 +29336,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab acidspray: ["9M", "9E"], acupressure: ["9M"], agility: ["9M"], - aquajet: ["9E"], + aquajet: ["9M", "9E"], aquatail: ["9E"], astonish: ["9E"], barbbarrage: ["9M"], bite: ["9M"], blizzard: ["9M"], brine: ["9M"], - bubblebeam: ["9E"], + bubblebeam: ["9M", "9E"], chillingwater: ["9M"], crunch: ["9M"], curse: ["9M"], @@ -29047,7 +29378,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab reversal: ["9M"], scaleshot: ["9M"], scaryface: ["9M"], - selfdestruct: ["9E"], + selfdestruct: ["9M", "9E"], shadowball: ["9M"], sleeptalk: ["9M"], sludgebomb: ["9M"], @@ -29065,9 +29396,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab taunt: ["9M"], terablast: ["9M"], throatchop: ["9M"], + thunderwave: ["9M"], + toxic: ["9M"], toxicspikes: ["9M"], venoshock: ["9M"], waterfall: ["9M"], + watergun: ["9M"], waterpulse: ["9M", "9E"], }, }, @@ -29076,10 +29410,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab acidspray: ["9M"], acupressure: ["9M"], agility: ["9M"], + aquajet: ["9M"], barbbarrage: ["9M"], bite: ["9M"], blizzard: ["9M"], brine: ["9M"], + bubblebeam: ["9M"], chillingwater: ["9M"], crunch: ["9M"], curse: ["9M"], @@ -29102,6 +29438,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lashout: ["9M"], liquidation: ["9M"], minimize: ["9M"], + mortalspin: ["9M"], mudshot: ["9M"], painsplit: ["9M"], pinmissile: ["9M"], @@ -29114,6 +29451,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab reversal: ["9M"], scaleshot: ["9M"], scaryface: ["9M"], + selfdestruct: ["9M"], shadowball: ["9M"], sleeptalk: ["9M"], sludgebomb: ["9M"], @@ -29132,9 +29470,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab taunt: ["9M"], terablast: ["9M"], throatchop: ["9M"], + thunderwave: ["9M"], + toxic: ["9M"], toxicspikes: ["9M"], venoshock: ["9M"], waterfall: ["9M"], + watergun: ["9M"], waterpulse: ["9M"], }, }, @@ -29242,6 +29583,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bulletseed: ["9M", "8M", "7L1", "6L1", "6S0", "6S1"], captivate: ["4M"], chipaway: ["7L16", "6L16", "5L16"], + circlethrow: ["9M"], closecombat: ["9M", "8M", "8L60", "7L43", "6L34", "6S0", "5L34", "4L37"], coaching: ["9M", "8T"], confide: ["7M", "6M"], @@ -29301,7 +29643,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab secretpower: ["6M", "4M", "3M"], seismictoss: ["9E", "8E", "7E", "6E", "5E", "3T"], shadowclaw: ["9M", "8M", "7M", "6M", "5M", "4M"], + silverwind: ["9M"], skittersmack: ["9M"], + skullbash: ["9M"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], smackdown: ["9M", "7M", "6M", "5M"], smartstrike: ["9M", "8M"], @@ -30965,14 +31309,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endeavor: ["9M"], endure: ["9M", "8M", "7V", "4M", "3T"], facade: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - fakeout: ["9E", "8E", "7E", "6E", "5E", "4E"], + fakeout: ["9M", "9E", "8E", "7E", "6E", "5E", "4E"], featherdance: ["9M"], fling: ["9M", "8M", "7M", "6M", "5M", "4M"], fly: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], focuspunch: ["9M", "7T", "6T", "5D", "4M", "3M"], foulplay: ["9M"], freezedry: ["9M", "9E", "8E", "7E", "6E"], - frostbreath: ["7M", "6M", "5M"], + frostbreath: ["9M", "7M", "6M", "5M"], frustration: ["7M", "7V", "6M", "5M", "4M", "3M"], futuresight: ["8M", "7E", "7V", "6E", "5E", "4E", "3E"], gigaimpact: ["9M"], @@ -31004,6 +31348,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab quickattack: ["9E", "8E", "7E", "7V", "6E", "5E", "4E", "3E"], raindance: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], rapidspin: ["9E", "8E", "7E", "7V", "6E", "5E", "4E", "3E"], + razorwind: ["9M"], recycle: ["7T", "6T", "5T", "4M"], rest: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], @@ -31013,6 +31358,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab secretpower: ["6M", "4M", "3M"], seedbomb: ["9M", "8M", "7T", "6T", "5T", "4T"], seismictoss: ["3T"], + sheercold: ["9M"], signalbeam: ["7T", "6T", "5T", "4T"], skyattack: ["7T", "6T", "5T", "4T", "3T"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], @@ -31237,6 +31583,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab irondefense: ["9M", "8M", "8L48", "7T", "6T", "5T", "4T"], ironhead: ["9M", "8M", "7T", "6T", "5T"], leer: ["9M", "8L1", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], + magnetbomb: ["9M"], metalclaw: ["9M", "8L12", "7L9", "6L9"], metalsound: ["9M", "8L40", "7L42", "6L31", "5L31", "4L31", "3L45"], mimic: ["3T"], @@ -31249,6 +31596,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab pluck: ["5M", "4M"], protect: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], pursuit: ["7E", "7V", "6E", "5E", "4E", "3E"], + razorwind: ["9M"], rest: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], return: ["7M", "7V", "6M", "5M", "4M", "3M"], reversal: ["9M"], @@ -31261,8 +31609,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab sandattack: ["9M", "8L4", "7L6", "7V", "6L6", "5L6", "4L6", "3L10"], sandstorm: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], sandtomb: ["9M", "8M"], + scaleshot: ["9M"], secretpower: ["6M", "4M", "3M"], - skyattack: ["9E", "8E", "7T", "7E", "7V", "6T", "6E", "5T", "5E", "4T", "4E", "3T", "3E"], + skullbash: ["9M"], + skyattack: ["9M", "9E", "8E", "7T", "7E", "7V", "6T", "6E", "5T", "5E", "4T", "4E", "3T", "3E"], skydrop: ["7M", "6M", "5M"], slash: ["9M", "8L24", "7L39", "6L39", "5L45", "4L42"], sleeptalk: ["9M", "8M", "7M", "7V", "6M", "5T", "4M", "3T"], @@ -31407,7 +31757,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab detect: ["7V"], doubleedge: ["9M", "3T"], doubleteam: ["7M", "7V", "6M", "5M", "4M", "3M"], - dreameater: ["7M", "7V", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "7M", "7V", "6M", "5M", "4M", "3T"], embargo: ["7M", "7L41", "6M", "6L41", "5M", "5L41", "4M", "4L44"], ember: ["9M", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], endeavor: ["9M"], @@ -31472,7 +31822,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab suckerpunch: ["4T"], sunnyday: ["9M", "7M", "7V", "6M", "5M", "4M", "3M"], superfang: ["9M", "7T", "6T", "5T", "4T"], - swagger: ["7M", "7V", "6M", "5M", "4M", "3T"], + swagger: ["9M", "7M", "7V", "6M", "5M", "4M", "3T"], swift: ["7V", "4T", "3T"], tackle: ["9M"], takedown: ["9M"], @@ -32289,7 +32639,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, larvitar: { learnset: { - ancientpower: ["9E", "8E", "7E", "7V", "6E", "5E", "4T", "4E", "3E"], + ancientpower: ["9M", "9E", "8E", "7E", "7V", "6E", "5E", "4T", "4E", "3E"], assurance: ["9E", "8M", "7E", "6E", "5E", "4E"], attract: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], bite: ["9M", "8L9", "7L1", "7V", "6L1", "5L1", "5D", "5S1", "4L1", "3L1", "3S0"], @@ -32376,7 +32726,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab pupitar: { learnset: { aerialace: ["9M"], - ancientpower: ["4T"], + ancientpower: ["9M", "4T"], assurance: ["8M"], attract: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], bite: ["9M", "8L9", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], @@ -32459,7 +32809,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab tyranitar: { learnset: { aerialace: ["9M", "7M", "6M", "5M", "4M", "3M"], - ancientpower: ["4T"], + ancientpower: ["9M", "4T"], aquatail: ["7T", "6T", "5T", "4T"], assurance: ["8M"], attract: ["8M", "7M", "7V", "6M", "5M", "4M", "3M"], @@ -32556,7 +32906,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["8M", "7M", "6M", "5M"], sandstorm: ["9M", "8M", "8L47", "7M", "7L1", "7V", "6M", "6L1", "5M", "5L1", "4M", "4L1", "3M", "3L1"], sandtomb: ["9M", "8M"], + scaleshot: ["9M"], scaryface: ["9M", "8M", "8L12", "7L23", "7V", "6L23", "5L23", "4L19", "3L38", "3S0"], + scorchingsands: ["9M"], screech: ["9M", "8M", "8L21", "7L1", "7V", "6L1", "5L1", "4L1", "3L1"], secretpower: ["6M", "4M", "3M"], seismictoss: ["5S2", "3T"], @@ -32575,7 +32927,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab sunnyday: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], superpower: ["8M", "7T", "6T", "5T", "4T"], surf: ["9M", "8M", "7M", "7V", "6M", "5M", "4M", "3M"], - swagger: ["7M", "7V", "6M", "5M", "4M", "3T"], + swagger: ["9M", "7M", "7V", "6M", "5M", "4M", "3T"], tackle: ["9M", "8L1"], takedown: ["9M"], taunt: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], @@ -32993,13 +33345,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, treecko: { learnset: { - absorb: ["9E", "8E", "7L5", "6L5", "5L6", "5S1", "4L6", "3L6", "3S0"], + absorb: ["9M", "9E", "8E", "7L5", "6L5", "5L6", "5S1", "4L6", "3L6", "3S0"], acrobatics: ["9M", "8M", "7M", "6M", "5M"], aerialace: ["9M", "7M", "6M", "5M", "4M", "3M"], agility: ["9M", "8M", "7L25", "6L25", "5L31", "4L31", "3L31"], assurance: ["9M", "8M", "8L18"], attract: ["8M", "7M", "6M", "5M", "4M", "3M"], - bodyslam: ["8M", "3T"], + bodyslam: ["9M", "8M", "3T"], breakingswipe: ["9M"], brickbreak: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], bulletseed: ["9M", "8M", "7E", "6E", "5E", "4M", "3M"], @@ -33014,7 +33366,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleedge: ["3T"], doublekick: ["9E", "8E", "7E", "6E", "5E", "4E"], doubleteam: ["9M", "8L27", "7M", "6M", "5M", "4M", "3M"], - dragonbreath: ["9E", "8E", "7E", "6E", "5E", "4E", "3E"], + dragonbreath: ["9M", "9E", "8E", "7E", "6E", "5E", "4E", "3E"], dragontail: ["9M"], drainpunch: ["9M", "8M", "7T", "6T", "5T", "4M"], dynamicpunch: ["3T"], @@ -33035,10 +33387,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab grassyterrain: ["9M", "8M", "7E", "6E"], headbutt: ["4T"], helpinghand: ["9M"], - irontail: ["8M", "7T", "6T", "5T", "4M", "3M"], + irontail: ["9M", "8M", "7T", "6T", "5T", "4M", "3M"], leafage: ["9M", "8L3"], leafstorm: ["9M", "8M", "8L39", "7E", "6E", "5E", "4E"], - leechseed: ["9E", "8E", "7E", "6E", "5E", "4E", "3E"], + leechseed: ["9M", "9E", "8E", "7E", "6E", "5E", "4E", "3E"], leer: ["9M", "8L1", "7L1", "6L1", "5L1", "5S1", "4L1", "3L1", "3S0"], lowkick: ["9M", "8M", "7T", "6T", "5T", "4T"], magicalleaf: ["9M", "8M", "7E", "6E", "5E", "4E"], @@ -33050,7 +33402,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mudsport: ["7E", "6E", "5E", "4E", "3E"], naturalgift: ["7E", "6E", "5E", "4M"], naturepower: ["7M", "6M"], - nightslash: ["9E", "8E"], + nightslash: ["9M", "9E", "8E"], pound: ["9M", "8L1", "7L1", "6L1", "5L1", "5S1", "4L1", "3L1", "3S0"], poweruppunch: ["6M"], protect: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], @@ -33064,13 +33416,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocksmash: ["6M", "5M", "4M", "3M"], rocktomb: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], round: ["8M", "7M", "6M", "5M"], - safeguard: ["8M", "7M", "6M", "5M", "4M", "3M"], + safeguard: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], screech: ["9M", "8M", "8L33", "7L49", "6L21", "5L21", "4L21", "3L21"], secretpower: ["6M", "4M", "3M"], seedbomb: ["9M", "8M", "7T", "6T", "5T", "4T"], seismictoss: ["3T"], slam: ["9M", "8L24", "7L29", "6L29", "5L36", "4L36", "3L36"], - slash: ["9E", "8E"], + slash: ["9M", "9E", "8E"], sleeptalk: ["9M", "8M", "7M", "6M", "5T", "4M", "3T"], snore: ["8M", "7T", "6T", "5T", "4T", "3T"], solarbeam: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], @@ -33080,14 +33432,15 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab swagger: ["7M", "6M", "5M", "4M", "3T"], swift: ["9M", "8M", "4T", "3T"], swordsdance: ["9M", "8M", "7M", "6M", "5M", "4M", "3T"], - synthesis: ["9E", "8E", "7T", "7E", "6T", "6E", "5T", "5E", "4T", "4E"], + synthesis: ["9M", "9E", "8E", "7T", "7E", "6T", "6E", "5T", "5E", "4T", "4E"], + tackle: ["9M"], takedown: ["9M"], terablast: ["9M"], thief: ["9M"], thunderpunch: ["9M", "8M", "7T", "6T", "5T", "4T", "3T"], trailblaze: ["9M"], upperhand: ["9M"], - workup: ["8M", "7M"], + workup: ["9M", "8M", "7M"], worryseed: ["9E", "8E", "7T", "7E", "6T", "6E", "5T", "5E", "4T", "4E"], }, eventData: [ @@ -33097,13 +33450,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, grovyle: { learnset: { - absorb: ["7L1", "6L1", "5L1", "4L1", "3L1"], + absorb: ["9M", "7L1", "6L1", "5L1", "4L1", "3L1"], acrobatics: ["9M", "8M", "7M", "6M", "5M"], aerialace: ["9M", "7M", "6M", "5M", "4M", "3M"], agility: ["9M", "8M", "7L28", "6L28", "5L35", "4L35", "3L35"], assurance: ["9M", "8M", "8L20"], attract: ["8M", "7M", "6M", "5M", "4M", "3M"], - bodyslam: ["8M", "3T"], + bodyslam: ["9M", "8M", "3T"], breakingswipe: ["9M"], brickbreak: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], bulletseed: ["9M", "8M", "4M", "3M"], @@ -33116,6 +33469,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dig: ["9M", "8M", "6M", "5M", "4M", "3M"], doubleedge: ["3T"], doubleteam: ["9M", "8L35", "7M", "6M", "5M", "4M", "3M"], + dragonbreath: ["9M"], + dragonclaw: ["9M"], + dragonpulse: ["9M"], + dragonrush: ["9M"], dragontail: ["9M"], drainpunch: ["9M", "8M", "7T", "6T", "5T", "4M"], dynamicpunch: ["3T"], @@ -33136,10 +33493,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab grassyterrain: ["9M", "8M"], headbutt: ["4T"], helpinghand: ["9M"], - irontail: ["8M", "7T", "6T", "5T", "4M", "3M"], + irontail: ["9M", "8M", "7T", "6T", "5T", "4M", "3M"], leafage: ["9M", "8L1"], leafblade: ["9M", "8M", "8L40", "7L23", "6L23", "5L29", "4L29", "3L29"], leafstorm: ["9M", "8M", "8L55", "7L58", "6L58", "5L59", "4L59"], + leechseed: ["9M"], leer: ["9M", "8L1", "7L1", "6L1", "5L1", "4L1", "3L1"], lowkick: ["9M", "8M", "7T", "6T", "5T", "4T"], lowsweep: ["9M", "8M", "7M", "6M", "5M"], @@ -33151,6 +33509,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mudslap: ["4T", "3T"], naturalgift: ["4M"], naturepower: ["7M", "6M"], + nightslash: ["9M"], pound: ["9M", "8L1", "7L1", "6L1", "5L1", "4L1", "3L1"], poweruppunch: ["6M"], protect: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], @@ -33163,23 +33522,25 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocksmash: ["6M", "5M", "4M", "3M"], rocktomb: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], round: ["8M", "7M", "6M", "5M"], - safeguard: ["8M", "7M", "6M", "5M", "4M", "3M"], + safeguard: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], screech: ["9M", "8M", "8L45", "7L63", "6L23", "5L23", "4L23", "3L23"], secretpower: ["6M", "4M", "3M"], seedbomb: ["9M", "8M", "7T", "6T", "5T", "4T"], seismictoss: ["3T"], slam: ["9M", "8L30", "7L33", "6L33", "5L41", "4L41", "3L41"], + slash: ["9M"], sleeptalk: ["9M", "8M", "7M", "6M", "5T", "4M", "3T"], snore: ["8M", "7T", "6T", "5T", "4T", "3T"], solarbeam: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - solarblade: ["8M"], + solarblade: ["9M", "8M"], strength: ["6M", "5M", "4M", "3M"], substitute: ["9M", "8M", "7M", "6M", "5M", "4M", "3T"], sunnyday: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], swagger: ["7M", "6M", "5M", "4M", "3T"], swift: ["9M", "8M", "4T", "3T"], swordsdance: ["9M", "8M", "7M", "6M", "5M", "4M", "3T"], - synthesis: ["7T", "6T", "5T", "4T"], + synthesis: ["9M", "7T", "6T", "5T", "4T"], + tackle: ["9M"], takedown: ["9M"], terablast: ["9M"], thief: ["9M"], @@ -33187,14 +33548,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab trailblaze: ["9M"], upperhand: ["9M"], vacuumwave: ["9M"], - workup: ["8M", "7M"], + workup: ["9M", "8M", "7M"], worryseed: ["7T", "6T", "5T", "4T"], xscissor: ["9M", "8M", "8L1", "7M", "7L43", "6M", "6L43", "5M", "4M"], }, }, sceptile: { learnset: { - absorb: ["7L1", "6L1", "5L1", "4L1", "3L1"], + absorb: ["9M", "7L1", "6L1", "5L1", "4L1", "3L1"], acrobatics: ["9M", "8M", "7M", "6M", "5M"], aerialace: ["9M", "7M", "6M", "5M", "4M", "3M"], agility: ["9M", "8M", "7L28", "6L28", "5L35", "4L35", "3L35"], @@ -33216,13 +33577,15 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dig: ["9M", "8M", "6M", "5M", "4M", "3M"], doubleedge: ["9M", "3T"], doubleteam: ["9M", "8L35", "7M", "6M", "5M", "4M", "3M"], + dragonbreath: ["9M"], dragoncheer: ["9M"], dragonclaw: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], dragondance: ["9M", "8M"], dragonpulse: ["9M", "8M", "7T", "6T", "5T", "5S0", "4M"], + dragonrush: ["9M"], dragontail: ["9M"], drainpunch: ["9M", "8M", "7T", "6T", "5T", "4M"], - dualchop: ["8L0", "7T", "7L1", "6T", "6L36"], + dualchop: ["9M", "8L0", "7T", "7L1", "6T", "6L36"], dynamicpunch: ["3T"], earthquake: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], endeavor: ["9M", "8L56", "7T", "6T", "5T", "4T"], @@ -33247,11 +33610,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab helpinghand: ["9M"], honeclaws: ["6M", "5M"], hyperbeam: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - irontail: ["8M", "7T", "6T", "5T", "4M", "3M"], + irontail: ["9M", "8M", "7T", "6T", "5T", "4M", "3M"], laserfocus: ["7T"], leafage: ["9M", "8L1"], leafblade: ["9M", "8M", "8L42", "7L23", "6L23", "5L29", "4L29", "3L29"], leafstorm: ["9M", "8M", "8L63", "7L1", "6L1", "5L67", "5S0", "4L67"], + leechseed: ["9M"], leer: ["9M", "8L1", "7L1", "6L1", "5L1", "4L1", "3L1"], lowkick: ["9M", "8M", "7T", "6T", "5T", "4T"], lowsweep: ["9M", "8M", "7M", "6M", "5M"], @@ -33263,7 +33627,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mudslap: ["4T", "3T"], naturalgift: ["4M"], naturepower: ["7M", "6M"], - nightslash: ["7L1", "6L1", "5L1", "4L1"], + nightslash: ["9M", "7L1", "6L1", "5L1", "4L1"], outrage: ["9M", "8M", "7T", "6T", "5T", "4T"], pound: ["9M", "8L1", "7L1", "6L1", "5L1", "4L1", "3L1"], poweruppunch: ["6M"], @@ -33271,6 +33635,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab pursuit: ["7L18", "6L17", "5L17", "4L17", "3L17"], quickattack: ["9M", "8L1", "7L1", "6L1", "5L1", "4L1", "3L1"], quickguard: ["9M", "8L15", "7L57", "6L57"], + razorwind: ["9M"], rest: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], return: ["7M", "6M", "5M", "4M", "3M"], roar: ["9M", "7M", "6M", "5M", "4M", "3M"], @@ -33279,7 +33644,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocksmash: ["6M", "5M", "4M", "3M"], rocktomb: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], round: ["8M", "7M", "6M", "5M"], - safeguard: ["8M", "7M", "6M", "5M", "4M", "3M"], + safeguard: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], scaleshot: ["9M", "8T"], screech: ["9M", "8M", "8L49", "7L69", "6L23", "5L23", "4L23", "3L23"], secretpower: ["6M", "4M", "3M"], @@ -33287,6 +33652,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab seismictoss: ["3T"], shedtail: ["9M"], slam: ["9M", "8L30", "7L33", "6L33", "5L43", "4L43", "3L43"], + slash: ["9M"], sleeptalk: ["9M", "8M", "7M", "6M", "5T", "4M", "3T"], snore: ["8M", "7T", "6T", "5T", "4T", "3T"], solarbeam: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], @@ -33297,7 +33663,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab swagger: ["7M", "6M", "5M", "4M", "3T"], swift: ["9M", "8M", "4T", "3T"], swordsdance: ["9M", "8M", "7M", "6M", "5M", "4M", "3T"], - synthesis: ["7T", "6T", "5T", "4T"], + synthesis: ["9M", "7T", "6T", "5T", "4T"], + tackle: ["9M"], takedown: ["9M"], terablast: ["9M"], thief: ["9M"], @@ -33306,7 +33673,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab trailblaze: ["9M"], upperhand: ["9M"], vacuumwave: ["9M"], - workup: ["8M", "7M"], + workup: ["9M", "8M", "7M"], worryseed: ["7T", "6T", "5T", "4T"], xscissor: ["9M", "8M", "8L1", "7M", "7L45", "6M", "6L16", "5M", "5L16", "4M", "4L16"], }, @@ -33363,9 +33730,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mirrormove: ["7L41", "6L37", "5L37", "4L37", "3L37"], mudslap: ["4T", "3T"], naturalgift: ["4M"], - nightslash: ["9E", "8E", "7E", "6E", "5E", "4E"], + nightslash: ["9M", "9E", "8E", "7E", "6E", "5E", "4E"], overheat: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - peck: ["9E", "8E", "7L14", "6L14", "5L16", "4L16", "3L16"], + peck: ["9M", "9E", "8E", "7L14", "6L14", "5L16", "4L16", "3L16"], protect: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], quickattack: ["9M", "8L6", "7L23", "6L23", "5L28", "4L28", "3L28"], rest: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], @@ -33395,7 +33762,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab terablast: ["9M"], uproar: ["9M"], willowisp: ["9M", "8M", "7M", "6M", "5M", "4M"], - workup: ["8M", "7M"], + workup: ["9M", "8M", "7M"], }, eventData: [ { generation: 3, level: 10, gender: "M", moves: ["scratch", "growl", "focusenergy", "ember"], pokeball: "pokeball" }, @@ -33416,8 +33783,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab brickbreak: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], bulkup: ["9M", "8M", "8L45", "7M", "7L31", "6M", "6L28", "5M", "5L28", "4M", "4L28", "3M", "3L28"], captivate: ["4M"], + circlethrow: ["9M"], closecombat: ["9M"], coaching: ["9M", "8T"], + cometpunch: ["9M"], confide: ["7M", "6M"], counter: ["3T"], curse: ["9M"], @@ -33428,7 +33797,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleedge: ["9M", "3T"], doublekick: ["9M", "8L0", "7L1", "6L16", "5L16", "4L16", "3L16"], doubleteam: ["7M", "6M", "5M", "4M", "3M"], - dualchop: ["7T", "6T", "5T"], + dualchop: ["9M", "7T", "6T", "5T"], dynamicpunch: ["3T"], echoedvoice: ["7M", "6M", "5M"], ember: ["9M", "8L1", "7L1", "6L1", "5L1", "4L1", "3L1"], @@ -33463,10 +33832,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mirrormove: ["7L47", "6L43", "5L43", "4L43", "3L43"], mudslap: ["4T", "3T"], naturalgift: ["4M"], + nightslash: ["9M"], overheat: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - peck: ["7L14", "6L14", "5L17", "4L17", "3L17"], + peck: ["9M", "7L14", "6L14", "5L17", "4L17", "3L17"], poisonjab: ["9M", "8M", "7M", "6M", "5M", "4M"], - poweruppunch: ["6M"], + poweruppunch: ["9M", "6M"], protect: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], quickattack: ["9M", "8L1", "7L25", "6L25", "5L32", "4L32", "3L32"], rest: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], @@ -33500,7 +33870,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab uproar: ["9M"], vacuumwave: ["9M", "4T"], willowisp: ["9M", "8M", "7M", "6M", "5M", "4M"], - workup: ["8M", "7M", "5M"], + workup: ["9M", "8M", "7M", "5M"], }, }, blaziken: { @@ -33521,8 +33891,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bulkup: ["9M", "8M", "8L49", "7M", "7L31", "6M", "6L28", "5M", "5L28", "4M", "4L28", "3M", "3L28"], bulldoze: ["9M", "8M", "7M", "6M", "5M"], captivate: ["4M"], + circlethrow: ["9M"], closecombat: ["9M", "8M"], coaching: ["9M", "8T"], + cometpunch: ["9M"], confide: ["7M", "6M"], counter: ["3T"], curse: ["9M"], @@ -33533,7 +33905,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleedge: ["9M", "3T"], doublekick: ["9M", "8L1", "7L1", "6L16", "5L16", "4L16", "3L16"], doubleteam: ["7M", "6M", "5M", "4M", "3M"], - dualchop: ["7T", "6T", "5T"], + drainpunch: ["9M"], + dualchop: ["9M", "7T", "6T", "5T"], dynamicpunch: ["3T"], earthquake: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], echoedvoice: ["7M", "6M", "5M"], @@ -33575,10 +33948,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mirrormove: ["3L49", "3S0"], mudslap: ["9M", "4T", "3T"], naturalgift: ["4M"], + nightslash: ["9M"], overheat: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - peck: ["7L14", "6L14", "5L17", "4L17", "3L17"], + peck: ["9M", "7L14", "6L14", "5L17", "4L17", "3L17"], poisonjab: ["9M", "8M", "7M", "6M", "5M", "4M"], - poweruppunch: ["6M"], + poweruppunch: ["9M", "6M"], protect: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], quickattack: ["9M", "8L1", "7L25", "6L25", "5L32", "4L32", "3L32"], rest: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], @@ -33621,7 +33995,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab uturn: ["9M", "8M"], vacuumwave: ["9M", "4T"], willowisp: ["9M", "8M", "7M", "6M", "5M", "4M"], - workup: ["8M", "7M", "5M"], + workup: ["9M", "8M", "7M", "5M"], }, eventData: [ { generation: 3, level: 70, moves: ["blazekick", "slash", "mirrormove", "skyuppercut"], pokeball: "pokeball" }, @@ -33631,15 +34005,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mudkip: { learnset: { amnesia: ["9M", "8M", "8L27"], - ancientpower: ["9E", "8E", "7E", "6E", "5E", "4T", "4E"], + ancientpower: ["9M", "9E", "8E", "7E", "6E", "5E", "4T", "4E"], aquatail: ["7T", "6T", "5T", "4T"], attract: ["8M", "7M", "6M", "5M", "4M", "3M"], avalanche: ["9M", "8M", "7E", "6E", "5E"], barrier: ["7E", "6E"], bide: ["7L17", "6L15", "5L15", "4L15", "3L15"], - bite: ["9E", "8E", "7E", "6E", "5E", "4E"], + bite: ["9M", "9E", "8E", "7E", "6E", "5E", "4E"], blizzard: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], bodyslam: ["9M", "8M", "3T"], + bubblebeam: ["9M"], captivate: ["4M"], chillingwater: ["9M"], confide: ["7M", "6M"], @@ -33664,7 +34039,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab iceball: ["7E", "6E", "5E", "4E", "3E"], icebeam: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], icywind: ["9M", "8M", "7T", "6T", "5T", "4T", "3T"], - irontail: ["8M", "7T", "6T", "5T", "4M", "3M"], + irontail: ["9M", "8M", "7T", "6T", "5T", "4M", "3M"], liquidation: ["9M"], lowkick: ["9M", "8M", "7T", "6T", "5T", "4T"], mimic: ["3T"], @@ -33687,11 +34062,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocktomb: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], rollout: ["4T", "3T"], round: ["8M", "7M", "6M", "5M"], - scald: ["8M", "7M", "6M", "5M"], + scald: ["9M", "8M", "7M", "6M", "5M"], screech: ["9M", "8M", "8L33"], secretpower: ["6M", "4M", "3M"], sleeptalk: ["9M", "8M", "7M", "6M", "5T", "4M", "3T"], sludge: ["9E", "8E", "7E", "6E", "5E", "4E"], + sludgebomb: ["9M"], sludgewave: ["9M", "8M", "7M", "6M", "5M"], snore: ["8M", "7T", "6T", "5T", "4T", "3T"], stomp: ["9E", "8E", "7E", "6E", "5E", "4E", "3E"], @@ -33711,7 +34087,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab waterpulse: ["9M", "8L18", "7T", "6T", "4M", "3M"], whirlpool: ["9M", "8M", "7L33", "7E", "6L33", "6E", "5L33", "5E", "4M", "4L33", "4E", "3L33"], wideguard: ["9E", "8E", "7E", "6E", "5E"], - workup: ["8M", "7M"], + workup: ["9M", "8M", "7M"], yawn: ["9E", "8E", "7E", "6E", "5E", "4E"], }, eventData: [ @@ -33722,14 +34098,17 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab marshtomp: { learnset: { amnesia: ["9M", "8M", "8L35"], - ancientpower: ["4T"], + ancientpower: ["9M", "4T"], + aquaring: ["9M"], aquatail: ["7T", "6T", "5T", "4T"], attract: ["8M", "7M", "6M", "5M", "4M", "3M"], avalanche: ["9M", "8M"], bide: ["7L18", "6L15", "5L15", "4L15", "3L15"], + bite: ["9M"], blizzard: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], bodyslam: ["9M", "8M", "3T"], brickbreak: ["9M", "8M", "7M", "6M", "5M", "4M"], + bubblebeam: ["9M"], bulldoze: ["9M", "8M", "7M", "6M", "5M"], captivate: ["4M"], chillingwater: ["9M"], @@ -33760,7 +34139,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab icebeam: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], icepunch: ["9M", "8M", "7T", "6T", "5T", "4T", "3T"], icywind: ["9M", "8M", "7T", "6T", "5T", "4T", "3T"], - irontail: ["8M", "7T", "6T", "5T", "4M", "3M"], + irontail: ["9M", "8M", "7T", "6T", "5T", "4M", "3M"], liquidation: ["9M"], lowkick: ["9M", "8M", "7T", "6T", "5T", "4T"], megakick: ["8M", "3T"], @@ -33785,11 +34164,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rollout: ["4T", "3T"], round: ["8M", "7M", "6M", "5M"], sandtomb: ["9M", "8M"], - scald: ["8M", "7M", "6M", "5M"], + scald: ["9M", "8M", "7M", "6M", "5M"], screech: ["9M", "8M", "8L45"], secretpower: ["6M", "4M", "3M"], seismictoss: ["3T"], sleeptalk: ["9M", "8M", "7M", "6M", "5T", "4M", "3T"], + sludgebomb: ["9M"], sludgewave: ["9M", "8M", "7M", "6M", "5M"], snore: ["8M", "7T", "6T", "5T", "4T", "3T"], stealthrock: ["9M", "8M", "7T", "6T", "5T", "4M"], @@ -33808,21 +34188,24 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab waterpledge: ["9M", "8T", "7T", "6T", "5T"], waterpulse: ["9M", "8L20", "7T", "6T", "4M", "3M"], whirlpool: ["9M", "8M", "4M"], - workup: ["8M", "7M"], + workup: ["9M", "8M", "7M"], }, }, swampert: { learnset: { amnesia: ["9M", "8M", "8L35"], - ancientpower: ["4T"], + ancientpower: ["9M", "4T"], + aquaring: ["9M"], aquatail: ["7T", "6T", "5T", "4T"], attract: ["8M", "7M", "6M", "5M", "4M", "3M"], avalanche: ["9M", "8M", "4M"], bide: ["7L18", "6L15", "5L15", "4L15", "3L15"], + bite: ["9M"], blizzard: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], bodypress: ["9M", "8M"], bodyslam: ["9M", "8M", "3T"], brickbreak: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], + bubblebeam: ["9M"], bulkup: ["9M", "8M"], bulldoze: ["9M", "8M", "7M", "6M", "5M"], captivate: ["4M"], @@ -33843,6 +34226,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endeavor: ["9M", "8L56", "7T", "7L56", "6T", "6L56", "5T", "5L61", "4T", "4L61", "3L61"], endure: ["9M", "8M", "4M", "3T"], facade: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], + fissure: ["9M"], fling: ["9M", "8M", "7M", "6M", "5M", "4M"], flipturn: ["9M", "8T"], focusblast: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -33863,7 +34247,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab icebeam: ["9M", "8M", "7M", "6M", "5M", "5S0", "4M", "3M"], icepunch: ["9M", "8M", "7T", "6T", "5T", "4T", "3T"], icywind: ["9M", "8M", "7T", "6T", "5T", "4T", "3T"], - irontail: ["8M", "7T", "6T", "5T", "4M", "3M"], + irontail: ["9M", "8M", "7T", "6T", "5T", "4M", "3M"], knockoff: ["9M"], liquidation: ["9M", "8M"], lowkick: ["9M", "8M", "7T", "6T", "5T", "4T"], @@ -33892,12 +34276,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rollout: ["4T", "3T"], round: ["8M", "7M", "6M", "5M"], sandtomb: ["9M", "8M"], - scald: ["8M", "7M", "6M", "5M"], + scald: ["9M", "8M", "7M", "6M", "5M"], scaryface: ["9M"], screech: ["9M", "8M", "8L49"], secretpower: ["6M", "4M", "3M"], seismictoss: ["3T"], sleeptalk: ["9M", "8M", "7M", "6M", "5T", "4M", "3T"], + sludgebomb: ["9M"], sludgewave: ["9M", "8M", "7M", "6M", "5M"], smackdown: ["9M"], snore: ["8M", "7T", "6T", "5T", "4T", "3T"], @@ -33920,7 +34305,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab waterpulse: ["9M", "8L20", "7T", "6T", "4M", "3M"], weatherball: ["9M"], whirlpool: ["9M", "8M", "4M"], - workup: ["8M", "7M"], + workup: ["9M", "8M", "7M"], }, eventData: [ { generation: 5, level: 50, shiny: 1, moves: ["earthquake", "icebeam", "hydropump", "hammerarm"], pokeball: "cherishball" }, @@ -35800,6 +36185,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab trick: ["9M", "8M", "7T", "6T", "5T", "4T"], trickroom: ["9M", "8M", "7M", "6M", "5M", "4M"], tripleaxel: ["9M", "8T"], + vacuumwave: ["9M"], willowisp: ["9M", "8M", "7M", "6M", "5M"], wonderroom: ["8M", "7T", "6T", "5T"], zenheadbutt: ["9M", "8M", "7T", "6T", "5T", "4T"], @@ -35867,7 +36253,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab megakick: ["8M"], megapunch: ["8M"], metronome: ["9M"], - mimic: ["3T"], + mimic: ["9M", "3T"], mistyexplosion: ["9M", "8T"], mistyterrain: ["9M", "8M", "8L1", "7L1", "6L1"], moonblast: ["9M", "8L1", "7L1", "6L1", "6S1"], @@ -35903,7 +36289,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab storedpower: ["9M", "8M", "7L1", "6L1", "6S1", "5L80"], substitute: ["9M", "8M", "7M", "6M", "5M", "4M", "3T"], sunnyday: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - swagger: ["7M", "6M", "5M", "4M", "3T"], + swagger: ["9M", "7M", "6M", "5M", "4M", "3T"], swift: ["9M", "8M", "4T"], taunt: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], telekinesis: ["7T", "5M"], @@ -35913,7 +36299,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderbolt: ["9M", "8M", "7M", "6M", "5M", "5S0", "4M", "3M"], thunderpunch: ["9M", "8M", "7T", "6T", "5T", "4T", "3T"], thunderwave: ["9M", "8M", "7M", "6M", "5M", "4M", "3T"], - torment: ["7M", "6M", "5M", "4M", "3M"], + torment: ["9M", "7M", "6M", "5M", "4M", "3M"], trick: ["9M", "8M", "7T", "6T", "5T", "4T"], trickroom: ["9M", "8M", "7M", "6M", "5M", "4M"], tripleaxel: ["9M", "8T"], @@ -35948,6 +36334,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab charm: ["9M", "8M", "8L1"], closecombat: ["9M", "8M", "8L63", "7L1", "6L1", "5L59", "4L53"], coaching: ["9M", "8T"], + cometpunch: ["9M"], confide: ["7M", "6M"], confuseray: ["9M"], confusion: ["9M", "8L1", "7L1", "6L1", "5L1", "4L1"], @@ -35958,7 +36345,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab drainingkiss: ["9M", "8M", "8L1"], drainpunch: ["9M", "8M", "7T", "6T", "5T", "4M"], dreameater: ["9M", "8L1", "7M", "6M", "5M", "4M"], - dualchop: ["7T", "6T", "5T"], + dualchop: ["9M", "7T", "6T", "5T"], earthquake: ["9M", "8M", "7M", "6M", "5M", "4M"], echoedvoice: ["7M", "6M", "5M"], encore: ["9M", "8M"], @@ -36021,6 +36408,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab psyshock: ["9M", "8M", "7M", "6M", "5M"], quickguard: ["9M", "8L56", "7L11", "6L11"], raindance: ["9M", "8M", "7M", "6M", "5M", "4M"], + razorwind: ["9M"], recycle: ["7T", "6T", "5T", "4M"], reflect: ["9M", "8M", "7M", "6M", "5M", "4M"], rest: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -37870,7 +38258,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab nightshade: ["9M", "8L21", "7L6", "6L6", "5L8", "4L8", "3L9", "3S0"], nightslash: ["9M"], octazooka: ["5S2"], - ominouswind: ["4T"], + ominouswind: ["9M", "4T"], painsplit: ["9M", "7T", "6T", "4T"], partingshot: ["9M"], payback: ["8M", "7M", "6M", "5M", "4M"], @@ -37901,6 +38289,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab seismictoss: ["3T"], shadowball: ["9M", "8M", "8L45", "7M", "7L39", "6M", "6L39", "6S3", "5M", "5L57", "4M", "4L53", "3M", "3L41", "3S1"], shadowclaw: ["9M", "8M", "8L33", "7M", "7L29", "6M", "6L29", "5M", "5L39", "4M", "4L39"], + shadowpunch: ["9M"], shadowsneak: ["9M", "8L9", "7L16", "6L16", "5L25", "4L25"], shockwave: ["7T", "6T", "6S4", "4M", "3M"], signalbeam: ["7T", "6T", "5T", "4T"], @@ -37914,7 +38303,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab substitute: ["9M", "8M", "7M", "6M", "5M", "4M", "3T"], suckerpunch: ["9E", "8E", "7E", "6E", "5E", "5D", "4T"], sunnyday: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - swagger: ["7M", "6M", "5M", "4M", "3T"], + swagger: ["9M", "7M", "6M", "5M", "4M", "3T"], tackle: ["9M"], takedown: ["9M"], taunt: ["9M", "8M", "7M", "6M", "6S4", "5M", "4M", "3M"], @@ -37925,7 +38314,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderpunch: ["9M", "8M", "7T", "6T", "5T", "4T", "3T"], thunderwave: ["9M"], tickle: ["5S2"], - torment: ["9E", "8E", "7M", "6M", "5M", "4M", "3M"], + torment: ["9M", "9E", "8E", "7M", "6M", "5M", "4M", "3M"], trick: ["9M", "8M", "7T", "7E", "6T", "6E", "5T", "5E", "5S2", "4T"], waterpulse: ["7T", "6T", "4M", "3M"], willowisp: ["9M", "8M", "7M", "6M", "6S3", "6S4", "5M", "4M"], @@ -37943,7 +38332,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, mawile: { learnset: { - ancientpower: ["8E", "7E", "6E", "5E", "4T", "4E", "3E"], + ancientpower: ["9M", "8E", "7E", "6E", "5E", "4T", "4E", "3E"], assurance: ["8M"], astonish: ["8L1", "7L1", "6L1", "5L1", "4L1", "3L1", "3S0"], attract: ["8M", "7M", "6M", "5M", "4M", "3M"], @@ -37953,7 +38342,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab brickbreak: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], brutalswing: ["8M"], captivate: ["7E", "6E", "5E", "4M"], - chargebeam: ["7M", "6M", "5M", "4M"], + chargebeam: ["9M", "7M", "6M", "5M", "4M"], charm: ["9M"], confide: ["7M", "6M"], counter: ["3T"], @@ -37966,10 +38355,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dynamicpunch: ["9M", "3T"], embargo: ["7M", "6M", "5M", "4M"], endure: ["9M", "8M", "4M", "3T"], - facade: ["8M", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], fairywind: ["9M", "8L4", "7L1", "6L1"], faketears: ["9M", "8M", "8L44", "7L5", "6L5", "5L6", "5D", "4L6", "3L6", "3S0"], - falseswipe: ["8M", "7M", "6M", "5M", "4E", "3E", "3S1"], + falseswipe: ["9M", "8M", "7M", "6M", "5M", "4E", "3E", "3S1"], feintattack: ["7L21", "6L21", "5L26", "4L26", "3L26"], fireblast: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], firefang: ["9M", "8M", "7E", "6E", "6S2", "5E", "5D", "4E"], @@ -38008,10 +38397,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab painsplit: ["7T", "6T", "5T", "4T"], payback: ["8M", "7M", "6M", "5M", "4M"], playrough: ["9M", "8M", "8L48", "7L1", "6L1", "6S2", "6S3"], - poisonfang: ["7E", "6E", "5E", "4E", "3E"], + poisonfang: ["9M", "7E", "6E", "5E", "4E", "3E"], poweruppunch: ["9M", "8E", "7E", "6M"], protect: ["9M", "8M", "7M", "6M", "6S3", "5M", "4M", "3M"], - psychicfangs: ["8M"], + psychicfangs: ["9M", "8M"], psychup: ["7M", "6M", "5M", "4E", "3T", "3E"], punishment: ["7E", "6E", "5E", "4E"], raindance: ["8M", "7M", "6M", "5M", "4M", "3M"], @@ -38034,7 +38423,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab solarbeam: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], spitup: ["8L16", "7L41", "6L41", "5L51", "4L51", "3L46"], stealthrock: ["9M", "8M", "7T", "6T", "5T"], - steelbeam: ["8T"], + steelbeam: ["9M", "8T"], stockpile: ["8L16", "7L41", "6L41", "5L51", "4L51", "3L46"], stoneedge: ["9M", "8M", "7M", "6M", "5M"], strength: ["6M", "5M", "4M", "3M"], @@ -38042,7 +38431,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab suckerpunch: ["8L20", "7L37", "7E", "6L37", "6E", "6S2", "6S3", "5L46", "5E", "4T", "4L46", "4E"], sunnyday: ["8M", "7M", "6M", "5M", "4M", "3M"], superfang: ["7T", "6T", "5T", "4T"], - swagger: ["7M", "6M", "5M", "4M", "3T"], + swagger: ["9M", "7M", "6M", "5M", "4M", "3T"], swallow: ["8L16", "7L41", "6L41", "5L51", "4L51", "3L46"], sweetscent: ["8L32", "7L13", "6L13", "5L16", "4L16", "3L16"], swordsdance: ["9M", "8M", "7M", "6M", "5M", "4M", "4E", "3T", "3E"], @@ -38082,7 +38471,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab earthquake: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], endeavor: ["8E", "7T", "7E", "6T", "6E", "5T", "5E", "5D", "4T", "4E", "3E"], endure: ["9M", "8M", "4M", "3T"], - facade: ["8M", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], frustration: ["7M", "6M", "5M", "4M", "3M"], furycutter: ["4T", "3T"], harden: ["9M", "8L1", "7L1", "6L1", "5L1", "5D", "4L4", "3L4"], @@ -38123,7 +38512,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab snore: ["8M", "7T", "6T", "5T", "4T", "3T"], spite: ["7T", "6T", "5T", "4T"], stealthrock: ["9M", "8M", "7T", "7E", "6T", "6E", "5T", "5E", "4M"], - steelbeam: ["8T"], + steelbeam: ["9M", "8T"], steelroller: ["8T"], stomp: ["8E", "7E", "6E", "5E", "4E", "3E"], strength: ["6M", "5M", "4M", "3M"], @@ -38157,7 +38546,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab earthquake: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], endeavor: ["7T", "6T", "5T", "4T"], endure: ["9M", "8M", "4M", "3T"], - facade: ["8M", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], frustration: ["7M", "6M", "5M", "4M", "3M"], furycutter: ["4T", "3T"], harden: ["9M", "8L1", "7L1", "6L1", "5L1", "4L1", "3L1"], @@ -38199,7 +38588,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab snore: ["8M", "7T", "6T", "5T", "4T", "3T"], spite: ["7T", "6T", "5T", "4T"], stealthrock: ["9M", "8M", "7T", "6T", "5T", "4M"], - steelbeam: ["8T"], + steelbeam: ["9M", "8T"], steelroller: ["8T"], stompingtantrum: ["8M", "7T"], stoneedge: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -38217,7 +38606,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab aggron: { learnset: { aerialace: ["7M", "6M", "5M", "4M", "3M"], - ancientpower: ["4T"], + ancientpower: ["9M", "4T"], aquatail: ["7T", "6T", "5T", "4T"], attract: ["8M", "7M", "6M", "5M", "4M", "3M"], autotomize: ["8L48", "7L51", "6L48", "5L48"], @@ -38247,7 +38636,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab earthquake: ["9M", "8M", "7M", "6M", "6S2", "5M", "4M", "3M"], endeavor: ["7T", "6T", "5T", "4T"], endure: ["9M", "8M", "4M", "3T"], - facade: ["8M", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], fireblast: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], firepunch: ["9M", "8M", "7T", "6T", "5T", "4T", "3T"], flamethrower: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], @@ -38274,20 +38663,21 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ironhead: ["9M", "8M", "8L28", "7T", "7L22", "6T", "6L22", "6S2", "5T", "5L25", "4T", "4L29"], irontail: ["9M", "8M", "8L56", "7T", "7L35", "6T", "6L35", "5T", "5L40", "4M", "4L48", "3M", "3L29", "3S0", "3S1"], lowkick: ["8M", "7T", "6T", "5T", "4T"], + magnetbomb: ["9M"], magnetrise: ["7T", "6T", "5T", "4T"], megakick: ["8M", "3T"], megapunch: ["8M", "3T"], metalburst: ["8L88", "7L63", "6L63", "5L74", "4L65"], metalclaw: ["9M", "8L1", "7L10", "6L10", "5L11", "4L15", "3L13"], metalsound: ["9M", "8L35", "7L31", "6L31", "5L34", "4L40", "3L50", "3S0", "3S1"], - meteorbeam: ["8T"], + meteorbeam: ["9M", "8T"], mimic: ["3T"], mudshot: ["9M"], mudslap: ["7L1", "6L1", "5L1", "4T", "4L1", "3T", "3L1"], naturalgift: ["4M"], outrage: ["9M", "8M", "7T", "6T", "5T", "4T"], payback: ["8M", "7M", "6M", "5M", "4M"], - poweruppunch: ["6M"], + poweruppunch: ["9M", "6M"], protect: ["9M", "8M", "8L20", "7M", "7L16", "6M", "6L16", "5M", "5L29", "4M", "4L34", "3M", "3L37", "3S0", "3S1"], raindance: ["8M", "7M", "6M", "5M", "4M", "3M"], rest: ["8M", "7M", "6M", "5M", "4M", "3M"], @@ -38305,6 +38695,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab sandstorm: ["8M", "7M", "6M", "5M", "4M", "3M"], sandtomb: ["8M"], scaryface: ["8M"], + scorchingsands: ["9M"], screech: ["9M", "8M"], secretpower: ["6M", "4M", "3M"], seismictoss: ["3T"], @@ -38317,7 +38708,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab solarbeam: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], spite: ["7T", "6T", "5T", "4T"], stealthrock: ["9M", "8M", "7T", "6T", "5T", "4M"], - steelbeam: ["8T"], + steelbeam: ["9M", "8T"], steelroller: ["8T"], stompingtantrum: ["8M", "7T"], stoneedge: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -38326,7 +38717,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab sunnyday: ["8M", "7M", "6M", "5M", "4M", "3M"], superpower: ["8M", "7T", "6T", "5T", "4T"], surf: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - swagger: ["7M", "6M", "5M", "4M", "3T"], + swagger: ["9M", "7M", "6M", "5M", "4M", "3T"], tackle: ["9M", "8L1", "7L1", "6L1", "5L1", "4L1", "3L1"], takedown: ["9M", "8L40", "7L28", "6L22", "5L22", "4L25", "3L25", "3S1"], taunt: ["8M", "7M", "6M", "5M", "4M", "3M"], @@ -38370,7 +38761,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M", "7L12", "6L12", "5D", "4M", "3T"], expandingforce: ["9M"], facade: ["9M", "7M", "6M", "5M", "4M", "3M"], - fakeout: ["9E", "7E", "6E", "5E", "4E", "3E"], + fakeout: ["9M", "9E", "7E", "6E", "5E", "4E", "3E"], feint: ["9M", "7L15", "6L15", "5L22", "4L22"], firepunch: ["9M", "9E", "7T", "7E", "6T", "6E", "5T", "5E", "4T", "4E", "3T", "3E"], flash: ["6M", "5M", "4M", "3M"], @@ -38469,6 +38860,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab axekick: ["9M"], batonpass: ["9M"], bide: ["7L1", "6L1", "5L1", "4L1", "3L1"], + blazekick: ["9M"], bodyslam: ["9M", "3T"], brickbreak: ["9M", "7M", "6M", "5M", "4M", "3M"], bulkup: ["9M", "7M", "6M", "5M", "4M", "3M"], @@ -38476,6 +38868,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab calmmind: ["9M", "7M", "7L23", "6M", "6L23", "5M", "5L25", "4M", "4L25", "3M", "3L28"], captivate: ["4M"], closecombat: ["9M"], + cometpunch: ["9M"], confide: ["7M", "6M"], confusion: ["9M", "7L1", "6L1", "5L1", "4L1", "3L1"], counter: ["9M", "7L53", "6L53", "3T"], @@ -38489,6 +38882,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab energyball: ["9M", "7M", "6M", "5M", "4M"], expandingforce: ["9M"], facade: ["9M", "7M", "6M", "5M", "4M", "3M"], + fakeout: ["9M"], feint: ["9M", "7L15", "6L15", "5L22", "4L22"], firepunch: ["9M", "7T", "7L1", "6T", "6L1", "5T", "5L1", "4T", "4L1", "3T", "3L1"], flash: ["6M", "5M", "4M", "3M"], @@ -38593,7 +38987,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab eerieimpulse: ["9M", "8M", "7E", "6E"], electroball: ["8M", "7E", "6E", "5E"], endure: ["9M", "8M", "4M", "3T"], - facade: ["8M", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], firefang: ["9M", "8M", "7E", "6E", "5E", "4E"], flameburst: ["7E", "6E", "5E"], flamethrower: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -38611,7 +39005,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab naturalgift: ["4M"], odorsleuth: ["7L16", "6L16", "5L25", "4L25", "3L25"], protect: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - psychicfangs: ["8M"], + psychicfangs: ["9M", "8M"], quickattack: ["9M", "8L12", "7L10", "6L10", "5L17", "4L17", "3L17"], raindance: ["8M", "7M", "6M", "5M", "4M", "3M"], rest: ["8M", "7M", "6M", "5M", "4M", "3M"], @@ -38651,7 +39045,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bodyslam: ["9M", "8M", "3T"], captivate: ["4M"], charge: ["9M", "8L42", "7L48", "6L48", "5L54", "4L54", "3L53"], - chargebeam: ["7M", "6M", "5M", "4M"], + chargebeam: ["9M", "7M", "6M", "5M", "4M"], confide: ["7M", "6M"], crunch: ["9M", "8M"], curse: ["9M"], @@ -38662,8 +39056,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab electricterrain: ["8M", "8L60", "7L1", "6L1"], electroball: ["8M"], endure: ["9M", "8M", "4M", "3T"], - facade: ["8M", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], firefang: ["9M", "8M", "8L1", "7L1", "6L1", "5L1", "4L1"], + flamecharge: ["9M"], flamethrower: ["9M", "8M", "7M", "6M", "5M", "4M"], flash: ["6M", "5M", "4M", "3M"], frustration: ["7M", "6M", "5M", "4M", "3M"], @@ -38684,9 +39079,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab odorsleuth: ["7L16", "6L16", "5L25", "4L25", "3L25"], overheat: ["9M", "8M", "7M", "6M", "6S1", "5M", "4M"], protect: ["9M", "8M", "7M", "6M", "6S1", "5M", "4M", "3M"], - psychicfangs: ["8M"], + psychicfangs: ["9M", "8M"], quickattack: ["9M", "8L12", "7L10", "6L10", "5L17", "4L17", "3L17"], raindance: ["8M", "7M", "6M", "5M", "4M", "3M", "3S0"], + razorwind: ["9M"], refresh: ["3S0"], rest: ["8M", "7M", "6M", "5M", "4M", "3M"], return: ["7M", "6M", "5M", "4M", "3M"], @@ -38712,6 +39108,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderfang: ["9M", "8M", "8L24", "7L19", "6L19", "5L37", "4L37"], thundershock: ["9M"], thunderwave: ["9M", "8M", "8L1", "7M", "7L1", "6M", "6L1", "5M", "5L1", "4M", "4L1", "3T", "3L1"], + trailblaze: ["9M"], uproar: ["8M", "7T", "6T", "5T"], voltswitch: ["9M", "8M", "7M", "6M", "6S1", "5M"], wildcharge: ["9M", "8M", "8L48", "7M", "7L42", "6M", "6L42", "5M", "5L61"], @@ -39111,7 +39508,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M", "8M", "4M"], energyball: ["9M", "8M", "7M", "6M", "5M", "4M"], extrasensory: ["8E", "7E", "6E", "5E", "4E"], - facade: ["8M", "7M", "6M", "5M", "4M"], + facade: ["9M", "8M", "7M", "6M", "5M", "4M"], flash: ["6M", "5M", "4M"], frustration: ["7M", "6M", "5M", "4M"], gigadrain: ["8M", "7T", "7E", "6T", "6E", "5T", "5E", "4M"], @@ -39136,7 +39533,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab return: ["7M", "6M", "5M", "4M"], round: ["8M", "7M", "6M", "5M"], secretpower: ["6M", "4M"], - seedbomb: ["8M", "7T", "7E", "6T", "6E", "5T", "5E", "4T"], + seedbomb: ["9M", "8M", "7T", "7E", "6T", "6E", "5T", "5E", "4T"], shadowball: ["9M", "8M", "7M", "6M", "5M", "4M"], sleeppowder: ["8E", "7E", "6E", "5E", "4E"], sleeptalk: ["8M", "7M", "6M", "5T", "4M"], @@ -39177,7 +39574,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M", "8M", "4M", "3T"], energyball: ["9M", "8M", "7M", "6M", "5M", "4M"], extrasensory: ["8E"], - facade: ["8M", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], flash: ["6M", "5M", "4M", "3M"], frustration: ["7M", "6M", "5M", "4M", "3M"], furycutter: ["4T", "3T"], @@ -39200,7 +39597,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab naturepower: ["7M", "6M"], nightmare: ["3T"], petalblizzard: ["8L45", "7L37", "6L37"], - petaldance: ["8L60", "7L50", "6L37", "5L37", "4L40", "3L49"], + petaldance: ["9M", "8L60", "7L50", "6L37", "5L37", "4L40", "3L49"], pinmissile: ["9M", "8M", "7E", "6E", "5E", "4E", "3E"], poisonjab: ["9M", "8M", "7M", "6M", "5M", "4M"], poisonsting: ["9M", "8L0", "7L7", "6L7", "5L7", "4L7", "3L9", "3S0"], @@ -39213,7 +39610,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab return: ["7M", "6M", "5M", "4M", "3M"], round: ["8M", "7M", "6M", "5M"], secretpower: ["6M", "4M", "3M"], - seedbomb: ["8M", "7T", "7E", "6T", "6E", "5T", "5E", "4T"], + seedbomb: ["9M", "8M", "7T", "7E", "6T", "6E", "5T", "5E", "4T"], shadowball: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], sleeppowder: ["9M", "8E", "7E", "6E", "5E", "5D", "4E"], sleeptalk: ["8M", "7M", "6M", "5T", "4M", "3T"], @@ -39258,7 +39655,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleteam: ["7M", "6M", "5M", "4M"], endure: ["9M", "8M", "4M"], energyball: ["9M", "8M", "7M", "6M", "5M", "4M"], - facade: ["8M", "7M", "6M", "5M", "4M"], + facade: ["9M", "8M", "7M", "6M", "5M", "4M"], flash: ["6M", "5M", "4M"], frustration: ["7M", "6M", "5M", "4M"], furycutter: ["4T"], @@ -39275,12 +39672,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab leechseed: ["9M", "8L1"], magicalleaf: ["9M", "8M", "8L1", "7L1", "6L1", "5L1", "4L1"], megadrain: ["8L1", "7L1", "6L1", "5L1", "4L1"], + mortalspin: ["9M"], mudshot: ["9M"], mudslap: ["4T"], naturalgift: ["4M"], naturepower: ["7M", "6M"], petalblizzard: ["8L1"], - petaldance: ["8L1"], + petaldance: ["9M", "8L1"], pinmissile: ["9M", "8M"], poisonjab: ["9M", "8M", "7M", "6M", "5M", "4M"], poisonsting: ["9M", "8L1", "7L1", "6L1", "5L1", "4L1"], @@ -39289,11 +39687,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab psychup: ["7M", "6M", "5M", "4M"], raindance: ["8M", "7M", "6M", "5M", "4M"], razorleaf: ["9M"], + razorwind: ["9M"], rest: ["8M", "7M", "6M", "5M", "4M"], return: ["7M", "6M", "5M", "4M"], round: ["8M", "7M", "6M", "5M"], secretpower: ["6M", "4M"], - seedbomb: ["8M", "7T", "6T", "5T", "4T"], + seedbomb: ["9M", "8M", "7T", "6T", "5T", "4T"], shadowball: ["9M", "8M", "7M", "6M", "5M", "4M"], sleeppowder: ["9M"], sleeptalk: ["8M", "7M", "6M", "5T", "4M"], @@ -39320,7 +39719,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, gulpin: { learnset: { - acidarmor: ["9E", "7E", "6E", "5E", "5D", "4E", "3E"], + acidarmor: ["9M", "9E", "7E", "6E", "5E", "5D", "4E", "3E"], acidspray: ["9M", "7L17", "6L17", "5L34"], amnesia: ["9M", "7L12", "6L12", "5L17", "4L17", "3L17"], attract: ["7M", "6M", "5M", "4M", "3M"], @@ -39336,11 +39735,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab destinybond: ["9E", "7E", "6E", "5E", "4E"], doubleedge: ["3T"], doubleteam: ["7M", "6M", "5M", "4M", "3M"], - dreameater: ["7M", "6M", "5M", "4M", "4E", "3T", "3E"], + dreameater: ["9M", "7M", "6M", "5M", "4M", "4E", "3T", "3E"], dynamicpunch: ["3T"], encore: ["9M", "7L20", "6L20", "5L23", "4L23", "3L23"], endure: ["9M", "4M", "3T"], - explosion: ["7M", "6M", "5M", "4M", "3T"], + explosion: ["9M", "7M", "6M", "5M", "4M", "3T"], facade: ["9M", "7M", "6M", "5M", "4M", "3M"], firepunch: ["9M", "7T", "6T", "5T", "4T", "3T"], fling: ["9M"], @@ -39353,6 +39752,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab icebeam: ["9M", "7M", "6M", "5M", "4M", "3M"], icepunch: ["9M", "7T", "6T", "5T", "4T", "3T"], infestation: ["7M", "6M"], + knockoff: ["9M"], mimic: ["3T"], mudshot: ["9M"], mudslap: ["9M", "9E", "7E", "6E", "5E", "4T", "3T"], @@ -39368,19 +39768,20 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rest: ["9M", "7M", "6M", "5M", "4M", "3M"], return: ["7M", "6M", "5M", "4M", "3M"], rocksmash: ["6M", "5M", "4M", "3M"], - rollout: ["4T", "3T"], + rollout: ["9M", "4T", "3T"], round: ["7M", "6M", "5M"], secretpower: ["6M", "4M", "3M"], seedbomb: ["9M", "7T", "6T", "5T", "4T"], - selfdestruct: ["3T"], + selfdestruct: ["9M", "3T"], shadowball: ["9M", "7M", "6M", "5M", "4M", "3M"], shockwave: ["7T", "6T", "4M", "3M", "3S0"], - sing: ["3S0"], + sing: ["9M", "3S0"], sleeptalk: ["9M", "7M", "6M", "5T", "4M", "3T"], sludge: ["9M", "7L10", "6L10", "5L14", "4L14", "3L14", "3S0"], sludgebomb: ["9M", "7M", "7L33", "6M", "6L33", "5M", "5L44", "4M", "4L39", "3M", "3L39"], sludgewave: ["9M", "7M", "6M", "5M"], smog: ["9E", "7E", "6E", "5E", "4E", "3E"], + smokescreen: ["9M"], snatch: ["7T", "6T", "5T", "4M", "3M"], snore: ["7T", "6T", "5T", "4T", "3T"], solarbeam: ["9M", "7M", "6M", "5M", "4M", "3M"], @@ -39393,11 +39794,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab swagger: ["7M", "6M", "5M", "4M", "3T"], swallow: ["9M", "7L28", "6L28", "5L39", "4L34", "3L34"], swordsdance: ["9M"], + tackle: ["9M"], takedown: ["9M"], terablast: ["9M"], thief: ["9M"], thunderpunch: ["9M", "7T", "6T", "5T", "4T", "3T"], thunderwave: ["9M"], + toxic: ["9M"], toxicspikes: ["9M"], venomdrench: ["7E", "6E"], venoshock: ["9M", "7M", "6M", "5M"], @@ -39411,6 +39814,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, swalot: { learnset: { + acidarmor: ["9M"], acidspray: ["9M", "7L17", "6L17", "5L38"], amnesia: ["9M", "7L12", "6L12", "5L17", "4L17", "3L17"], attract: ["7M", "6M", "5M", "4M", "3M"], @@ -39428,12 +39832,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab defensecurl: ["3T"], doubleedge: ["9M", "3T"], doubleteam: ["7M", "6M", "5M", "4M", "3M"], - dreameater: ["7M", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "7M", "6M", "5M", "4M", "3T"], dynamicpunch: ["3T"], earthquake: ["9M", "7M", "6M", "5M", "4M"], encore: ["9M", "7L20", "6L20", "5L23", "4L23", "3L23"], endure: ["9M", "4M", "3T"], - explosion: ["7M", "6M", "5M", "4M", "3T"], + explosion: ["9M", "7M", "6M", "5M", "4M", "3T"], facade: ["9M", "7M", "6M", "5M", "4M", "3M"], firepunch: ["9M", "7T", "6T", "5T", "4T", "3T"], fling: ["9M"], @@ -39465,17 +39869,19 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rest: ["9M", "7M", "6M", "5M", "4M", "3M"], return: ["7M", "6M", "5M", "4M", "3M"], rocksmash: ["6M", "5M", "4M", "3M"], - rollout: ["4T", "3T"], + rollout: ["9M", "4T", "3T"], round: ["7M", "6M", "5M"], secretpower: ["6M", "4M", "3M"], seedbomb: ["9M", "7T", "6T", "5T", "4T"], - selfdestruct: ["3T"], + selfdestruct: ["9M", "3T"], shadowball: ["9M", "7M", "6M", "5M", "4M", "3M"], shockwave: ["7T", "6T", "4M", "3M"], + sing: ["9M"], sleeptalk: ["9M", "7M", "6M", "5T", "4M", "3T"], sludge: ["9M", "7L1", "6L1", "5L1", "4L1", "3L1"], sludgebomb: ["9M", "7M", "7L37", "6M", "6L37", "5M", "5L52", "4M", "4L45", "3M", "3L48"], sludgewave: ["9M", "7M", "6M", "5M"], + smokescreen: ["9M"], snatch: ["7T", "6T", "5T", "4M", "3M"], snore: ["7T", "6T", "5T", "4T", "3T"], solarbeam: ["9M", "7M", "6M", "5M", "4M", "3M"], @@ -39487,11 +39893,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab swagger: ["7M", "6M", "5M", "4M", "3T"], swallow: ["9M", "7L30", "6L30", "5L45", "4L38", "3L40"], swordsdance: ["9M"], + tackle: ["9M"], takedown: ["9M"], terablast: ["9M"], thief: ["9M"], thunderpunch: ["9M", "7T", "6T", "5T", "4T", "3T"], thunderwave: ["9M"], + toxic: ["9M"], toxicspikes: ["9M"], venomdrench: ["7L1"], venoshock: ["9M", "7M", "6M", "5M"], @@ -39504,7 +39912,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab carvanha: { learnset: { agility: ["9M", "8M", "8L36", "7L39", "6L36", "5L36", "4L36", "3L43"], - ancientpower: ["8E", "7E", "6E", "5E", "4T", "4E"], + ancientpower: ["9M", "8E", "7E", "6E", "5E", "4T", "4E"], aquajet: ["9M", "8L1", "7L11", "6L11", "5L31", "4L31"], assurance: ["8M", "7L15", "6L15", "5L26", "4L26"], attract: ["8M", "7M", "6M", "5M", "4M", "3M"], @@ -39521,7 +39929,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleedge: ["9M", "8E", "7E", "6E", "5E", "4E", "3T", "3E"], doubleteam: ["7M", "6M", "5M", "4M", "3M"], endure: ["9M", "8M", "4M", "3T"], - facade: ["8M", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], flipturn: ["9M", "8T"], focusenergy: ["9M", "8M", "8L8", "7L8", "6L8", "5L8", "4L8", "3L13"], frustration: ["7M", "6M", "5M", "4M", "3M"], @@ -39537,9 +39945,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mudslap: ["4T", "3T"], naturalgift: ["4M"], payback: ["8M", "7M", "6M", "5M", "4M"], - poisonfang: ["8L4", "7L32", "6L32"], + poisonfang: ["9M", "8L4", "7L32", "6L32"], protect: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - psychicfangs: ["8M", "7E"], + psychicfangs: ["9M", "8M", "7E"], rage: ["7L4", "6L4", "5L6", "4L6", "3L7"], raindance: ["8M", "7M", "6M", "5M", "4M", "3M"], refresh: ["3S0"], @@ -39547,8 +39955,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab retaliate: ["8M", "6M", "5M"], return: ["7M", "6M", "5M", "4M", "3M"], round: ["8M", "7M", "6M", "5M"], - scald: ["8M", "7M", "6M", "5M"], - scaleshot: ["8T"], + scald: ["9M", "8M", "7M", "6M", "5M"], + scaleshot: ["9M", "8T"], scaryface: ["8M", "8L12", "7L29", "6L11", "5L11", "4L11", "3L16", "3S0"], screech: ["9M", "8M", "8L24", "7L18", "6L18", "5L18", "4L18", "3L28"], secretpower: ["6M", "4M", "3M"], @@ -39559,7 +39967,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab substitute: ["9M", "8M", "7M", "6M", "5M", "4M", "3T"], superfang: ["7T", "6T", "5T", "4T"], surf: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - swagger: ["8L28", "7M", "7L22", "6M", "6L21", "5M", "5L21", "4M", "4L21", "3T", "3L37"], + swagger: ["9M", "8L28", "7M", "7L22", "6M", "6L21", "5M", "5L21", "4M", "4L21", "3T", "3L37"], swift: ["9M", "8M", "7E", "6E", "5E", "4T", "3T"], takedown: ["9M", "8L44", "7L43", "6L38", "5L38", "4L38", "3L31"], taunt: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], @@ -39580,7 +39988,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab sharpedo: { learnset: { agility: ["9M", "8M", "8L40", "7L45", "6L45", "5L45", "4L45", "3L53"], - ancientpower: ["4T"], + ancientpower: ["9M", "4T"], aquajet: ["9M", "8L1", "7L11", "6L11", "6S0", "5L34", "4L34"], assurance: ["8M", "7L15", "6L15", "5L26", "4L26"], attract: ["8M", "7M", "6M", "5M", "4M", "3M"], @@ -39601,7 +40009,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleteam: ["7M", "6M", "5M", "4M", "3M"], earthquake: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], endure: ["9M", "8M", "4M", "3T"], - facade: ["8M", "7M", "6M", "5M", "4M", "3M"], + facade: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], feint: ["7L1", "6L1", "5L1", "4L1"], flipturn: ["9M", "8T"], focusenergy: ["9M", "8M", "8L1", "7L1", "6L1", "5L1", "4L1", "3L1"], @@ -39621,10 +40029,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab naturalgift: ["4M"], nightslash: ["9M", "8L1", "7L1", "6L1", "5L56", "4L56"], payback: ["8M", "7M", "6M", "5M", "4M"], - poisonfang: ["8L1", "7L34", "6L34", "6S1"], + poisonfang: ["9M", "8L1", "7L34", "6L34", "6S1"], poisonjab: ["9M", "8M", "7M", "6M", "5M", "4M"], protect: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - psychicfangs: ["8M"], + psychicfangs: ["9M", "8M"], rage: ["7L1", "6L1", "5L1", "4L1", "3L1"], raindance: ["8M", "7M", "6M", "5M", "4M", "3M"], rest: ["8M", "7M", "6M", "5M", "4M", "3M"], @@ -39634,12 +40042,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocksmash: ["6M", "5M", "4M", "3M"], rocktomb: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], round: ["8M", "7M", "6M", "5M"], - scald: ["8M", "7M", "6M", "5M"], - scaleshot: ["8T"], + scald: ["9M", "8M", "7M", "6M", "5M"], + scaleshot: ["9M", "8T"], scaryface: ["8M", "8L12", "7L29", "6L11", "6S1", "5L11", "4L11", "3L16"], screech: ["9M", "8M", "8L24", "7L18", "6L18", "5L18", "4L18", "3L28"], secretpower: ["6M", "4M", "3M"], - skullbash: ["7L51", "6L50", "5L50", "4L50", "3L48"], + skullbash: ["9M", "7L51", "6L50", "5L50", "4L50", "3L48"], slash: ["9M", "8L0", "7L1", "6L30", "6S1", "5L30", "4L30", "3L33"], sleeptalk: ["8M", "7M", "6M", "5T", "4M", "3T"], snarl: ["8M", "7M", "6M", "5M"], @@ -39649,7 +40057,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab substitute: ["9M", "8M", "7M", "6M", "5M", "4M", "3T"], superfang: ["7T", "6T", "5T", "4T"], surf: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - swagger: ["8L28", "7M", "7L22", "6M", "6L21", "5M", "5L21", "4M", "4L21", "3T", "3L43"], + swagger: ["9M", "8L28", "7M", "7L22", "6M", "6L21", "5M", "5L21", "4M", "4L21", "3T", "3L43"], swift: ["9M", "8M", "4T", "3T"], takedown: ["9M", "8L52"], taunt: ["9M", "8M", "7M", "7L56", "6M", "6L40", "5M", "5L40", "4M", "4L40", "3M", "3L38"], @@ -39823,7 +40231,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab learnset: { afteryou: ["7T", "6T", "5T"], amnesia: ["9M", "7L19", "6L19", "5L19", "4L25", "3L31"], - ancientpower: ["9E", "7E", "6E", "5E", "4E"], + ancientpower: ["9M", "9E", "7E", "6E", "5E", "4E"], attract: ["7M", "6M", "5M", "4M", "3M"], bodypress: ["9M"], bodyslam: ["9M", "9E", "7E", "6E", "5E", "5D", "4E", "3T", "3E"], @@ -39918,6 +40326,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab learnset: { afteryou: ["7T", "6T", "5T"], amnesia: ["9M", "7L19", "6L19", "5L19", "4L25", "3L31"], + ancientpower: ["9M"], attract: ["7M", "6M", "5M", "4M", "3M"], bodypress: ["9M"], bodyslam: ["9M", "3T"], @@ -40123,7 +40532,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dazzlinggleam: ["9M"], doubleedge: ["3T"], doubleteam: ["7M", "6M", "5M", "4M", "3M"], - dreameater: ["7M", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "7M", "6M", "5M", "4M", "3T"], encore: ["9M"], endeavor: ["9M"], endure: ["9M", "7E", "6E", "5E", "4M", "3T"], @@ -40139,6 +40548,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab headbutt: ["4T"], healbell: ["7T", "6T", "5T", "4T"], helpinghand: ["9M"], + hypnosis: ["9M"], icywind: ["9M", "7T", "6T", "5T", "4T", "3T"], imprison: ["9M"], irontail: ["7T", "6T", "5T", "4M", "3M"], @@ -40148,10 +40558,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab magiccoat: ["7T", "7L21", "6T", "6L21", "5T", "5L21", "4T", "4L21", "3L28"], mimic: ["3T"], mirrorcoat: ["9E", "7E", "6E", "5E", "4E"], + mudshot: ["9M"], naturalgift: ["4M"], nightshade: ["9M"], odorsleuth: ["7L10", "6L10", "5L10", "4L10", "3L10"], payback: ["9M", "7M", "7L40", "6M", "6L40", "5M", "5L40", "4M", "4L34"], + payday: ["9M"], powergem: ["9M", "7L29", "6L29", "5L33", "4L46"], protect: ["9M", "7M", "6M", "5M", "4M", "3M"], psybeam: ["9M", "7L14", "6L14", "5L14", "4L14", "3L16"], @@ -40169,6 +40581,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["7M", "6M", "5M"], secretpower: ["6M", "4M", "3M"], shadowball: ["9M", "7M", "6M", "5M", "4M", "3M"], + shadowpunch: ["9M"], shockwave: ["7T", "6T", "4M", "3M"], signalbeam: ["7T", "6T", "5T", "4T"], simplebeam: ["9E", "7E", "6E"], @@ -40195,7 +40608,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab trick: ["9M", "9E", "7T", "7E", "6T", "6E", "5T", "5E", "4T", "4E", "3E"], trickroom: ["9M", "7M", "6M", "5M", "4M"], uproar: ["9M", "3S0"], - whirlwind: ["9E", "7E", "6E", "5E"], + whirlwind: ["9M", "9E", "7E", "6E", "5E"], zenheadbutt: ["9M", "9E", "7T", "7L26", "7E", "6T", "6L26", "6E", "5T", "5L26", "5E", "4T", "4L26", "4E"], }, eventData: [ @@ -40227,7 +40640,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleedge: ["3T"], doubleteam: ["7M", "6M", "5M", "4M", "3M"], drainpunch: ["9M", "7T", "6T", "5T", "4M"], - dreameater: ["7M", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "7M", "6M", "5M", "4M", "3T"], dynamicpunch: ["3T"], earthpower: ["9M"], encore: ["9M"], @@ -40246,11 +40659,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab futuresight: ["9M"], gigaimpact: ["9M", "7M", "6M", "5M", "4M"], grassknot: ["9M", "7M", "6M", "5M", "4M"], + growl: ["9M"], headbutt: ["4T"], healbell: ["7T", "6T", "5T", "4T"], + healblock: ["9M"], helpinghand: ["9M"], hyperbeam: ["9M", "7M", "6M", "5M", "4M", "3M"], hypervoice: ["9M"], + hypnosis: ["9M"], icepunch: ["9M", "7T", "6T", "5T", "4T", "3T"], icywind: ["9M", "7T", "6T", "5T", "4T", "3T"], imprison: ["9M"], @@ -40271,7 +40687,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab naturalgift: ["4M"], nightshade: ["9M"], odorsleuth: ["7L1", "6L1", "5L1", "4L1", "3L1"], + ominouswind: ["9M"], payback: ["9M", "7M", "7L46", "6M", "6L46", "5M", "5L46", "4M", "4L37"], + payday: ["9M"], powergem: ["9M", "7L29", "6L29", "5L35", "4L55"], poweruppunch: ["6M"], protect: ["9M", "7M", "6M", "5M", "4M", "3M"], @@ -40293,6 +40711,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab seedbomb: ["9M"], seismictoss: ["3T"], shadowball: ["9M", "7M", "6M", "5M", "4M", "3M"], + shadowpunch: ["9M"], shockwave: ["7T", "6T", "4M", "3M"], signalbeam: ["7T", "6T", "5T", "4T"], skillswap: ["9M", "7T", "6T", "5T", "4M", "3M"], @@ -40321,6 +40740,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab trick: ["9M", "7T", "6T", "5T", "4T"], trickroom: ["9M", "7M", "6M", "5M", "4M"], uproar: ["9M"], + whirlwind: ["9M"], zenheadbutt: ["9M", "7T", "7L26", "6T", "6L26", "5T", "5L26", "4T", "4L26"], }, encounters: [ @@ -40957,7 +41377,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dragoncheer: ["9M"], dragonpulse: ["9M", "8M", "7T", "7L38", "6T", "6L38", "5T", "5L42", "4M", "4L45"], dragonrush: ["9M", "9E", "8E", "7E", "6E", "5E", "4E"], - dreameater: ["7M", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "7M", "6M", "5M", "4M", "3T"], dualwingbeat: ["9M", "8T"], echoedvoice: ["7M", "6M", "5M"], endeavor: ["9M"], @@ -41053,14 +41473,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dragondance: ["9M", "8M", "7L30", "6L30", "5L34", "4L39", "3L40", "3S0"], dragonpulse: ["9M", "8M", "8L0", "7T", "7L40", "6T", "6L40", "5T", "5L48", "4M", "4L54"], dragonrush: ["9M"], - dreameater: ["7M", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "7M", "6M", "5M", "4M", "3T"], dualwingbeat: ["9M", "8T"], earthquake: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], echoedvoice: ["7M", "6M", "5M"], endeavor: ["9M"], endure: ["9M", "8M", "4M", "3T"], facade: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - falseswipe: ["8M", "5S2"], + falseswipe: ["9M", "8M", "5S2"], featherdance: ["9M"], fireblast: ["9M", "8M", "7M", "6M", "6S3", "5M", "4M", "3M"], firespin: ["9M", "8M"], @@ -41090,6 +41510,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab outrage: ["9M", "8M", "7T", "6T", "5T", "4T"], peck: ["9M", "8L1", "7L1", "6L1", "5L1", "4L1", "3L1"], perishsong: ["9M", "8L50", "7L46", "6L46", "5L57", "4L62", "3L54"], + petaldance: ["9M"], playrough: ["9M", "8M"], pluck: ["9M", "8L1", "7L1", "6L1", "5M", "5L1", "4M", "4L1"], powerswap: ["8M"], @@ -41105,6 +41526,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["9M", "8M", "8L16", "7M", "7L17", "6M", "6L17", "5M", "5L18"], safeguard: ["9M", "8M", "8L24", "7M", "7L9", "6M", "6L9", "5M", "5L13", "4M", "4L18", "3M", "3L21"], secretpower: ["6M", "4M", "3M"], + silverwind: ["9M"], sing: ["9M", "8L28", "7L1", "6L1", "5L1", "4L1", "3L1"], skyattack: ["9M", "8L56", "7T", "7L1", "6T", "6L1", "5T", "5L64", "4T", "4L70", "3T", "3L59"], sleeptalk: ["9M", "8M", "7M", "6M", "5T", "4M", "3T"], @@ -41147,6 +41569,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab brickbreak: ["9M", "7M", "6M", "5M", "4M", "3M", "3S2"], captivate: ["4M"], closecombat: ["9M", "7L50", "6L47", "5L47", "4L53"], + cometpunch: ["9M"], confide: ["7M", "6M"], counter: ["9M", "7E", "6E", "5E", "4E", "3T", "3E", "3S2"], crushclaw: ["9M", "7L26", "6L22", "5L22", "4L31", "3L31", "3S2"], @@ -41164,6 +41587,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endeavor: ["9M", "7T", "6T", "5T", "4T"], endure: ["9M", "4M", "3T"], facade: ["9M", "7M", "6M", "5M", "4M", "3M"], + fakeout: ["9M"], falseswipe: ["9M", "7M", "7L29", "6M", "6L29", "5M", "5L29", "4M", "4L44", "3L55"], feint: ["9M", "7E", "6E", "5E"], finalgambit: ["9M", "7E", "6E", "5E"], @@ -41181,7 +41605,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab gigaimpact: ["9M"], grassknot: ["9M"], gunkshot: ["9M"], - headbutt: ["4T"], + headbutt: ["9M", "4T"], helpinghand: ["9M"], honeclaws: ["9M", "7L15", "6M", "6L15", "5M"], hyperbeam: ["9M"], @@ -41189,7 +41613,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab icepunch: ["9M", "7T", "6T", "5T", "4T", "3T"], icywind: ["9M", "7T", "6T", "5T", "4T", "3T"], incinerate: ["6M", "5M"], - irontail: ["7T", "7E", "6T", "6E", "5T", "5E", "4M", "3M"], + irontail: ["9M", "7T", "7E", "6T", "6E", "5T", "5E", "4M", "3M"], knockoff: ["9M", "7T", "6T", "5T", "4T"], lastresort: ["7T", "6T", "5T", "4T"], leer: ["9M", "7L1", "6L1", "5L1", "4L1", "3L4", "3S0", "3S1"], @@ -41211,7 +41635,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab quickattack: ["9M", "7L5", "6L5", "5L5", "5D", "4L5", "3L7", "3S0", "3S1"], quickguard: ["9M", "7E", "6E"], raindance: ["9M", "7M", "6M", "5M", "4M", "3M"], - razorwind: ["7E", "6E", "5E", "4E", "3E"], + razorwind: ["9M", "7E", "6E", "5E", "4E", "3E"], refresh: ["3S2"], rest: ["9M", "7M", "6M", "5M", "4M", "3M"], retaliate: ["6M", "5M"], @@ -41232,6 +41656,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab shadowball: ["9M", "7M", "6M", "5M", "4M", "3M"], shadowclaw: ["9M", "7M", "6M", "5M", "4M"], shockwave: ["7T", "6T", "4M", "3M"], + skullbash: ["9M"], slash: ["9M", "7L19", "6L15", "5L15", "4L18", "3L19"], sleeptalk: ["9M", "7M", "6M", "5T", "4M", "3T"], snore: ["7T", "6T", "5T", "4T", "3T"], @@ -41244,6 +41669,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab swift: ["9M", "4T", "3T"], switcheroo: ["9M"], swordsdance: ["9M", "7M", "7L47", "6M", "6L43", "5M", "5L9", "4M", "4L9", "3T", "3L10", "3S0", "3S1"], + tackle: ["9M"], takedown: ["9M"], taunt: ["9M", "7M", "7L43", "6M", "6L40", "5M", "5L35", "4M", "4L35", "3M", "3L37"], terablast: ["9M"], @@ -41255,7 +41681,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderwave: ["9M", "3T"], upperhand: ["9M"], waterpulse: ["7T", "6T", "4M", "3M"], - workup: ["7M", "5M"], + workup: ["9M", "7M", "5M"], xscissor: ["9M", "7M", "7L40", "6M", "6L36", "5M", "5L36", "4M", "4L48"], zenheadbutt: ["9M"], }, @@ -41288,6 +41714,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dig: ["9M", "6M", "5M", "4M", "3M"], doubleedge: ["9M", "3T"], doubleteam: ["7M", "6M", "5M", "4M", "3M"], + dragonpulse: ["9M"], dragontail: ["7M", "6M", "5M"], earthquake: ["9M", "7M", "6M", "5M", "4M", "3M"], endeavor: ["9M"], @@ -41311,14 +41738,15 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab icefang: ["9M"], infestation: ["7M", "6M"], ironhead: ["9M"], - irontail: ["7T", "7E", "6T", "6E", "5T", "5E", "4M", "3M"], + irontail: ["9M", "7T", "7E", "6T", "6E", "5T", "5E", "4M", "3M"], knockoff: ["9M", "7T", "6T", "5T", "4T"], lashout: ["9M"], + leer: ["9M"], lick: ["9M", "7L6", "6L7", "5L1", "4L7", "3L7", "3S0", "3S2"], mimic: ["3T"], mudslap: ["4T", "3T"], naturalgift: ["4M"], - nightslash: ["9E", "7L26", "7E", "6L28", "6E", "5L31", "5E", "4L46", "4E"], + nightslash: ["9M", "9E", "7L26", "7E", "6L28", "6E", "5L31", "5E", "4L46", "4E"], payback: ["7M", "6M", "5M", "4M"], poisonfang: ["9M", "7L21", "6L22", "5L27", "4L34", "3L34"], poisonjab: ["9M", "7M", "7L31", "6M", "6L34", "5M", "5L42", "4M", "4L52"], @@ -41334,6 +41762,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab reversal: ["9M"], rocksmash: ["6M", "5M", "4M", "3M"], round: ["7M", "6M", "5M"], + scaleshot: ["9M"], scaryface: ["9M", "9E", "7E", "6E", "5E", "4E"], screech: ["9M", "7L14", "6L13", "5L16", "4L19", "3L19", "3S1"], secretpower: ["6M", "4M", "3M"], @@ -41362,6 +41791,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thief: ["9M", "7M", "6M", "5M", "4M", "3M"], throatchop: ["9M", "7T"], thunderfang: ["9M"], + toxic: ["9M"], trailblaze: ["9M"], venomdrench: ["7L24", "6L25"], venoshock: ["9M", "7M", "7L16", "6M", "6L16", "5M", "5L20"], @@ -42455,7 +42885,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab hypnosis: ["9E", "8E", "7E", "6E", "5E", "4E", "3E"], icebeam: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], icywind: ["9M", "8M", "7T", "6T", "5T", "4T", "3T"], - irontail: ["8M", "7T", "7E", "6T", "6E", "5T", "5E"], + irontail: ["9M", "8M", "7T", "7E", "6T", "6E", "5T", "5E"], lightscreen: ["9M", "8M", "7M", "6M", "5M", "4E", "3E"], mimic: ["3T"], mirrorcoat: ["9E", "8E", "7E", "6E", "5E", "5D", "4E", "4S0", "3E"], @@ -42469,7 +42899,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rest: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], return: ["7M", "6M", "5M", "4M", "3M"], round: ["8M", "7M", "6M", "5M"], - scald: ["8M", "7M", "6M", "5M"], + scald: ["9M", "8M", "7M", "6M", "5M"], scaleshot: ["9M", "8T"], secretpower: ["6M", "4M", "3M"], sleeptalk: ["9M", "8M", "7M", "6M", "5T", "4M", "3T"], @@ -42504,11 +42934,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab brine: ["8M"], brutalswing: ["8M", "7M"], bulldoze: ["9M", "8M", "7M", "6M", "5M"], + calmmind: ["9M"], captivate: ["7L21", "6L24", "5L25", "4M", "4L25"], chillingwater: ["9M"], coil: ["9M", "8L48", "7L41", "6L44"], confide: ["7M", "6M"], confuseray: ["9M"], + dazzlinggleam: ["9M"], disarmingvoice: ["9M", "8L4", "7L11", "6L11"], dive: ["8M", "6M", "5M", "4T", "3M"], doubleedge: ["9M", "3T"], @@ -42529,17 +42961,20 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab helpinghand: ["9M", "8M"], hydropump: ["9M", "8M", "8L52", "7L44", "6L37", "5L37", "5S3", "4L37", "4S1", "4S2", "3L40"], hyperbeam: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], + hypnosis: ["9M"], icebeam: ["9M", "8M", "7M", "6M", "5M", "5S3", "5S4", "4M", "4S1", "3M"], icywind: ["9M", "8M", "7T", "6T", "5T", "4T", "4S2", "3T"], imprison: ["9M", "8M"], ironhead: ["9M", "8M", "7T", "6T", "5T", "4T"], - irontail: ["8M", "7T", "6T", "5T", "4M", "3M"], + irontail: ["9M", "8M", "7T", "6T", "5T", "4M", "3M"], laserfocus: ["7T"], lifedew: ["9M", "8L20"], lightscreen: ["9M", "8M", "7M", "6M", "5M"], + liquidation: ["9M"], magiccoat: ["7T", "6T", "5T", "4T"], - mimic: ["3T"], + mimic: ["9M", "3T"], mirrorcoat: ["5S3"], + mist: ["9M"], muddywater: ["9M", "8M"], mudshot: ["9M", "8M"], mudslap: ["4T", "3T"], @@ -42659,38 +43094,41 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, kecleon: { learnset: { - aerialace: ["7M", "6M", "5M", "4M", "3M"], + aerialace: ["9M", "7M", "6M", "5M", "4M", "3M"], afteryou: ["7T", "6T", "5T"], - ancientpower: ["7L21", "6L1", "5L55", "4T", "4L55", "3L49"], + ancientpower: ["9M", "7L21", "6L1", "5L55", "4T", "4L55", "3L49"], aquatail: ["7T", "6T", "5T", "4T"], astonish: ["7L1", "6L1", "5L1", "4L1", "3L1"], attract: ["7M", "6M", "5M", "4M", "3M"], bind: ["7T", "7L4", "6T", "6L4", "5T", "5L4", "4L4", "3L4"], - blizzard: ["7M", "6M", "5M", "4M", "3M"], - bodyslam: ["3T"], - brickbreak: ["7M", "6M", "5M", "4M", "3M"], + blizzard: ["9M", "7M", "6M", "5M", "4M", "3M"], + bodyslam: ["9M", "3T"], + brickbreak: ["9M", "7M", "6M", "5M", "4M", "3M"], camouflage: ["7L30", "7E", "6L30", "6E"], captivate: ["4M"], - chargebeam: ["7M", "6M", "5M", "4M"], + chargebeam: ["9M", "7M", "6M", "5M", "4M"], confide: ["7M", "6M"], + conversion: ["9M"], + conversion2: ["9M"], counter: ["3T"], cut: ["6M", "5M", "4M", "3M"], defensecurl: ["3T"], - dig: ["6M", "5M", "4M", "3M"], + dig: ["9M", "6M", "5M", "4M", "3M"], disable: ["7E", "6E", "5E", "4E", "3E"], dizzypunch: ["7E", "6E", "5E", "4E"], doubleedge: ["3T"], doubleteam: ["7M", "6M", "5M", "4M", "3M"], - drainpunch: ["7T", "6T", "5T", "4M"], + drainpunch: ["9M", "7T", "6T", "5T", "4M"], dynamicpunch: ["3T"], - endure: ["4M", "3T"], - facade: ["7M", "6M", "5M", "4M", "3M"], - fakeout: ["7E", "6E", "5E", "4E"], + endure: ["9M", "4M", "3T"], + facade: ["9M", "7M", "6M", "5M", "4M", "3M"], + fakeout: ["9M", "7E", "6E", "5E", "4E"], feint: ["7L10", "6L10", "5L14", "4L14"], feintattack: ["7L16", "6L7", "5L7", "5D", "4L7", "3L7"], - fireblast: ["7M", "6M", "5M", "4M", "3M"], - firepunch: ["7T", "6T", "5T", "4T", "3T"], - flamethrower: ["7M", "6M", "5M", "4M", "3M"], + fireblast: ["9M", "7M", "6M", "5M", "4M", "3M"], + firepunch: ["9M", "7T", "6T", "5T", "4T", "3T"], + firstimpression: ["9M"], + flamethrower: ["9M", "7M", "6M", "5M", "4M", "3M"], flash: ["6M", "5M", "4M", "3M"], fling: ["7M", "6M", "5M", "4M"], focuspunch: ["7T", "6T", "4M", "3M"], @@ -42698,29 +43136,31 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab frustration: ["7M", "6M", "5M", "4M", "3M"], furycutter: ["4T", "3T"], furyswipes: ["7L13", "6L10", "5L10", "4L10", "3L12"], + gigaimpact: ["9M"], grassknot: ["7M", "6M", "5M", "4M"], headbutt: ["4T"], honeclaws: ["6M", "5M"], - icebeam: ["7M", "6M", "5M", "4M", "3M"], - icepunch: ["7T", "6T", "5T", "4T", "3T"], - icywind: ["7T", "6T", "5T", "4T", "3T"], + icebeam: ["9M", "7M", "6M", "5M", "4M", "3M"], + icepunch: ["9M", "7T", "6T", "5T", "4T", "3T"], + icywind: ["9M", "7T", "6T", "5T", "4T", "3T"], incinerate: ["6M", "5M"], - irontail: ["7T", "6T", "5T", "4M", "3M"], - knockoff: ["7T", "6T", "5T", "4T"], + irontail: ["9M", "7T", "6T", "5T", "4M", "3M"], + knockoff: ["9M", "7T", "6T", "5T", "4T"], lastresort: ["7T", "6T", "5T", "4T"], - lick: ["7L1", "6L1", "5L1", "4L1", "3L1"], + lick: ["9M", "7L1", "6L1", "5L1", "4L1", "3L1"], lowkick: ["7T", "6T", "5T", "4T"], magiccoat: ["7T", "7E", "6T", "6E", "5T", "5E", "4T", "4E", "3E"], megakick: ["3T"], megapunch: ["3T"], - metronome: ["3T"], + metronome: ["9M", "3T"], mimic: ["3T"], mudslap: ["4T", "3T"], - nastyplot: ["7E", "6E", "5E", "4E"], + nastyplot: ["9M", "7E", "6E", "5E", "4E"], naturalgift: ["4M"], - poweruppunch: ["7E", "6M"], - protect: ["7M", "6M", "5M", "4M", "3M"], - psybeam: ["7L18", "6L18", "5L18", "4L15", "3L17"], + poweruppunch: ["9M", "7E", "6M"], + powerwhip: ["9M"], + protect: ["9M", "7M", "6M", "5M", "4M", "3M"], + psybeam: ["9M", "7L18", "6L18", "5L18", "4L15", "3L17"], psychup: ["7M", "6M", "5M", "4M", "3T"], raindance: ["7M", "6M", "5M", "4M", "3M"], recover: ["7E", "6E", "5E", "4E"], @@ -42729,45 +43169,47 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rest: ["7M", "6M", "5M", "4M", "3M"], retaliate: ["6M", "5M"], return: ["7M", "6M", "5M", "4M", "3M"], - rockslide: ["7M", "6M", "5M", "4M", "3T"], + rockslide: ["9M", "7M", "6M", "5M", "4M", "3T"], rocksmash: ["6M", "5M", "4M", "3M"], - rocktomb: ["7M", "6M", "5M", "4M", "3M"], + rocktomb: ["9M", "7M", "6M", "5M", "4M", "3M"], roleplay: ["7T", "6T", "5T", "4T"], rollout: ["4T", "3T"], round: ["7M", "6M", "5M"], + scaleshot: ["9M"], scratch: ["7L1", "6L1", "5L1", "4L1", "3L1"], - screech: ["7L38", "6L32", "5L32", "4L32", "3L24"], + screech: ["9M", "7L38", "6L32", "5L32", "4L32", "3L24"], secretpower: ["6M", "4M", "3M"], seismictoss: ["3T"], - shadowball: ["7M", "6M", "5M", "4M", "3M"], - shadowclaw: ["7M", "7L33", "6M", "6L33", "5M", "5L49", "4M", "4L49"], - shadowsneak: ["7L7", "6L7", "5L22", "4L20"], + shadowball: ["9M", "7M", "6M", "5M", "4M", "3M"], + shadowclaw: ["9M", "7M", "7L33", "6M", "6L33", "5M", "5L49", "4M", "4L49"], + shadowsneak: ["9M", "7L7", "6L7", "5L22", "4L20"], + shedtail: ["9M"], shockwave: ["7T", "6T", "4M", "3M"], skillswap: ["7T", "7E", "6T", "6E", "5T", "5E", "5D", "4M", "3M"], - slash: ["7L25", "6L25", "5L27", "4L25", "3L31"], + slash: ["9M", "7L25", "6L25", "5L27", "4L25", "3L31"], sleeptalk: ["7M", "6M", "5T", "4M", "3T"], snatch: ["7T", "7E", "6T", "6E", "5T", "5E", "4M", "3M"], snore: ["7T", "6T", "5T", "4T", "3T"], - solarbeam: ["7M", "6M", "5M", "4M", "3M"], - stealthrock: ["7T", "6T", "5T", "4M"], + solarbeam: ["9M", "7M", "6M", "5M", "4M", "3M"], + stealthrock: ["9M", "7T", "6T", "5T", "4M"], strength: ["6M", "5M", "4M", "3M"], - substitute: ["7M", "7L42", "6M", "6L37", "5M", "5L37", "4M", "4L37", "3T", "3L40"], + substitute: ["9M", "7M", "7L42", "6M", "6L37", "5M", "5L37", "4M", "4L37", "3T", "3L40"], suckerpunch: ["7L46", "6L43", "5L43", "4T", "4L43"], sunnyday: ["7M", "6M", "5M", "4M", "3M"], swagger: ["7M", "6M", "5M", "4M", "3T"], - swift: ["4T", "3T"], + swift: ["9M", "4T", "3T"], synchronoise: ["7L50", "6L1", "5L58"], - tailwhip: ["7L1", "6L1", "5L1", "4L1", "3L1"], + tailwhip: ["9M", "7L1", "6L1", "5L1", "4L1", "3L1"], thief: ["7M", "7L1", "6M", "6L1", "5M", "5L1", "4M", "4L1", "3M", "3L1"], - thunder: ["7M", "6M", "5M", "4M", "3M"], - thunderbolt: ["7M", "6M", "5M", "4M", "3M"], - thunderpunch: ["7T", "6T", "5T", "4T", "3T"], - thunderwave: ["7M", "6M", "5M", "4M", "3T"], + thunder: ["9M", "7M", "6M", "5M", "4M", "3M"], + thunderbolt: ["9M", "7M", "6M", "5M", "4M", "3M"], + thunderpunch: ["9M", "7T", "6T", "5T", "4T", "3T"], + thunderwave: ["9M", "7M", "6M", "5M", "4M", "3T"], trick: ["7T", "7E", "6T", "6E", "5T", "5E", "4T", "4E", "3E"], trickroom: ["7M", "6M", "5M", "4M"], waterpulse: ["7T", "6T", "4M", "3M"], wonderroom: ["7T", "6T", "5T"], - workup: ["7M", "5M"], + workup: ["9M", "7M", "5M"], }, }, shuppet: { @@ -42788,7 +43230,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab disable: ["9E", "7E", "6E", "5E", "4E", "3E"], doubleedge: ["3T"], doubleteam: ["7M", "6M", "5M", "4M", "3M"], - dreameater: ["7M", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "7M", "6M", "5M", "4M", "3T"], embargo: ["7M", "7L34", "6M", "6L34", "5M", "5L38", "4M", "4L38"], encore: ["9M"], endure: ["9M", "4M", "3T"], @@ -42884,7 +43326,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dazzlinggleam: ["9M", "7M", "6M"], doubleedge: ["3T"], doubleteam: ["7M", "6M", "5M", "4M", "3M"], - dreameater: ["7M", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "7M", "6M", "5M", "4M", "3T"], embargo: ["7M", "7L34", "6M", "6L34", "5M", "5L40", "4M", "4L42"], encore: ["9M"], endure: ["9M", "4M", "3T"], @@ -42902,6 +43344,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab helpinghand: ["9M", "3S0"], hex: ["9M", "7L22", "6L22", "5L26", "5S1"], hyperbeam: ["9M", "7M", "6M", "5M", "4M", "3M"], + iciclespear: ["9M"], icywind: ["9M", "7T", "6T", "5T", "4T", "3T"], imprison: ["9M"], infestation: ["7M", "6M"], @@ -42917,7 +43360,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab naturalgift: ["4M"], nightmare: ["3T"], nightshade: ["9M", "7L1", "6L1", "5L1", "4L1", "3L1"], - ominouswind: ["4T"], + ominouswind: ["9M", "4T"], painsplit: ["9M", "7T", "6T", "5T", "4T"], payback: ["7M", "6M", "5M", "4M"], phantomforce: ["9M", "7L1", "6L1"], @@ -42928,6 +43371,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab psychic: ["9M", "7M", "6M", "5M", "4M", "3M"], psychup: ["9M", "7M", "6M", "5M", "4M", "3T"], raindance: ["9M", "7M", "6M", "5M", "4M", "3M"], + razorwind: ["9M"], rest: ["9M", "7M", "6M", "5M", "4M", "3M"], return: ["7M", "6M", "5M", "4M", "3M"], roleplay: ["9M", "7T", "6T", "5T", "4T"], @@ -42937,6 +43381,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab secretpower: ["6M", "4M", "3M"], shadowball: ["9M", "7M", "7L30", "6M", "6L30", "5M", "5L30", "5S1", "4M", "4L31", "3M", "3L48", "3S0"], shadowclaw: ["9M", "7M", "6M", "5M", "4M"], + shadowpunch: ["9M"], shadowsneak: ["9M", "7L13", "6L13", "5L16", "4L20"], shockwave: ["7T", "6T", "4M", "3M"], skillswap: ["9M", "7T", "6T", "5T", "4M", "3M"], @@ -42949,7 +43394,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab substitute: ["9M", "7M", "6M", "5M", "4M", "3T"], suckerpunch: ["9M", "7L40", "6L34", "5L34", "4T", "4L35"], sunnyday: ["9M", "7M", "6M", "5M", "4M", "3M"], - swagger: ["7M", "6M", "5M", "4M", "3T"], + swagger: ["9M", "7M", "6M", "5M", "4M", "3T"], swordsdance: ["9M"], taunt: ["9M", "7M", "6M", "5M", "4M", "3M"], telekinesis: ["7T", "5M"], @@ -42959,10 +43404,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunder: ["9M", "7M", "6M", "5M", "4M", "3M"], thunderbolt: ["9M", "7M", "6M", "5M", "4M", "3M"], thunderwave: ["9M", "7M", "6M", "5M", "4M", "3T"], - torment: ["7M", "6M", "5M", "4M", "3M"], + torment: ["9M", "7M", "6M", "5M", "4M", "3M"], trailblaze: ["9M"], trick: ["9M", "7T", "7L58", "6T", "6L58", "5T", "5L58", "4T", "4L66"], trickroom: ["9M", "7M", "6M", "5M", "4M"], + vacuumwave: ["9M"], willowisp: ["9M", "7M", "7L16", "6M", "6L13", "5M", "5L13", "4M", "4L23", "3L32"], zenheadbutt: ["9M"], }, @@ -43376,6 +43822,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab chingling: { learnset: { allyswitch: ["9E", "7T"], + amnesia: ["9M"], astonish: ["9M", "7L7", "6L7", "5L9", "4L9"], attract: ["7M", "6M", "5M", "4M"], batonpass: ["9M"], @@ -43389,6 +43836,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab curse: ["9M", "9E", "7E", "6E", "5E", "4E"], dazzlinggleam: ["9M", "7M", "6M"], disable: ["9E", "7E", "6E", "5E", "4E"], + disarmingvoice: ["9M"], doubleedge: ["9M"], doubleteam: ["7M", "6M", "5M", "4M"], dreameater: ["7M", "6M", "5M", "4M", "4E"], @@ -43404,6 +43852,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab gravity: ["9M", "7T", "6T", "5T", "4T"], growl: ["9M", "7L4", "6L4", "5L6", "4L6"], healbell: ["7T", "6T", "5T", "4T"], + healblock: ["9M"], helpinghand: ["9M", "7T", "6T", "5T", "4T"], hypervoice: ["9M", "7T", "6T", "5T"], hypnosis: ["9E", "7E", "6E", "5E", "4E"], @@ -43412,6 +43861,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lastresort: ["9M", "7T", "7L16", "6T", "6L16", "5T", "5L22", "4T", "4L22"], lightscreen: ["9M", "7M", "6M", "5M", "4M"], magiccoat: ["7T", "6T", "5T", "4T"], + metalsound: ["9M"], naturalgift: ["4M"], protect: ["9M", "7M", "6M", "5M", "4M"], psychic: ["9M", "7M", "6M", "5M", "4M"], @@ -43426,8 +43876,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab return: ["7M", "6M", "5M", "4M"], rollout: ["4T"], round: ["7M", "6M", "5M"], - safeguard: ["7M", "6M", "5M", "4M"], + safeguard: ["9M", "7M", "6M", "5M", "4M"], + screech: ["9M"], secretpower: ["6M", "4M"], + selfdestruct: ["9M"], shadowball: ["9M", "7M", "6M", "5M", "4M"], shockwave: ["7T", "6T", "4M"], signalbeam: ["7T", "6T", "5T", "4T"], @@ -43438,8 +43890,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab storedpower: ["9M", "7E", "6E", "5E"], substitute: ["9M", "7M", "6M", "5M", "4M"], sunnyday: ["9M", "7M", "6M", "5M", "4M"], + supersonic: ["9M"], swagger: ["7M", "6M", "5M", "4M"], swift: ["4T"], + tackle: ["9M"], + takedown: ["9M"], taunt: ["9M", "7M", "6M", "5M", "4M"], telekinesis: ["7T", "5M"], terablast: ["9M"], @@ -43448,7 +43903,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab trick: ["9M", "7T", "6T", "5T", "4T"], trickroom: ["9M", "7M", "6M", "5M", "4M"], uproar: ["9M", "7T", "7L32", "6T", "6L17", "5T", "5L17", "4T", "4L17"], - wish: ["9E", "7E", "6E", "5E", "4E"], + waterpulse: ["9M"], + wish: ["9M", "9E", "7E", "6E", "5E", "4E"], wrap: ["9M", "7L1", "6L1", "5L1", "4L1"], yawn: ["9M", "7L13", "6L13"], zenheadbutt: ["9M", "7T", "6T", "5T", "4T"], @@ -43457,10 +43913,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab chimecho: { learnset: { allyswitch: ["7T"], + amnesia: ["9M"], astonish: ["9M", "7L1", "6L1", "5L9", "4L9", "3L9", "3S0"], attract: ["7M", "6M", "5M", "4M", "3M"], batonpass: ["9M"], bind: ["7T", "6T", "5T"], + boomburst: ["9M"], calmmind: ["9M", "7M", "6M", "5M", "4M", "3M"], captivate: ["4M"], chargebeam: ["9M", "7M", "6M", "5M", "4M"], @@ -43488,12 +43946,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab facade: ["9M", "7M", "6M", "5M", "4M", "3M"], faketears: ["9M"], flash: ["6M", "5M", "4M", "3M"], + flashcannon: ["9M"], frustration: ["7M", "6M", "5M", "4M", "3M"], futuresight: ["9M", "7E", "6E", "5E", "4E"], grassknot: ["9M", "7M", "6M", "5M", "4M"], gravity: ["9M", "7T", "6T", "5T", "4T"], growl: ["9M", "7L1", "6L1", "5L6", "4L6", "3L6", "3S0"], healbell: ["9M", "7T", "7L27", "6T", "6L27", "5T", "5L38", "4T", "4L38", "3L38"], + healblock: ["9M"], healingwish: ["9M", "7L1", "6L1", "5L57", "4L49"], healpulse: ["9M", "7L47", "6L47", "5L49"], helpinghand: ["9M", "7T", "6T", "5T", "4T"], @@ -43506,9 +43966,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lastresort: ["7T", "6T", "5T", "4T"], lightscreen: ["9M", "7M", "6M", "5M", "4M", "3M"], magiccoat: ["7T", "6T", "5T", "4T"], + magnetbomb: ["9M"], + metalsound: ["9M"], + meteorbeam: ["9M"], mimic: ["3T"], naturalgift: ["4M"], nightmare: ["3T"], + ominouswind: ["9M"], perishsong: ["7E"], protect: ["9M", "7M", "6M", "5M", "4M", "3M"], psybeam: ["9M"], @@ -43526,7 +43990,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rollout: ["4T", "3T"], round: ["7M", "6M", "5M"], safeguard: ["9M", "7M", "7L37", "6M", "6L37", "5M", "5L41", "4M", "4L41", "3M", "3L41"], + screech: ["9M"], secretpower: ["6M", "4M", "3M"], + selfdestruct: ["9M"], shadowball: ["9M", "7M", "6M", "5M", "4M", "3M"], shockwave: ["7T", "6T", "4M", "3M"], signalbeam: ["7T", "6T", "5T", "4T"], @@ -43538,9 +44004,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab storedpower: ["9M", "7E", "6E", "5E"], substitute: ["9M", "7M", "6M", "5M", "4M", "3T"], sunnyday: ["9M", "7M", "6M", "5M", "4M", "3M"], + supersonic: ["9M"], swagger: ["7M", "6M", "5M", "4M", "3T"], swift: ["9M"], synchronoise: ["7L1", "6L1", "5L54"], + tackle: ["9M"], takedown: ["9M", "7L19", "6L19", "5L22", "4L22", "3L17"], taunt: ["9M", "7M", "6M", "5M", "4M", "3M"], telekinesis: ["7T", "5M"], @@ -43550,7 +44018,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab trick: ["9M", "7T", "6T", "5T", "4T"], trickroom: ["9M", "7M", "6M", "5M", "4M"], uproar: ["9M", "7T", "7L32", "6T", "6L17", "5T", "5L17", "4T", "4L17", "3L22"], - wish: ["7E", "6E", "5E", "4E"], + waterpulse: ["9M"], + wish: ["9M", "7E", "6E", "5E", "4E"], wrap: ["9M", "7L1", "6L1", "5L1", "5D", "4L1", "3L1", "3S0"], yawn: ["9M", "7L13", "6L13", "5L25", "4L25", "3L25"], zenheadbutt: ["9M", "7T", "6T", "5T", "4T"], @@ -43576,6 +44045,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab chargebeam: ["7M", "6M", "5M", "4M"], closecombat: ["9M", "8M"], confide: ["7M", "6M"], + confuseray: ["9M"], counter: ["3T"], curse: ["8E", "7E", "6E", "5E", "4E", "3E"], cut: ["6M", "5M", "4M", "3M"], @@ -43586,8 +44056,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dreameater: ["7M", "6M", "5M", "4M", "3T"], echoedvoice: ["7M", "6M", "5M"], endure: ["9M", "8M", "4M", "3T"], - facade: ["8M", "7M", "6M", "5M", "4M", "3M"], - falseswipe: ["8M", "7M", "6M", "5M", "4M"], + facade: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], + falseswipe: ["9M", "8M", "7M", "6M", "5M", "4M"], feint: ["8E", "7L1", "6L1", "5L1", "5D", "4L1"], feintattack: ["7E", "6E", "5E", "4E", "3E"], fireblast: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], @@ -43620,8 +44090,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab naturalgift: ["4M"], nightmare: ["3T"], nightslash: ["9M", "8L30", "7L29", "6L29", "5L41", "4L52"], + ominouswind: ["9M"], payback: ["8M", "7M", "6M", "5M", "4M"], perishsong: ["9M", "8L55", "7L1", "7E", "6L1", "6E", "5L65", "5E", "4L65", "3L46", "3S3"], + phantomforce: ["9M"], playrough: ["9M", "8M", "7E", "6E"], protect: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], psychocut: ["8M", "7L37", "6L37", "5L49", "4L60"], @@ -43630,7 +44102,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab pursuit: ["7L10", "6L10", "5L12", "4L20"], quickattack: ["9M", "8L1", "7L1", "6L1", "5L9", "4L12", "3L13"], raindance: ["8M", "7M", "6M", "5M", "4M", "3M"], - razorwind: ["7L49", "6L1", "5L17", "4L17", "3L17", "3S2"], + razorwind: ["9M", "7L49", "6L1", "5L17", "4L17", "3L17", "3S2"], rest: ["8M", "7M", "6M", "5M", "4M", "3M"], retaliate: ["8M", "6M", "5M"], return: ["7M", "6M", "5M", "4M", "3M"], @@ -43644,10 +44116,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab secretpower: ["6M", "4M", "3M"], shadowball: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], shadowclaw: ["9M", "8M", "7M", "6M", "5M", "4M"], + shadowsneak: ["9M"], shockwave: ["7T", "6T", "4M", "3M"], slash: ["9M", "8L25", "7L22", "6L22", "5L28", "4L36", "3L36", "3S3"], sleeptalk: ["8M", "7M", "6M", "5T", "4M", "3T"], - snarl: ["8M", "7M", "6M", "5M"], + snarl: ["9M", "8M", "7M", "6M", "5M"], snatch: ["7T", "6T", "5T", "4M", "3M"], snore: ["8M", "7T", "6T", "5T", "4T", "3T"], spite: ["7T", "6T", "5T", "4T", "3S1", "3S2"], @@ -43795,6 +44268,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lightscreen: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], mimic: ["3T"], naturalgift: ["4M"], + ominouswind: ["9M"], payback: ["8M", "7M", "6M", "5M", "4M"], powdersnow: ["9M", "8L1", "7L1", "6L1", "5L1", "4L1", "3L1"], protect: ["9M", "8M", "8L20", "7M", "7L32", "6M", "6L22", "5M", "5L22", "4M", "4L22", "3M", "3L25"], @@ -43810,6 +44284,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab shadowball: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], sheercold: ["9M", "8L1", "7L1", "6L1", "5L59", "4L59", "3L61"], signalbeam: ["7T", "6T", "5T", "4T"], + skullbash: ["9M"], sleeptalk: ["9M", "8M", "7M", "6M", "5T", "4M", "3T"], snore: ["8M", "7T", "6T", "5T", "4T", "3T"], snowscape: ["9M"], @@ -43885,6 +44360,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ominouswind: ["7L1", "6L22", "5L22", "4T", "4L22"], painsplit: ["9M", "7T", "6T", "5T", "4T"], payback: ["8M", "7M", "6M", "5M", "4M"], + petaldance: ["9M"], phantomforce: ["9M"], poltergeist: ["9M", "8T"], powdersnow: ["9M", "8L1", "7L1", "6L1", "5L1", "4L1"], @@ -43901,6 +44377,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab scaryface: ["9M"], secretpower: ["6M", "4M"], shadowball: ["9M", "8M", "8L61", "7M", "7L42", "6M", "6L42", "5M", "4M"], + sheercold: ["9M"], shockwave: ["7T", "6T", "4M"], signalbeam: ["7T", "6T", "5T", "4T"], sleeptalk: ["9M", "8M", "7M", "6M", "5T", "4M"], @@ -44647,6 +45124,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab fireblast: ["9M", "8M", "7M", "6M", "5M", "4M", "4S2", "3M"], firefang: ["9M", "8M", "7L1", "6L1", "5L1", "4L1"], firespin: ["9M"], + flamecharge: ["9M"], flamethrower: ["9M", "8M", "8L55", "7M", "7L49", "6M", "6L49", "5M", "4M", "3M"], fly: ["9M", "8M", "8L0", "7M", "7L1", "6M", "6L50", "5M", "5L50", "4M", "4L50", "3M", "3L50", "3S0"], focusenergy: ["9M", "8M", "8L46", "7L21", "6L20", "5L20", "4L20", "3L21"], @@ -44686,9 +45164,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rollout: ["4T", "3T"], roost: ["9M", "7M", "6M", "5T", "4M"], round: ["8M", "7M", "6M", "5M"], + scaleshot: ["9M"], scaryface: ["9M", "8M", "8L20", "7L42", "6L42", "5L43", "4L43", "3L47", "3S0"], secretpower: ["6M", "4M", "3M"], shadowclaw: ["9M", "8M", "7M", "6M", "5M", "4M"], + skullbash: ["9M"], sleeptalk: ["9M", "8M", "7M", "6M", "5T", "4M", "3T"], snore: ["8M", "7T", "6T", "5T", "4T", "3T"], steelwing: ["8M", "7M", "6M", "4M", "3M"], @@ -44719,6 +45199,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab beldum: { learnset: { agility: ["9M"], + facade: ["9M"], headbutt: ["9M", "4T"], holdback: ["6S0"], irondefense: ["9M", "8M", "7T", "6T", "6S0", "5T", "4T"], @@ -44775,6 +45256,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab irondefense: ["9M", "8M", "8L58", "7T", "7L47", "6T", "6L47", "5T", "5L40", "4T", "4L40", "3L44"], ironhead: ["9M", "8M", "7T", "6T", "5T", "4T"], lightscreen: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], + magnetbomb: ["9M"], magnetrise: ["9M", "8L12", "7T", "7L1", "6T", "6L1", "5T", "5L1", "4T", "4L1"], metalclaw: ["9M", "8L0", "7L1", "6L1", "5L1", "4L1", "3L20", "3S0"], meteorbeam: ["9M", "8T"], @@ -44844,6 +45326,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab brutalswing: ["9M", "8M"], bulldoze: ["9M", "8M", "7M", "6M", "5M"], bulletpunch: ["9M", "8L1", "7L26", "7S7", "6L26", "5L32", "5S1", "5S2", "4L32", "4S0"], + cometpunch: ["9M"], confide: ["7M", "6M"], confusion: ["9M", "8L1", "7L1", "6L1", "5L1", "4L1", "3L1"], cosmicpower: ["8M"], @@ -44880,6 +45363,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab knockoff: ["9M"], laserfocus: ["7T"], lightscreen: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], + magnetbomb: ["9M"], magnetrise: ["9M", "8L12", "7T", "7L1", "6T", "6L1", "5T", "5L1", "4T", "4L1"], metalclaw: ["9M", "8L1", "7L1", "6L1", "5L1", "4L1", "3L1"], meteorbeam: ["9M", "8T"], @@ -44913,7 +45397,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab selfdestruct: ["9M", "8M", "3T"], shadowball: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], shadowclaw: ["9M"], + shadowpunch: ["9M"], signalbeam: ["7T", "6T", "5T", "4T"], + skullbash: ["9M"], sleeptalk: ["9M", "8M", "7M", "6M", "5T", "4M", "3T"], sludgebomb: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], snore: ["8M", "7T", "6T", "5T", "4T", "3T"], @@ -44925,7 +45411,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab strength: ["6M", "5M", "4M", "3M"], substitute: ["9M", "8M", "7M", "6M", "5M", "4M", "3T"], sunnyday: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - swagger: ["7M", "6M", "5M", "4M", "3T"], + swagger: ["9M", "7M", "6M", "5M", "4M", "3T"], swift: ["9M", "8M", "4T", "3T"], tackle: ["9M", "8L1"], takedown: ["9M", "8L26", "7L1", "6L1", "5L1", "4L1", "3L1"], @@ -45283,7 +45769,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dragondance: ["9M", "8M"], dragonpulse: ["9M", "8M", "8L45", "8S11", "7T", "7L56", "7S7", "7S8", "6T", "6L1", "5T", "5L80", "4M", "4L70"], drainingkiss: ["9M"], - dreameater: ["7M", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "7M", "6M", "5M", "4M", "3T"], dualwingbeat: ["9M", "8T"], earthquake: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], endure: ["9M", "8M", "4M", "3T"], @@ -45313,10 +45799,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mimic: ["3T"], mistball: ["9M", "8L35", "8S11", "7L24", "7S7", "7S8", "7S9", "6L24", "6S6", "5L35", "4L35", "4S3", "4S4", "3L35", "3S0", "3S1", "3S2"], mudslap: ["4T", "3T"], - mysticalfire: ["8M"], + mysticalfire: ["9M", "8M"], naturalgift: ["4M"], outrage: ["9M", "8M", "7T", "6T", "5T", "4T"], protect: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], + psybeam: ["9M"], psychic: ["9M", "9S13", "8M", "8L60", "7M", "7L51", "7S9", "6M", "6L51", "5M", "5L60", "5S5", "4M", "4L65", "3M", "3L40", "3S0", "3S1", "3S2"], psychocut: ["8M"], psychoshift: ["8L75", "7L28", "7S7", "7S8", "6L28", "6S6", "5L50", "5S5", "4L50"], @@ -45324,6 +45811,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab psyshock: ["9M", "8M", "7M", "6M", "5M"], psywave: ["7L1", "6L1", "5L1", "4L1", "3L1"], raindance: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], + razorwind: ["9M"], recover: ["9M", "8L10", "7L32", "6L32", "5L45", "4L45", "3L45", "3S1", "3S2"], reflect: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], reflecttype: ["9M", "9S13", "8L55", "8S10", "7L36", "6L1", "5L70"], @@ -45335,7 +45823,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab roleplay: ["7T", "6T", "5T", "4T"], roost: ["7M", "6M", "5T", "4M"], round: ["8M", "7M", "6M", "5M"], - safeguard: ["8M", "7M", "7L1", "6M", "6L1", "5M", "5L15", "4M", "4L15", "3M", "3L15"], + safeguard: ["9M", "8M", "7M", "7L1", "6M", "6L1", "5M", "5L15", "4M", "4L15", "3M", "3L15"], sandstorm: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], scaleshot: ["9M", "8T"], secretpower: ["6M", "4M", "3M"], @@ -45361,7 +45849,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunder: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], thunderbolt: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], thunderwave: ["9M", "8M", "7M", "6M", "5M", "4M", "3T"], - triattack: ["8M"], + triattack: ["9M", "8M"], trick: ["9M", "8M", "7T", "6T", "5T", "4T"], twister: ["4T"], waterfall: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], @@ -45420,7 +45908,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dragonclaw: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], dragondance: ["9M", "8M", "8L1", "8S11", "7L7", "6L1", "5L55", "5S5", "4L55", "3L50", "3S1", "3S2"], dragonpulse: ["9M", "9S13", "8M", "8L45", "8S11", "7T", "7L56", "7S8", "7S9", "6T", "6L1", "6S7", "5T", "5L80", "4M", "4L70"], - dreameater: ["7M", "6M", "5M", "4M", "3T"], + dreameater: ["9M", "7M", "6M", "5M", "4M", "3T"], dualwingbeat: ["9M", "8T"], earthquake: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], endure: ["9M", "8M", "4M", "3T"], @@ -45434,7 +45922,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab futuresight: ["9M", "8M"], gigaimpact: ["9M", "8M", "7M", "6M", "5M", "4M"], grassknot: ["9M", "8M", "7M", "6M", "5M", "4M"], - healblock: ["7L1", "6L1", "5L5", "4L5"], + healblock: ["9M", "7L1", "6L1", "5L5", "4L5"], healpulse: ["9M", "8L50", "7L16", "6L1", "6S6", "6S7", "5L65", "5S5"], helpinghand: ["9M", "8M", "8L5", "7T", "7L1", "6T", "6L1", "5T", "5L10", "4T", "4L10", "3L10"], honeclaws: ["6M", "5M"], @@ -45450,11 +45938,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab memento: ["9M", "8L70", "7L1", "6L1", "5L85", "4L60", "3L5"], mimic: ["3T"], mudslap: ["4T", "3T"], - mysticalfire: ["8M"], + mysticalfire: ["9M", "8M"], naturalgift: ["4M"], outrage: ["9M", "8M", "7T", "6T", "5T", "4T"], powersplit: ["9M", "8L65", "7L46", "6L1", "5L75"], protect: ["9M", "8M", "7M", "7L4", "6M", "6L4", "5M", "5L25", "4M", "4L25", "4S3", "4S4", "3M", "3L25", "3S0"], + psybeam: ["9M"], psychic: ["9M", "8M", "8L60", "7M", "7L51", "7S10", "6M", "6L51", "6S7", "5M", "5L60", "5S5", "4M", "4L65", "3M", "3L40", "3S0", "3S1", "3S2"], psychicnoise: ["9M"], psychocut: ["8M"], @@ -45463,6 +45952,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab psyshock: ["9M", "8M", "7M", "6M", "5M"], psywave: ["7L1", "6L1", "5L1", "4L1", "3L1"], raindance: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], + razorwind: ["9M"], recover: ["9M", "8L10", "7L32", "6L32", "5L45", "4L45", "3L45", "3S1", "3S2"], reflect: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], refresh: ["7L13", "6L13", "5L30", "4L30", "4S3", "4S4", "3L30", "3S0"], @@ -45472,7 +45962,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab roar: ["9M", "7M", "6M", "5M", "4M", "3M"], roost: ["7M", "6M", "5T", "4M"], round: ["8M", "7M", "6M", "5M"], - safeguard: ["8M", "7M", "7L1", "6M", "6L1", "5M", "5L15", "4M", "4L15", "3M", "3L15"], + safeguard: ["9M", "8M", "7M", "7L1", "6M", "6L1", "5M", "5L15", "4M", "4L15", "3M", "3L15"], sandstorm: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], scaleshot: ["9M", "8T"], secretpower: ["6M", "4M", "3M"], @@ -45497,14 +45987,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunder: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], thunderbolt: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], thunderwave: ["9M", "8M", "7M", "6M", "5M", "4M", "3T"], - triattack: ["8M"], + triattack: ["9M", "8M"], trick: ["9M", "8M", "7T", "6T", "5T", "4T"], - twister: ["4T"], + twister: ["9M", "4T"], waterfall: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], waterpulse: ["9M", "7T", "6T", "4M", "3M"], weatherball: ["9M"], - whirlpool: ["8M", "4M"], + whirlpool: ["9M", "8M", "4M"], + wish: ["9M"], wonderroom: ["8M", "7T", "6T", "5T"], + workup: ["9M"], zenheadbutt: ["9M", "9S13", "8M", "8L40", "8S11", "7T", "7L41", "6T", "6L40", "5T", "5L40", "4T", "4L40", "4S4"], }, eventData: [ @@ -45550,12 +46042,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab frustration: ["7M", "6M", "5M", "4M", "3M"], gigaimpact: ["9M", "8M", "7M", "6M", "5M", "4M"], hail: ["8M", "7M", "6M", "5M", "4M", "3M"], - headbutt: ["4T"], + headbutt: ["9M", "4T"], heavyslam: ["9M", "8M"], helpinghand: ["9M"], hydropump: ["9M", "8M", "8L72", "7L75", "6L75", "5L90", "4L45", "3L45", "3S0", "3S1"], hyperbeam: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], icebeam: ["9M", "9S13", "8M", "8L36", "7M", "7L35", "7S7", "7S8", "7S9", "7S10", "6M", "6L35", "6S5", "6S6", "5M", "5L35", "5S3", "5S4", "4M", "4L35", "4S2", "3M", "3L35", "3S0"], + iciclespear: ["9M"], icywind: ["9M", "8M", "7T", "6T", "5T", "4T", "3T"], ironhead: ["9M", "8M", "7T", "6T", "5T", "4T"], liquidation: ["9M", "8M", "7T"], @@ -45571,11 +46064,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab return: ["7M", "6M", "5M", "4M", "3M"], roar: ["9M", "7M", "6M", "5M", "4M", "3M"], rockslide: ["9M", "8M", "7M", "6M", "5M", "4M", "3T"], - rocksmash: ["6M", "5M", "4M", "3M"], + rocksmash: ["9M", "6M", "5M", "4M", "3M"], rocktomb: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], round: ["8M", "7M", "6M", "5M"], - safeguard: ["8M", "7M", "6M", "5M", "4M", "3M"], - scald: ["8M", "7M", "6M", "5M"], + safeguard: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], + scald: ["9M", "8M", "7M", "6M", "5M"], scaryface: ["9M", "8M", "8L1", "7L5", "6L5", "5L5", "4L5", "3L5"], secretpower: ["6M", "4M", "3M"], sheercold: ["9M", "9S13", "8L45", "7L65", "6L65", "6S6", "5L75", "5S4", "4L60", "3L60", "3S1"], @@ -45586,8 +46079,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab strength: ["6M", "5M", "4M", "3M"], substitute: ["9M", "8M", "7M", "6M", "5M", "4M", "3T"], surf: ["9M", "8M", "8S11", "7M", "6M", "5M", "4M", "3M"], - swagger: ["7M", "6M", "5M", "4M", "3T"], - swift: ["4T", "3T"], + swagger: ["9M", "7M", "6M", "5M", "4M", "3T"], + swift: ["9M", "4T", "3T"], takedown: ["9M"], terablast: ["9M"], thunder: ["9M", "8M", "8S11", "7M", "6M", "6S6", "5M", "5S3", "5S4", "4M", "3M"], @@ -45639,7 +46132,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dragonclaw: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], dragonpulse: ["9M", "8M", "7T", "6T", "5T", "4M"], dragontail: ["7M", "6M", "5M"], - dynamicpunch: ["3T"], + dynamicpunch: ["9M", "3T"], earthpower: ["9M", "8M", "8L9", "7T", "7L15", "7S10", "6T", "6L15", "5T", "5L65", "5S4", "4T", "4L65"], earthquake: ["9M", "9S13", "8M", "8L27", "8S11", "7M", "7L35", "7S7", "7S8", "7S9", "6M", "6L35", "6S5", "5M", "5L35", "5S3", "4M", "4L35", "4S2", "3M", "3L35", "3S0"], endure: ["9M", "8M", "4M", "3T"], @@ -45648,6 +46141,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab fireblast: ["9M", "8M", "8L72", "7M", "7L75", "6M", "6L75", "5M", "5L90", "4M", "4L45", "3M", "3L45", "3S0", "3S1"], firefang: ["9M"], firepunch: ["9M", "8M", "7T", "7S10", "6T", "6S6", "5T", "4T", "3T"], + firespin: ["9M"], fissure: ["9M", "9S13", "8L45", "7L65", "6L65", "5L75", "4L60", "3L60", "3S1"], flamethrower: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], fling: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -45667,7 +46161,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab hyperbeam: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], incinerate: ["6M", "5M"], ironhead: ["9M", "8M", "7T", "6T", "5T", "4T"], - irontail: ["8M", "7T", "6T", "5T", "4M", "3M"], + irontail: ["9M", "8M", "7T", "6T", "5T", "4M", "3M"], lavaplume: ["9M", "8L1", "8S11", "7L20", "6L15", "6S5", "5L15", "4L15"], megakick: ["8M", "3T"], megapunch: ["8M", "3T"], @@ -45677,7 +46171,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mudslap: ["9M", "4T", "3T"], naturalgift: ["4M"], overheat: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - poweruppunch: ["6M"], + powergem: ["9M"], + poweruppunch: ["9M", "6M"], precipiceblades: ["9M", "8L63", "7L45", "7S7", "7S8", "7S9", "7S10", "6L45", "6S5"], protect: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], psychup: ["7M", "6M", "5M", "4M", "3T"], @@ -45692,7 +46187,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocktomb: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], rollout: ["4T", "3T"], round: ["8M", "7M", "6M", "5M"], - safeguard: ["8M", "7M", "6M", "5M", "4M", "3M"], + safeguard: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], sandstorm: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], sandtomb: ["9M"], scaryface: ["9M", "8M", "8L1", "8S11", "7L5", "6L5", "5L5", "4L5", "3L5"], @@ -45756,7 +46251,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bodyslam: ["9M", "8M", "3T"], breakingswipe: ["9M", "8M"], brickbreak: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], - brutalswing: ["8M", "8S9", "7M"], + brutalswing: ["9M", "8M", "8S9", "7M"], bulkup: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], bulldoze: ["9M", "8M", "7M", "6M", "5M"], celebrate: ["6S7"], @@ -45773,6 +46268,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dragonclaw: ["9M", "8M", "7M", "6M", "6S6", "5M", "4M", "4L20", "3M", "3L20"], dragondance: ["9M", "8M", "8L18", "7L60", "7S8", "6L60", "6S4", "6S6", "5L60", "5S2", "4L30", "3L30"], dragonpulse: ["9M", "9S11", "8M", "8L36", "7T", "7L50", "7S8", "6T", "6L50", "6S4", "6S5", "5T", "5L90", "5S2", "5S3", "4M", "4L75"], + dragonrush: ["9M"], dragontail: ["9M", "7M", "6M", "5M"], earthpower: ["9M", "8M", "7T", "6T", "5T", "4T"], earthquake: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], @@ -45801,7 +46297,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab icywind: ["9M", "8M", "7T", "6T", "5T", "4T", "3T"], incinerate: ["6M", "5M"], ironhead: ["9M", "8M", "7T", "6T", "5T", "4T"], - irontail: ["8M", "7T", "6T", "5T", "4M", "3M"], + irontail: ["9M", "8M", "7T", "6T", "5T", "4M", "3M"], meteorbeam: ["9M", "8T"], mimic: ["3T"], mudslap: ["4T", "3T"], @@ -45850,6 +46346,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab waterfall: ["9M", "8M", "7M", "6M", "5M", "4M", "3M"], waterpulse: ["7T", "6T", "4M", "3M"], whirlpool: ["9M", "8M", "4M"], + whirlwind: ["9M"], wildcharge: ["9M"], }, eventData: [ @@ -46149,9 +46646,15 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ], eventOnly: true, }, - deoxysattack: { eventOnly: true }, - deoxysdefense: { eventOnly: true }, - deoxysspeed: { eventOnly: true }, + deoxysattack: { + eventOnly: true, + }, + deoxysdefense: { + eventOnly: true, + }, + deoxysspeed: { + eventOnly: true, + }, turtwig: { learnset: { absorb: ["9M", "7L9", "6L9", "5L9", "5S0", "5S1", "4L9"], @@ -47079,13 +47582,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab frustration: ["7M", "6M", "5M", "4M"], furyattack: ["9E", "7E", "6E", "5E", "4E"], growl: ["9M", "7L1", "6L1", "5L1", "4L1", "4S0"], + gust: ["9M"], heatwave: ["9M", "7T", "6T", "5T", "4T"], helpinghand: ["9M"], hurricane: ["9M"], + knockoff: ["9M"], mirrormove: ["7E", "6E"], mudslap: ["4T"], naturalgift: ["4M"], ominouswind: ["4T"], + peck: ["9M"], pluck: ["5M", "4M"], protect: ["9M", "7M", "6M", "5M", "4M"], pursuit: ["7E", "6E", "5E", "4E"], @@ -47115,7 +47621,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab uturn: ["9M", "7M", "6M", "5M", "4M"], whirlwind: ["9M", "7L21", "6L21", "5L21", "4L21"], wingattack: ["9M", "7L9", "6L9", "5L9", "4L9"], - workup: ["7M", "5M"], + workup: ["9M", "7M", "5M"], }, eventData: [ { generation: 4, level: 1, gender: "M", nature: "Mild", moves: ["tackle", "growl"], pokeball: "pokeball" }, @@ -47145,12 +47651,15 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab fly: ["9M", "7M", "6M", "5M", "4M"], frustration: ["7M", "6M", "5M", "4M"], growl: ["9M", "7L1", "6L1", "5L1", "4L1"], + gust: ["9M"], heatwave: ["9M", "7T", "6T", "5T", "4T"], helpinghand: ["9M"], hurricane: ["9M"], + knockoff: ["9M"], mudslap: ["4T"], naturalgift: ["4M"], - ominouswind: ["4T"], + ominouswind: ["9M", "4T"], + peck: ["9M"], pluck: ["5M", "4M"], protect: ["9M", "7M", "6M", "5M", "4M"], quickattack: ["9M", "7L1", "6L1", "5L1", "4L1"], @@ -47161,6 +47670,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab roost: ["7M", "6M", "5T", "4M"], round: ["7M", "6M", "5M"], secretpower: ["6M", "4M"], + skullbash: ["9M"], + skyattack: ["9M"], sleeptalk: ["9M", "7M", "6M", "5T", "4M"], snore: ["7T", "6T", "5T", "4T"], steelwing: ["7M", "6M", "4M"], @@ -47176,9 +47687,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab twister: ["4T"], uproar: ["9M", "7T", "6T"], uturn: ["9M", "7M", "6M", "5M", "4M"], + vacuumwave: ["9M"], whirlwind: ["9M", "7L23", "6L23", "5L23", "4L23"], wingattack: ["9M", "7L9", "6L9", "5L9", "5D", "4L9"], - workup: ["7M", "5M"], + workup: ["9M", "7M", "5M"], }, encounters: [ { generation: 4, level: 4 }, @@ -47192,7 +47704,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab aircutter: ["9M", "4T"], airslash: ["9M"], attract: ["7M", "6M", "5M", "4M"], + blazekick: ["9M"], bravebird: ["9M", "7L49", "6L49", "5L49", "4L49"], + brickbreak: ["9M"], + bulkup: ["9M"], captivate: ["4M"], closecombat: ["9M", "7L1", "6L34", "5L34", "4L34"], confide: ["7M", "6M"], @@ -47207,47 +47722,57 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab featherdance: ["9M"], finalgambit: ["9M", "7L57", "6L57", "5L57"], fly: ["9M", "7M", "6M", "5M", "4M"], + focusblast: ["9M"], frustration: ["7M", "6M", "5M", "4M"], gigaimpact: ["9M", "7M", "6M", "5M", "4M"], growl: ["9M", "7L1", "6L1", "5L1", "4L1"], + gust: ["9M"], heatwave: ["9M", "7T", "6T", "5T", "4T"], helpinghand: ["9M"], hurricane: ["9M"], hyperbeam: ["9M", "7M", "6M", "5M", "4M"], + knockoff: ["9M"], laserfocus: ["7T"], + lowsweep: ["9M"], mudslap: ["4T"], naturalgift: ["4M"], - ominouswind: ["4T"], + ominouswind: ["9M", "4T"], + outrage: ["9M"], + peck: ["9M"], pluck: ["5M", "4M"], protect: ["9M", "7M", "6M", "5M", "4M"], quickattack: ["9M", "7L1", "6L1", "5L1", "4L1"], raindance: ["9M", "7M", "6M", "5M", "4M"], + razorwind: ["9M"], rest: ["9M", "7M", "6M", "5M", "4M"], retaliate: ["6M", "5M"], return: ["7M", "6M", "5M", "4M"], roost: ["7M", "6M", "5T", "4M"], round: ["7M", "6M", "5M"], secretpower: ["6M", "4M"], - skyattack: ["7T", "6T", "5T", "4T"], + skullbash: ["9M"], + skyattack: ["9M", "7T", "6T", "5T", "4T"], sleeptalk: ["9M", "7M", "6M", "5T", "4M"], snore: ["7T", "6T", "5T", "4T"], steelwing: ["7M", "6M", "4M"], strugglebug: ["9M"], substitute: ["9M", "7M", "6M", "5M", "4M"], sunnyday: ["9M", "7M", "6M", "5M", "4M"], - swagger: ["7M", "6M", "5M", "4M"], + swagger: ["9M", "7M", "6M", "5M", "4M"], swift: ["9M", "4T"], tackle: ["9M", "7L1", "6L1", "5L1", "4L1"], tailwind: ["9M", "7T", "6T", "5T", "4T"], takedown: ["9M", "7L33", "6L33", "5L33", "4L33"], terablast: ["9M"], thief: ["9M", "7M", "6M", "5M", "4M"], + torment: ["9M"], twister: ["4T"], uproar: ["9M", "7T", "6T"], uturn: ["9M", "7M", "6M", "5M", "4M"], + vacuumwave: ["9M"], whirlwind: ["9M", "7L23", "6L23", "5L23", "4L23"], wingattack: ["9M", "7L1", "6L1", "5L1", "4L1"], - workup: ["7M", "5M"], + workup: ["9M", "7M", "5M"], }, }, bidoof: { @@ -49241,7 +49766,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab captivate: ["4M"], chargebeam: ["7M", "6M", "5M", "4M"], charm: ["9M", "8M", "8L24", "7L46", "6L46", "5L46", "4L43"], - circlethrow: ["8E", "7E", "6E", "5E"], + circlethrow: ["9M", "8E", "7E", "6E", "5E"], closecombat: ["9M"], confide: ["7M", "6M"], copycat: ["8E", "7E", "6E", "5E"], @@ -49252,18 +49777,18 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab defensecurl: ["8L4", "7L1", "6L1", "5L1", "4L1"], dig: ["9M", "8M", "6M", "5M", "4M"], dizzypunch: ["7L36", "6L36", "5L36", "4L36"], - doublehit: ["8E", "7E", "6E", "5E", "4E"], + doublehit: ["9M", "8E", "7E", "6E", "5E", "4E"], doublekick: ["8L20"], doubleteam: ["7M", "6M", "5M", "4M"], drainingkiss: ["9M"], - drainpunch: ["8M", "7T", "6T", "5T", "5D", "4M"], + drainpunch: ["9M", "8M", "7T", "6T", "5T", "5D", "4M"], dynamicpunch: ["9M"], encore: ["8M", "7E", "6E", "5E", "4E"], endeavor: ["7T", "6T", "5T", "4T"], endure: ["9M", "8M", "7L6", "6L6", "5L6", "4M", "4L6"], entrainment: ["8L40", "7L50", "6L50", "5L53"], - facade: ["8M", "7M", "6M", "5M", "4M"], - fakeout: ["8E", "7E", "6E", "5E", "5D", "4E"], + facade: ["9M", "8M", "7M", "6M", "5M", "4M"], + fakeout: ["9M", "8E", "7E", "6E", "5E", "5D", "4E"], faketears: ["8M", "7E", "6E", "5E", "4E"], firepunch: ["9M", "8M", "7T", "7E", "6T", "6E", "5T", "5E", "4E"], flail: ["8E", "7E", "6E", "5E", "4E"], @@ -49284,7 +49809,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab jumpkick: ["7L23", "6L23", "5L23", "4L23"], lastresort: ["7T", "6T", "5T", "4T"], lowkick: ["8M", "7T", "7E", "6T", "6E", "5T", "5E", "4T", "4E"], - lowsweep: ["8M"], + lowsweep: ["9M", "8M"], magiccoat: ["7T", "6T", "5T", "4T"], megakick: ["8M"], megapunch: ["8M"], @@ -49322,7 +49847,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderbolt: ["9M", "8M", "7M", "6M", "5M", "4M"], thunderpunch: ["9M", "8M", "7T", "7E", "6T", "6E", "5T", "5E", "4E"], thunderwave: ["9M", "8M", "7M", "6M", "5M", "4M"], - tripleaxel: ["8T"], + tripleaxel: ["9M", "8T"], uproar: ["8M", "7T", "6T", "5T", "4T"], waterpulse: ["7T", "6T", "4M"], workup: ["9M", "8M", "7M", "5M"], @@ -49344,7 +49869,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab captivate: ["4M"], chargebeam: ["7M", "6M", "5M", "4M"], charm: ["9M", "8M", "8L24", "7L46", "6L46", "5L46", "4L43"], + circlethrow: ["9M"], closecombat: ["9M", "8M"], + cometpunch: ["9M"], confide: ["7M", "6M"], cosmicpower: ["8M"], cottonguard: ["9M"], @@ -49353,16 +49880,18 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab defensecurl: ["8L1", "7L1", "6L1", "5L1", "4L1"], dig: ["9M", "8M", "6M", "5M", "4M"], dizzypunch: ["7L36", "6L36", "5L36", "4L36"], + doublehit: ["9M"], doublekick: ["8L20"], doubleteam: ["9M", "7M", "6M", "5M", "4M"], drainingkiss: ["9M"], - drainpunch: ["8M", "7T", "6T", "5T", "4M"], + drainpunch: ["9M", "8M", "7T", "6T", "5T", "4M"], dynamicpunch: ["9M"], encore: ["8M"], endeavor: ["7T", "6T", "5T", "4T"], endure: ["9M", "8M", "7L6", "6L6", "5L6", "4M", "4L6"], entrainment: ["8L40", "7L53", "6L53", "5L53"], - facade: ["8M", "7M", "6M", "5M", "4M"], + facade: ["9M", "8M", "7M", "6M", "5M", "4M"], + fakeout: ["9M"], faketears: ["8M"], firepunch: ["9M", "8M", "7T", "6T", "5T", "4T"], flatter: ["8L44"], @@ -49388,7 +49917,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab laserfocus: ["7T"], lastresort: ["7T", "6T", "5T", "4T"], lowkick: ["8M", "7T", "6T", "5T", "4T"], - lowsweep: ["8M", "7M", "6M", "5M"], + lowsweep: ["9M", "8M", "7M", "6M", "5M"], machpunch: ["9M"], magiccoat: ["8L1", "7T", "7L1", "6T", "6L1", "5T", "5L1", "4T", "4L1"], megakick: ["8M"], @@ -49428,7 +49957,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderbolt: ["9M", "8M", "7M", "6M", "5M", "4M"], thunderpunch: ["9M", "8M", "7T", "6T", "5T", "4T"], thunderwave: ["9M", "8M", "7M", "6M", "5M", "4M"], - tripleaxel: ["8T"], + tripleaxel: ["9M", "8T"], uproar: ["8M", "7T", "6T", "5T", "4T"], uturn: ["9M", "8M"], waterpulse: ["7T", "6T", "4M"], @@ -50320,7 +50849,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dragonrage: ["7L1", "6L1", "5L1", "4L1"], dragonrush: ["9M", "8L82", "7L55", "6L55", "6S4", "5L55", "4L55"], dragontail: ["9M", "7M", "6M", "5M"], - dualchop: ["8L1", "7T", "7L1", "6T", "6L24", "5T", "5L24"], + dualchop: ["9M", "8L1", "7T", "7L1", "6T", "6L24", "5T", "5L24"], earthpower: ["9M", "8M", "7T", "6T", "5T", "4T"], earthquake: ["9M", "8M", "7M", "6M", "6S4", "5M", "5S0", "4M"], endure: ["9M", "8M", "4M"], @@ -50345,12 +50874,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab metalclaw: ["9M"], mudshot: ["9M", "8M"], mudslap: ["4T"], + nastyplot: ["9M"], naturalgift: ["4M"], outrage: ["9M", "8M", "7T", "6T", "5T", "5S0", "5S1", "4T"], poisonjab: ["9M", "8M", "7M", "6M", "5M", "4M"], powergem: ["9M"], protect: ["9M", "8M", "7M", "6M", "5M", "4M"], raindance: ["9M", "8M", "7M", "6M", "5M", "4M"], + razorwind: ["9M"], rest: ["9M", "8M", "7M", "6M", "5M", "4M"], return: ["7M", "6M", "5M", "4M"], roar: ["7M", "6M", "5M", "4M"], @@ -50386,6 +50917,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab terablast: ["9M"], thunderfang: ["9M"], twister: ["4T"], + vacuumwave: ["9M"], whirlpool: ["8M", "4M"], }, eventData: [ @@ -50409,7 +50941,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bulldoze: ["9M", "8M", "7M", "6M", "5M"], bulletpunch: ["9M", "9E", "8E", "7E", "6E", "5E", "5D", "4E", "4S0"], captivate: ["4M"], - circlethrow: ["9E", "8E", "7E", "6E", "5E"], + circlethrow: ["9M", "9E", "8E", "7E", "6E", "5E"], closecombat: ["9M"], coaching: ["9M", "8T"], confide: ["7M", "6M"], @@ -50504,7 +51036,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab agility: ["9M", "8M"], attract: ["8M", "7M", "6M", "5M", "4M"], aurasphere: ["9M", "9S7", "8M", "8L0", "8S6", "7L1", "7S5", "6L1", "6S4", "5L51", "4L37", "4S0"], - blazekick: ["8M", "4S1"], + blazekick: ["9M", "8M", "4S1"], bodyslam: ["9M"], bonerush: ["9M", "8L36", "7L29", "6L29", "5L19", "4L19", "4S1"], brickbreak: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -50513,6 +51045,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bulletpunch: ["9M", "9S7", "8S6", "5S2", "5S3"], calmmind: ["9M", "8M", "8L24", "7M", "7L47", "6M", "6L47", "5M", "5L47", "4M"], captivate: ["4M"], + circlethrow: ["9M"], closecombat: ["9M", "8M", "8L60", "7L55", "6L1", "6S4", "5L55", "5S3", "4L42"], coaching: ["9M", "8T"], confide: ["7M", "6M"], @@ -50525,7 +51058,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleteam: ["7M", "6M", "5M", "4M"], dragonpulse: ["9M", "8M", "8L52", "7T", "7L60", "7S5", "6T", "6L1", "5T", "5L60", "4M", "4L47", "4S0"], drainpunch: ["9M", "8M", "7T", "6T", "5T", "4M"], - dualchop: ["7T", "6T", "5T"], + dualchop: ["9M", "7T", "6T", "5T"], earthquake: ["9M", "8M", "7M", "6M", "5M", "4M"], endure: ["9M", "8M", "4M"], extremespeed: ["9M", "8L56", "7L65", "7S5", "6L1", "5L65", "4L51"], @@ -51491,7 +52024,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab fling: ["9M", "8M", "7M", "6M", "5M", "4M"], focusblast: ["9M", "8M", "7M", "6M", "5M", "4M"], focuspunch: ["9M", "7T", "6T", "4M"], - frostbreath: ["7M", "6M", "5M"], + frostbreath: ["9M", "7M", "6M", "5M"], frustration: ["7M", "6M", "5M", "4M"], gigadrain: ["9M", "8M", "7T", "6T", "5T", "4M"], gigaimpact: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -51505,6 +52038,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab helpinghand: ["9M"], hyperbeam: ["9M", "8M", "7M", "6M", "5M", "4M"], icebeam: ["9M", "8M", "7M", "6M", "5M", "4M"], + icehammer: ["9M"], icepunch: ["9M", "8M", "8L0", "7T", "7L1", "6T", "6L1", "5T", "5L1", "4T", "4L1"], iceshard: ["9M", "8L15", "7L26", "6L26", "5L26", "4L26"], icespinner: ["9M"], @@ -51567,18 +52101,20 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, rotom: { learnset: { + agility: ["9M"], allyswitch: ["8M", "7T"], astonish: ["9M", "8L1", "7L1", "6L1", "6S1", "5L1", "5S0", "4L1"], charge: ["9M", "8L15", "7L1", "6L1", "5L57", "4L43"], chargebeam: ["9M", "7M", "6M", "5M", "4M"], confide: ["7M", "7S2", "6M"], confuseray: ["9M", "8L10", "7L1", "6L1", "5L1", "4L1"], + curse: ["9M"], darkpulse: ["9M", "8M", "7M", "6M", "5T", "4M"], defog: ["7T"], disarmingvoice: ["7S2"], discharge: ["9M", "8L50", "7L1", "6L1", "5L64", "4L50"], doubleteam: ["9M", "8L1", "7M", "7L15", "6M", "6L15", "5M", "5L15", "4M", "4L15"], - dreameater: ["7M", "6M", "5M", "4M"], + dreameater: ["9M", "7M", "6M", "5M", "4M"], eerieimpulse: ["9M", "8M"], electricterrain: ["9M", "8M"], electroball: ["9M", "8M", "8L20", "7L43", "6L43", "5L43"], @@ -51590,16 +52126,21 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab frustration: ["7M", "6M", "5M", "4M"], helpinghand: ["9M", "8M"], hex: ["9M", "8M", "8L35", "7L50", "6L50", "5L50"], + hyperbeam: ["9M"], hypervoice: ["9M", "8M"], lightscreen: ["9M", "8M", "7M", "6M", "5M", "4M"], + magnetbomb: ["9M"], mudslap: ["4T"], nastyplot: ["9M", "8M"], naturalgift: ["4M"], nightshade: ["9M"], - ominouswind: ["7L29", "6L29", "5L29", "4T", "4L29"], + ominouswind: ["9M", "7L29", "6L29", "5L29", "4T", "4L29"], painsplit: ["9M", "7T", "6T", "5T", "4T"], + paraboliccharge: ["9M"], + partingshot: ["9M"], poltergeist: ["9M", "8T"], protect: ["9M", "8M", "7M", "6M", "5M", "4M"], + psybeam: ["9M"], psychup: ["7M", "6M", "5M", "4M"], raindance: ["9M", "8M", "7M", "6M", "5M", "4M"], reflect: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -51621,6 +52162,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab sunnyday: ["9M", "8M", "7M", "6M", "5M", "4M"], swagger: ["7M", "6M", "5M", "4M"], swift: ["9M", "8M", "4T"], + taunt: ["9M"], telekinesis: ["7T", "5M"], terablast: ["9M"], thief: ["9M", "8M", "7M", "6M", "5M", "4M"], @@ -51641,27 +52183,27 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, rotomheat: { learnset: { - overheat: ["9R", "8R", "7R", "6R", "5R", "4R"], + overheat: ["9M", "9R", "8R", "7R", "6R", "5R", "4R"], }, }, rotomwash: { learnset: { - hydropump: ["9R", "8R", "7R", "6R", "5R", "4R"], + hydropump: ["9M", "9R", "8R", "7R", "6R", "5R", "4R"], }, }, rotomfrost: { learnset: { - blizzard: ["9R", "8R", "7R", "6R", "5R", "4R"], + blizzard: ["9M", "9R", "8R", "7R", "6R", "5R", "4R"], }, }, rotomfan: { learnset: { - airslash: ["9R", "8R", "7R", "6R", "5R", "4R"], + airslash: ["9M", "9R", "8R", "7R", "6R", "5R", "4R"], }, }, rotommow: { learnset: { - leafstorm: ["9R", "8R", "7R", "6R", "5R", "4R"], + leafstorm: ["9M", "9R", "8R", "7R", "6R", "5R", "4R"], }, }, uxie: { @@ -52110,7 +52652,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ], eventOnly: true, }, - dialgaorigin: { eventOnly: true }, + dialgaorigin: { + eventOnly: true, + }, palkia: { learnset: { aerialace: ["9M", "7M", "6M", "5M", "4M"], @@ -52230,7 +52774,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ], eventOnly: true, }, - palkiaorigin: { eventOnly: true }, + palkiaorigin: { + eventOnly: true, + }, heatran: { learnset: { ancientpower: ["9M", "8L12", "7L1", "6L1", "5L1", "4T", "4L1", "4S2"], @@ -52256,6 +52802,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab fireblast: ["9M", "8M", "7M", "6M", "5M", "4M"], firefang: ["9M", "8M", "8L18", "7L17", "6L17", "5L17", "4L17"], firespin: ["9M", "8M", "8L1", "7L1", "7S5", "7S6", "6L1", "5L57", "5S3", "4L57", "4S0"], + firstimpression: ["9M"], flamecharge: ["9M", "7M", "6M", "5M"], flamethrower: ["9M", "8M", "7M", "6M", "5M", "4M"], flareblitz: ["9M"], @@ -52546,7 +53093,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ], eventOnly: true, }, - giratinaorigin: { eventOnly: true }, + giratinaorigin: { + eventOnly: true, + }, cresselia: { learnset: { allyswitch: ["9M", "8M", "7T"], @@ -52812,10 +53361,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab aerialace: ["7M", "6M", "5M", "4M"], blizzard: ["9M", "7M", "6M", "5M", "4M"], brickbreak: ["9M", "7M", "6M", "5M", "4M"], + brutalswing: ["9M"], calmmind: ["9M", "7M", "6M", "5M", "4M"], chargebeam: ["9M", "7M", "6M", "5M", "4M"], confide: ["7M", "6M"], confuseray: ["9M"], + confusion: ["9M"], + crunch: ["9M"], curse: ["9M"], cut: ["6M", "5M", "4M"], darkpulse: ["9M", "9S10", "7M", "7L93", "6M", "6L93", "6S5", "5T", "5L93", "4M", "4L93", "4S2"], @@ -52834,6 +53386,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab focuspunch: ["9M", "7T", "6T", "4M"], foulplay: ["9M", "7T", "6T", "5T"], frustration: ["7M", "6M", "5M", "4M"], + futuresight: ["9M"], gigaimpact: ["9M", "7M", "6M", "5M", "4M"], haze: ["9M", "7L57", "6L57", "5L57", "4L57"], headbutt: ["4T"], @@ -52841,6 +53394,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab hyperbeam: ["9M", "7M", "6M", "5M", "4M"], hypnosis: ["9M", "9S10", "7L20", "6L20", "5L20", "4L20", "4S0", "4S1", "4S3"], icebeam: ["9M", "7M", "6M", "5M", "4M"], + iciclespear: ["9M"], icywind: ["9M", "7T", "6T", "5T", "4T"], incinerate: ["6M", "5M"], knockoff: ["9M", "7T", "6T", "5T", "4T"], @@ -52851,18 +53405,20 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab naturalgift: ["4M"], nightmare: ["7L38", "7S7", "6L38", "6S6", "5L38", "5S4", "4L38", "4S0", "4S1", "4S3"], nightshade: ["9M", "4L1"], - ominouswind: ["7L1", "7S7", "6L1", "6S6", "5L1", "5S4", "4T", "4L1"], + ominouswind: ["9M", "7L1", "7S7", "6L1", "6S6", "5L1", "5S4", "4T", "4L1"], payback: ["7M", "6M", "5M", "4M"], - phantomforce: ["6S5"], + phantomforce: ["9M", "6S5"], poisonjab: ["9M", "7M", "6M", "5M", "4M"], poweruppunch: ["6M"], protect: ["9M", "7M", "6M", "5M", "4M"], + psybeam: ["9M"], psychic: ["9M", "7M", "6M", "5M", "4M"], psychup: ["9M", "7M", "6M", "5M", "4M"], psyshock: ["9M"], pursuit: ["4L29", "4S0"], quickattack: ["9M", "7L11", "6L11", "5L11", "4L11", "4S0"], raindance: ["9M", "7M", "6M", "5M", "4M"], + razorwind: ["9M"], rest: ["9M", "7M", "6M", "5M", "4M"], retaliate: ["6M", "5M"], return: ["7M", "6M", "5M", "4M"], @@ -52876,6 +53432,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab secretpower: ["6M", "4M"], shadowball: ["9M", "9S10", "7M", "6M", "5M", "4M", "4S2"], shadowclaw: ["9M", "7M", "6M", "5M", "4M"], + shadowpunch: ["9M"], + shadowsneak: ["9M"], shockwave: ["7T", "6T", "4M"], sleeptalk: ["9M", "7M", "6M", "5T", "4M"], sludgebomb: ["9M", "7M", "6M", "5M", "4M"], @@ -52896,10 +53454,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thief: ["9M", "7M", "6M", "5M", "4M"], throatchop: ["9M", "7T"], thunder: ["9M", "7M", "6M", "5M", "4M"], - thunderbolt: ["7M", "6M", "5M", "4M"], + thunderbolt: ["9M", "7M", "6M", "5M", "4M"], thunderwave: ["9M", "7M", "6M", "5M", "4M"], - torment: ["7M", "6M", "5M", "4M"], + torment: ["9M", "7M", "6M", "5M", "4M"], trick: ["9M", "7T", "6T", "5T", "4T"], + vacuumwave: ["9M"], willowisp: ["9M", "7M", "6M", "5M", "4M"], wonderroom: ["7T", "6T", "5T"], xscissor: ["9M", "7M", "6M", "5M", "4M"], @@ -53004,7 +53563,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ], eventOnly: true, }, - shayminsky: { eventOnly: true }, + shayminsky: { + eventOnly: true, + }, arceus: { learnset: { acidspray: ["9M"], @@ -53192,23 +53753,57 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ], eventOnly: true, }, - arceusbug: { eventOnly: true }, - arceusdark: { eventOnly: true }, - arceusdragon: { eventOnly: true }, - arceuselectric: { eventOnly: true }, - arceusfairy: { eventOnly: true }, - arceusfighting: { eventOnly: true }, - arceusfire: { eventOnly: true }, - arceusflying: { eventOnly: true }, - arceusghost: { eventOnly: true }, - arceusgrass: { eventOnly: true }, - arceusground: { eventOnly: true }, - arceusice: { eventOnly: true }, - arceuspoison: { eventOnly: true }, - arceuspsychic: { eventOnly: true }, - arceusrock: { eventOnly: true }, - arceussteel: { eventOnly: true }, - arceuswater: { eventOnly: true }, + arceusbug: { + eventOnly: true, + }, + arceusdark: { + eventOnly: true, + }, + arceusdragon: { + eventOnly: true, + }, + arceuselectric: { + eventOnly: true, + }, + arceusfairy: { + eventOnly: true, + }, + arceusfighting: { + eventOnly: true, + }, + arceusfire: { + eventOnly: true, + }, + arceusflying: { + eventOnly: true, + }, + arceusghost: { + eventOnly: true, + }, + arceusgrass: { + eventOnly: true, + }, + arceusground: { + eventOnly: true, + }, + arceusice: { + eventOnly: true, + }, + arceuspoison: { + eventOnly: true, + }, + arceuspsychic: { + eventOnly: true, + }, + arceusrock: { + eventOnly: true, + }, + arceussteel: { + eventOnly: true, + }, + arceuswater: { + eventOnly: true, + }, victini: { learnset: { batonpass: ["8M"], @@ -53749,8 +54344,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab brickbreak: ["9M", "7M", "6M", "5M"], bulkup: ["9M", "7M", "6M", "5M"], bulldoze: ["9M", "7M", "6M", "5M"], + circlethrow: ["9M"], closecombat: ["9M"], coaching: ["9M"], + cometpunch: ["9M"], confide: ["7M", "6M"], covet: ["7T", "6T", "5T"], curse: ["9M"], @@ -53759,6 +54356,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleedge: ["9M"], doubleteam: ["9M", "7M", "6M", "5M"], drainpunch: ["9M"], + dualchop: ["9M"], earthquake: ["9M", "7M", "6M", "5M"], echoedvoice: ["7M", "6M", "5M"], ember: ["9M", "7L1", "6L1", "5L1"], @@ -53822,8 +54420,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab smokescreen: ["9M"], snore: ["7T", "6T", "5T"], solarbeam: ["9M", "7M", "6M", "5M"], + solarblade: ["9M"], stompingtantrum: ["9M", "7T"], stoneedge: ["9M", "7M", "6M", "5M"], + stormthrow: ["9M"], strength: ["6M", "5M"], substitute: ["9M", "7M", "6M", "5M"], sunnyday: ["9M", "7M", "6M", "5M"], @@ -53837,6 +54437,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab terablast: ["9M"], thunderpunch: ["9M", "7T", "6T", "5T"], trailblaze: ["9M"], + vacuumwave: ["9M"], wildcharge: ["9M", "7M", "6M", "5M", "5S0"], willowisp: ["9M", "7M", "6M", "5M"], workup: ["9M", "7M", "5M"], @@ -54178,7 +54779,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleteam: ["9M", "7M", "6M", "5M"], endeavor: ["7T", "6T", "5T"], endure: ["9M"], - facade: ["7M", "6M", "5M"], + facade: ["9M", "7M", "6M", "5M"], flail: ["7E", "6E", "5E"], fling: ["7M", "6M", "5M"], focusenergy: ["9M", "7L26"], @@ -54208,7 +54809,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab sandattack: ["7L13", "6L13", "5L13"], screech: ["7E", "6E", "5E"], secretpower: ["6M"], - seedbomb: ["7T", "6T", "5T"], + seedbomb: ["9M", "7T", "6T", "5T"], shadowball: ["9M", "7M", "6M", "5M"], shockwave: ["7T", "6T"], slam: ["7L41", "6L36", "5L36"], @@ -54248,7 +54849,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dreameater: ["7M", "6M", "5M"], endeavor: ["7T", "6T", "5T"], endure: ["9M"], - facade: ["7M", "6M", "5M"], + facade: ["9M", "7M", "6M", "5M"], firepunch: ["9M", "7T", "6T", "5T"], flamethrower: ["9M", "7M", "6M", "5M"], flash: ["6M", "5M"], @@ -54287,10 +54888,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["7M", "6M", "5M"], sandattack: ["7L13", "6L13", "5L13"], secretpower: ["6M"], - seedbomb: ["7T", "6T", "5T"], + seedbomb: ["9M", "7T", "6T", "5T"], shadowball: ["9M", "7M", "6M", "5M"], shockwave: ["7T", "6T"], signalbeam: ["7T", "6T", "5T"], + skullbash: ["9M"], slam: ["7L50", "6L43", "5L43"], sleeptalk: ["7M", "6M", "5T"], snore: ["7T", "6T", "5T"], @@ -54433,8 +55035,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab workup: ["8M", "8L1", "7M", "7L20", "6L20", "5M", "5L20"], }, encounters: [ - { generation: 5, level: 20, isHidden: true - }, + { generation: 5, level: 20, isHidden: true }, ], }, stoutland: { @@ -54506,47 +55107,54 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab purrloin: { learnset: { aerialace: ["7M", "6M", "5M"], + agility: ["9M"], assist: ["7L6", "6L6", "5L6"], assurance: ["8M", "8L21", "7L28", "6L28", "5L28"], attract: ["8M", "7M", "6M", "5M"], batonpass: ["8M"], + bite: ["9M"], captivate: ["7L33", "6L33", "5L33"], charm: ["8M", "7E", "6E", "5E"], confide: ["7M", "6M"], copycat: ["8E", "7E", "6E"], covet: ["8E", "7T", "7E", "6T", "6E", "5T", "5E"], cut: ["6M", "5M"], - darkpulse: ["8M", "7M", "6M", "5T"], - doubleteam: ["8E", "7M", "6M", "5M"], + darkpulse: ["9M", "8M", "7M", "6M", "5T"], + doublehit: ["9M"], + doubleteam: ["9M", "8E", "7M", "6M", "5M"], dreameater: ["7M", "6M", "5M"], echoedvoice: ["7M", "6M", "5M"], embargo: ["7M", "6M", "5M"], encore: ["8M", "7E", "6E", "5E"], - endure: ["8M"], - facade: ["8M", "7M", "6M", "5M"], - fakeout: ["8L5", "7L21", "6L21", "5L21"], - faketears: ["8M", "7E", "6E", "5E"], + endure: ["9M", "8M"], + facade: ["9M", "8M", "7M", "6M", "5M"], + fakeout: ["9M", "8L5", "7L21", "6L21", "5L21"], + faketears: ["9M", "8M", "7E", "6E", "5E"], feintattack: ["7E", "6E", "5E"], + firstimpression: ["9M"], foulplay: ["8M", "7T", "7E", "6T", "6E", "5T", "5E"], frustration: ["7M", "6M", "5M"], furyswipes: ["8L12", "7L12", "6L12", "5L12"], grassknot: ["8M", "7M", "6M", "5M"], - growl: ["8L1", "7L3", "6L3", "5L3"], - gunkshot: ["8M", "7T", "6T", "5T"], + growl: ["9M", "8L1", "7L3", "6L3", "5L3"], + gunkshot: ["9M", "8M", "7T", "6T", "5T"], honeclaws: ["8L24", "7L24", "6M", "6L24", "5M", "5L24"], - hypervoice: ["8M", "7T", "6T", "5T"], - irontail: ["8M", "7T", "6T", "5T"], - knockoff: ["7T", "6T", "5T"], + hypervoice: ["9M", "8M", "7T", "6T", "5T"], + irontail: ["9M", "8M", "7T", "6T", "5T"], + knockoff: ["9M", "7T", "6T", "5T"], lashout: ["8T"], - nastyplot: ["8M", "8L32", "7L42", "6L42", "5L42"], - nightslash: ["8L36", "7L37", "6L37", "5L37"], + lick: ["9M"], + mimic: ["9M"], + nastyplot: ["9M", "8M", "8L32", "7L42", "6L42", "5L42"], + nightslash: ["9M", "8L36", "7L37", "6L37", "5L37"], + partingshot: ["9M"], payback: ["8M", "7M", "6M", "5M"], - payday: ["8M", "7E", "6E", "5E"], - playrough: ["8M", "8L40", "7L49", "6L49"], - protect: ["8M", "7M", "6M", "5M"], + payday: ["9M", "8M", "7E", "6E", "5E"], + playrough: ["9M", "8M", "8L40", "7L49", "6L49"], + protect: ["9M", "8M", "7M", "6M", "5M"], psychup: ["7M", "6M", "5M"], pursuit: ["7L15", "6L15", "5L15"], - quickattack: ["8E"], + quickattack: ["9M", "8E"], raindance: ["8M", "7M", "6M", "5M"], rest: ["8M", "7M", "6M", "5M"], return: ["7M", "6M", "5M"], @@ -54554,76 +55162,88 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["8M", "7M", "6M", "5M"], sandattack: ["8L4", "7L10", "6L10", "5L10"], scratch: ["8L1", "7L1", "6L1", "5L1"], - screech: ["8M"], + screech: ["9M", "8M"], secretpower: ["6M"], - seedbomb: ["8M", "7T", "6T", "5T"], - shadowball: ["8M", "7M", "6M", "5M"], - shadowclaw: ["8M", "7M", "6M", "5M"], - slash: ["8E", "7L30", "6L30", "5L30"], + seedbomb: ["9M", "8M", "7T", "6T", "5T"], + shadowball: ["9M", "8M", "7M", "6M", "5M"], + shadowclaw: ["9M", "8M", "7M", "6M", "5M"], + slash: ["9M", "8E", "7L30", "6L30", "5L30"], sleeptalk: ["8M", "7M", "6M", "5T"], - snarl: ["8M", "7M", "6M", "5M"], + snarl: ["9M", "8M", "7M", "6M", "5M"], snatch: ["7T", "7L39", "6T", "6L39", "5T", "5L39"], snore: ["8M", "7T", "6T", "5T"], spite: ["7T", "6T", "5T"], - substitute: ["8M", "7M", "6M", "5M"], + substitute: ["9M", "8M", "7M", "6M", "5M"], suckerpunch: ["8L28", "7L46", "6L46", "5L46"], sunnyday: ["8M", "7M", "6M", "5M"], - swagger: ["7M", "6M", "5M"], - swift: ["8M"], - taunt: ["8M", "7M", "6M", "5M"], + swagger: ["9M", "7M", "6M", "5M"], + swift: ["9M", "8M"], + taunt: ["9M", "8M", "7M", "6M", "5M"], thief: ["8M", "7M", "6M", "5M"], - thunderwave: ["8M", "7M", "6M", "5M"], - torment: ["8L16", "7M", "7L19", "6M", "6L19", "5M", "5L19"], + thunderwave: ["9M", "8M", "7M", "6M", "5M"], + torment: ["9M", "8L16", "7M", "7L19", "6M", "6L19", "5M", "5L19"], trick: ["8M", "7T", "6T", "5T"], - uturn: ["8M", "7M", "6M", "5M"], + uturn: ["9M", "8M", "7M", "6M", "5M"], yawn: ["8E", "7E", "6E", "5E"], }, }, liepard: { learnset: { aerialace: ["7M", "6M", "5M"], + agility: ["9M"], assist: ["7L1", "6L1", "5L1"], assurance: ["8M", "8L23", "7L31", "6L31", "5L31"], attract: ["8M", "7M", "6M", "5M"], batonpass: ["8M"], + bite: ["9M"], burningjealousy: ["8T"], charm: ["8M"], confide: ["7M", "6M"], covet: ["7T", "6T", "5T"], + crunch: ["9M"], cut: ["6M", "5M"], - darkpulse: ["8M", "7M", "6M", "5T"], - doubleteam: ["7M", "6M", "5M"], + darkpulse: ["9M", "8M", "7M", "6M", "5T"], + doublehit: ["9M"], + doubleteam: ["9M", "7M", "6M", "5M"], dreameater: ["7M", "6M", "5M"], echoedvoice: ["7M", "6M", "5M"], embargo: ["7M", "6M", "5M"], encore: ["8M", "5S0"], - endure: ["8M"], - facade: ["8M", "7M", "6M", "5M"], - fakeout: ["8L1", "7L22", "6L22", "5L22", "5S0"], - faketears: ["8M"], + endure: ["9M", "8M"], + facade: ["9M", "8M", "7M", "6M", "5M"], + fakeout: ["9M", "8L1", "7L22", "6L22", "5L22", "5S0"], + faketears: ["9M", "8M"], + firefang: ["9M"], + firstimpression: ["9M"], foulplay: ["8M", "7T", "6T", "5T", "5S0"], frustration: ["7M", "6M", "5M"], furyswipes: ["8L12", "7L12", "6L12", "5L12"], - gigaimpact: ["8M", "7M", "6M", "5M"], + gigaimpact: ["9M", "8M", "7M", "6M", "5M"], grassknot: ["8M", "7M", "6M", "5M"], - growl: ["8L1", "7L1", "6L1", "5L1"], - gunkshot: ["8M", "7T", "6T", "5T"], + growl: ["9M", "8L1", "7L1", "6L1", "5L1"], + gunkshot: ["9M", "8M", "7T", "6T", "5T"], honeclaws: ["8L28", "7L26", "6M", "6L26", "5M", "5L26"], - hyperbeam: ["8M", "7M", "6M", "5M"], - hypervoice: ["8M", "7T", "6T", "5T"], - irontail: ["8M", "7T", "6T", "5T"], - knockoff: ["7T", "6T", "5T"], + hyperbeam: ["9M", "8M", "7M", "6M", "5M"], + hypervoice: ["9M", "8M", "7T", "6T", "5T"], + icefang: ["9M"], + irontail: ["9M", "8M", "7T", "6T", "5T"], + knockoff: ["9M", "7T", "6T", "5T"], laserfocus: ["7T"], lashout: ["8T"], - nastyplot: ["8M", "8L40", "7L50", "6L50", "5L50"], - nightslash: ["8L46", "7L43", "6L43", "5L43"], + lick: ["9M"], + mimic: ["9M"], + nastyplot: ["9M", "8M", "8L40", "7L50", "6L50", "5L50"], + nightslash: ["9M", "8L46", "7L43", "6L43", "5L43"], + partingshot: ["9M"], payback: ["8M", "7M", "6M", "5M"], - payday: ["8M"], - playrough: ["8M", "8L52", "7L58", "6L58"], - protect: ["8M", "7M", "6M", "5M"], + payday: ["9M", "8M"], + playrough: ["9M", "8M", "8L52", "7L58", "6L58"], + protect: ["9M", "8M", "7M", "6M", "5M"], + psychicfangs: ["9M"], psychocut: ["8M"], psychup: ["7M", "6M", "5M"], pursuit: ["7L15", "6L15", "5L15"], + quickattack: ["9M"], raindance: ["8M", "7M", "6M", "5M"], rest: ["8M", "7M", "6M", "5M"], return: ["7M", "6M", "5M"], @@ -54632,30 +55252,33 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["8M", "7M", "6M", "5M"], sandattack: ["8L1", "7L1", "6L1", "5L1"], scratch: ["8L1", "7L1", "6L1", "5L1"], - screech: ["8M"], + screech: ["9M", "8M"], secretpower: ["6M"], - seedbomb: ["8M", "7T", "6T", "5T"], - shadowball: ["8M", "7M", "6M", "5M"], - shadowclaw: ["8M", "7M", "6M", "5M"], + seedbomb: ["9M", "8M", "7T", "6T", "5T"], + shadowball: ["9M", "8M", "7M", "6M", "5M"], + shadowclaw: ["9M", "8M", "7M", "6M", "5M"], skittersmack: ["8T"], - slash: ["7L34", "6L34", "5L34"], + slash: ["9M", "7L34", "6L34", "5L34"], sleeptalk: ["8M", "7M", "6M", "5T"], - snarl: ["8M", "7M", "6M", "5M"], + snarl: ["9M", "8M", "7M", "6M", "5M"], snatch: ["7T", "7L47", "6T", "6L47", "5T", "5L47"], snore: ["8M", "7T", "6T", "5T"], spite: ["7T", "6T", "5T"], - substitute: ["8M", "7M", "6M", "5M"], + substitute: ["9M", "8M", "7M", "6M", "5M"], suckerpunch: ["8L34", "7L55", "6L55", "5L55"], sunnyday: ["8M", "7M", "6M", "5M"], - swagger: ["7M", "6M", "5M", "5S0"], - swift: ["8M"], - taunt: ["8M", "7M", "7L38", "6M", "6L38", "5M", "5L38"], + swagger: ["9M", "7M", "6M", "5M", "5S0"], + swift: ["9M", "8M"], + swordsdance: ["9M"], + taunt: ["9M", "8M", "7M", "7L38", "6M", "6L38", "5M", "5L38"], thief: ["8M", "7M", "6M", "5M"], throatchop: ["8M", "7T"], - thunderwave: ["8M", "7M", "6M", "5M"], - torment: ["8L16", "7M", "7L19", "6M", "6L19", "5M", "5L19"], + thunderfang: ["9M"], + thunderwave: ["9M", "8M", "7M", "6M", "5M"], + torment: ["9M", "8L16", "7M", "7L19", "6M", "6L19", "5M", "5L19"], trick: ["8M", "7T", "6T", "5T"], - uturn: ["8M", "7M", "6M", "5M"], + uturn: ["9M", "8M", "7M", "6M", "5M"], + xscissor: ["9M"], }, eventData: [ { generation: 5, level: 20, gender: "F", nature: "Jolly", isHidden: true, moves: ["fakeout", "foulplay", "encore", "swagger"] }, @@ -54679,7 +55302,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endeavor: ["7T", "6T", "5T"], endure: ["9M"], energyball: ["9M", "7M", "6M", "5M"], - facade: ["7M", "6M", "5M"], + facade: ["9M", "7M", "6M", "5M"], flash: ["6M", "5M"], fling: ["7M", "7L28", "6M", "6L28", "5M", "5L28"], focusblast: ["9M"], @@ -54702,7 +55325,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab leer: ["9M", "7L4", "6L4", "5L4", "5S1"], lick: ["9M", "7L7", "6L7", "5L7", "5S1"], lowkick: ["7T", "7E", "6T", "6E", "5T", "5E"], - lowsweep: ["7M", "6M", "5M"], + lowsweep: ["9M", "7M", "6M", "5M"], magicalleaf: ["9M", "7E", "6E", "5E"], mudshot: ["9M"], nastyplot: ["9M", "7E", "6E", "5E"], @@ -54722,7 +55345,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["7M", "6M", "5M"], scratch: ["7L1", "6L1", "5L1"], secretpower: ["6M"], - seedbomb: ["7T", "7L22", "6T", "6L22", "5T", "5L22", "5S2"], + seedbomb: ["9M", "7T", "7L22", "6T", "6L22", "5T", "5L22", "5S2"], shadowclaw: ["9M", "7M", "6M", "5M"], sleeptalk: ["7M", "6M", "5T"], snore: ["7T", "6T", "5T"], @@ -54737,8 +55360,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab taunt: ["9M", "7M", "6M", "5M"], thief: ["7M", "6M", "5M"], tickle: ["7E", "6E", "5E"], - torment: ["7M", "7L25", "6M", "6L25", "5M", "5L25"], + torment: ["9M", "7M", "7L25", "6M", "6L25", "5M", "5L25"], toxic: ["9M"], + trailblaze: ["9M"], uproar: ["7T", "6T", "5T"], vinewhip: ["9M", "7L10", "6L10", "5L10", "5S1"], workup: ["9M", "7M", "5M"], @@ -54763,10 +55387,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab cut: ["6M", "5M"], dig: ["9M", "6M", "5M"], doubleteam: ["7M", "6M", "5M"], + drainpunch: ["9M"], endeavor: ["7T", "6T", "5T"], endure: ["9M"], energyball: ["9M", "7M", "6M", "5M"], - facade: ["7M", "6M", "5M"], + facade: ["9M", "7M", "6M", "5M"], + fakeout: ["9M"], flash: ["6M", "5M"], fling: ["7M", "6M", "5M"], focusblast: ["9M", "7M", "6M", "5M"], @@ -54790,7 +55416,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab leer: ["9M", "7L1", "6L1", "5L1"], lick: ["9M", "7L1", "6L1", "5L1"], lowkick: ["7T", "6T", "5T"], - lowsweep: ["7M", "6M", "5M"], + lowsweep: ["9M", "7M", "6M", "5M"], magicalleaf: ["9M"], mudshot: ["9M"], nastyplot: ["9M"], @@ -54807,11 +55433,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab roleplay: ["7T", "6T", "5T"], round: ["7M", "6M", "5M"], secretpower: ["6M"], - seedbomb: ["7T", "7L1", "6T", "6L1", "5T", "5L1"], + seedbomb: ["9M", "7T", "7L1", "6T", "6L1", "5T", "5L1"], shadowclaw: ["9M", "7M", "6M", "5M"], sleeptalk: ["7M", "6M", "5T"], snore: ["7T", "6T", "5T"], solarbeam: ["9M", "7M", "6M", "5M"], + solarblade: ["9M"], substitute: ["9M", "7M", "6M", "5M"], sunnyday: ["7M", "6M", "5M"], superpower: ["7T", "6T", "5T"], @@ -54822,8 +55449,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab taunt: ["9M", "7M", "6M", "5M"], thief: ["7M", "6M", "5M"], throatchop: ["7T"], - torment: ["7M", "6M", "5M"], + torment: ["9M", "7M", "6M", "5M"], toxic: ["9M"], + trailblaze: ["9M"], uproar: ["7T", "6T", "5T"], vinewhip: ["9M"], workup: ["9M", "7M", "5M"], @@ -54849,7 +55477,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ember: ["9M"], endeavor: ["7T", "6T", "5T"], endure: ["9M"], - facade: ["7M", "6M", "5M"], + facade: ["9M", "7M", "6M", "5M"], fireblast: ["9M", "7M", "7L34", "6M", "6L34", "5M", "5L34"], firepledge: ["7T"], firepunch: ["9M", "7T", "7E", "6T", "6E", "5T", "5E"], @@ -54877,7 +55505,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab leer: ["9M", "7L4", "6L4", "5L4", "5S0"], lick: ["9M", "7L7", "6L7", "5L7", "5S0"], lowkick: ["7T", "7E", "6T", "6E", "5T", "5E"], - lowsweep: ["7M", "6M", "5M"], + lowsweep: ["9M", "7M", "6M", "5M"], mudshot: ["9M"], nastyplot: ["9M", "7E", "6E", "5E"], naturalgift: ["7L40", "6L40", "5L40"], @@ -54924,6 +55552,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab amnesia: ["9M"], attract: ["7M", "6M", "5M"], bite: ["9M"], + blazekick: ["9M"], brickbreak: ["9M", "7M", "6M", "5M"], confide: ["7M", "6M"], covet: ["7T", "6T", "5T"], @@ -54934,13 +55563,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ember: ["9M"], endeavor: ["7T", "6T", "5T"], endure: ["9M"], - facade: ["7M", "6M", "5M"], + facade: ["9M", "7M", "6M", "5M"], + fakeout: ["9M"], fireblast: ["9M", "7M", "6M", "5M"], firepledge: ["7T"], firepunch: ["9M", "7T", "6T", "5T"], firespin: ["9M"], flameburst: ["7L1", "6L1", "5L1"], - flamecharge: ["7M", "6M", "5M"], + flamecharge: ["9M", "7M", "6M", "5M"], flamethrower: ["9M", "7M", "6M", "5M"], flamewheel: ["9M"], flareblitz: ["9M"], @@ -54964,7 +55594,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab leer: ["9M", "7L1", "6L1", "5L1"], lick: ["9M", "7L1", "6L1", "5L1"], lowkick: ["7T", "6T", "5T"], - lowsweep: ["7M", "6M", "5M"], + lowsweep: ["9M", "7M", "6M", "5M"], mudshot: ["9M"], nastyplot: ["9M"], overheat: ["9M", "7M", "6M", "5M"], @@ -54979,6 +55609,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocktomb: ["9M", "7M", "6M", "5M"], roleplay: ["7T", "6T", "5T"], round: ["7M", "6M", "5M"], + scorchingsands: ["9M"], secretpower: ["6M"], shadowclaw: ["9M", "7M", "6M", "5M"], sleeptalk: ["7M", "6M", "5T"], @@ -55014,6 +55645,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab brickbreak: ["9M"], brine: ["7L34", "6L34", "5L34"], bubblebeam: ["9M"], + chillingwater: ["9M"], confide: ["7M", "6M"], covet: ["7T", "7E", "6T", "6E", "5T", "5E"], crunch: ["9M", "7L43", "6L43", "5L43"], @@ -55024,7 +55656,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleteam: ["7M", "6M", "5M"], endeavor: ["7T", "6T", "5T"], endure: ["9M"], - facade: ["7M", "6M", "5M"], + facade: ["9M", "7M", "6M", "5M"], fling: ["7M", "7L28", "6M", "6L28", "5M", "5L28"], flipturn: ["9M"], focusblast: ["9M"], @@ -55047,7 +55679,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab leer: ["9M", "7L4", "6L4", "5L4", "5S0"], lick: ["9M", "7L7", "6L7", "5L7", "5S0"], lowkick: ["7T", "7E", "6T", "6E", "5T", "5E"], - lowsweep: ["7M", "6M", "5M"], + lowsweep: ["9M", "7M", "6M", "5M"], mudshot: ["9M"], mudsport: ["7E", "6E", "5E"], nastyplot: ["9M", "7E", "6E", "5E"], @@ -55065,7 +55697,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocktomb: ["9M", "7M", "6M", "5M"], roleplay: ["7T", "7E", "6T", "6E", "5T", "5E"], round: ["7M", "6M", "5M"], - scald: ["7M", "7L22", "6M", "6L22", "5M", "5L22"], + scald: ["9M", "7M", "7L22", "6M", "6L22", "5M", "5L22"], scratch: ["7L1", "6L1", "5L1"], secretpower: ["6M"], shadowclaw: ["9M", "7M", "6M", "5M"], @@ -55102,6 +55734,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab blizzard: ["9M", "7M", "6M", "5M"], brickbreak: ["9M", "7M", "6M", "5M"], bubblebeam: ["9M"], + chillingwater: ["9M"], confide: ["7M", "6M"], covet: ["7T", "6T", "5T"], crunch: ["9M"], @@ -55111,7 +55744,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleteam: ["7M", "6M", "5M"], endeavor: ["7T", "6T", "5T"], endure: ["9M"], - facade: ["7M", "6M", "5M"], + facade: ["9M", "7M", "6M", "5M"], + fakeout: ["9M"], fling: ["7M", "6M", "5M"], flipturn: ["9M"], focusblast: ["9M", "7M", "6M", "5M"], @@ -55137,7 +55771,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lick: ["9M", "7L1", "6L1", "5L1"], liquidation: ["9M"], lowkick: ["7T", "6T", "5T"], - lowsweep: ["7M", "6M", "5M"], + lowsweep: ["9M", "7M", "6M", "5M"], mudshot: ["9M"], nastyplot: ["9M"], payback: ["7M", "6M", "5M"], @@ -55152,7 +55786,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocktomb: ["9M", "7M", "6M", "5M"], roleplay: ["7T", "6T", "5T"], round: ["7M", "6M", "5M"], - scald: ["7M", "7L1", "6M", "6L1", "5M", "5L1"], + scald: ["9M", "7M", "7L1", "6M", "6L1", "5M", "5L1"], secretpower: ["6M"], shadowclaw: ["9M", "7M", "6M", "5M"], sleeptalk: ["7M", "6M", "5T"], @@ -55179,77 +55813,82 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab learnset: { afteryou: ["7T", "6T", "5T"], allyswitch: ["8M", "7T"], - amnesia: ["8M"], + amnesia: ["9M", "8M"], attract: ["8M", "7M", "6M", "5M"], barrier: ["7E", "6E", "5E"], batonpass: ["7E", "6E", "5E"], - calmmind: ["8M", "8L28", "7M", "7L35", "6M", "6L35", "5M", "5L35"], + calmmind: ["9M", "8M", "8L28", "7M", "7L35", "6M", "6L35", "5M", "5L35"], chargebeam: ["7M", "6M", "5M"], + charm: ["9M"], confide: ["7M", "6M"], - curse: ["8E", "7E", "6E", "5E"], - dazzlinggleam: ["8M", "7M", "6M"], + curse: ["9M", "8E", "7E", "6E", "5E"], + dazzlinggleam: ["9M", "8M", "7M", "6M"], defensecurl: ["8L1", "7L1", "6L1", "5L1"], - doubleteam: ["7M", "6M", "5M"], - dreameater: ["8L44", "7M", "7L41", "7S0", "6M", "6L41", "5M", "5L41"], - endure: ["8M"], - energyball: ["8M", "7M", "6M", "5M"], + doubleteam: ["9M", "7M", "6M", "5M"], + dreameater: ["9M", "8L44", "7M", "7L41", "7S0", "6M", "6L41", "5M", "5L41"], + endure: ["9M", "8M"], + energyball: ["9M", "8M", "7M", "6M", "5M"], expandingforce: ["8T"], - facade: ["8M", "7M", "6M", "5M"], + facade: ["9M", "8M", "7M", "6M", "5M"], flash: ["6M", "5M"], frustration: ["7M", "6M", "5M"], - futuresight: ["8M", "8L48", "7L31", "6L31", "5L31"], + futuresight: ["9M", "8M", "8L48", "7L31", "6L31", "5L31"], gravity: ["7T", "6T", "5T"], guardswap: ["8M"], gyroball: ["8M", "7M", "6M", "5M"], healbell: ["7T", "6T", "5T"], + healblock: ["9M"], healingwish: ["8E", "7E", "6E"], helpinghand: ["8M", "7T", "7E", "6T", "6E", "5T", "5E"], - hypnosis: ["8L4", "7L19", "7S0", "6L19", "5L19"], + hypnosis: ["9M", "8L4", "7L19", "7S0", "6L19", "5L19"], imprison: ["8M", "8L12", "7L13", "6L13", "5L13"], - lightscreen: ["8M", "7M", "6M", "5M"], + lightscreen: ["9M", "8M", "7M", "6M", "5M"], luckychant: ["7L5", "6L5", "5L5"], magiccoat: ["8L20", "7T", "7E", "6T", "6E", "5T", "5E"], - moonblast: ["8L40"], - moonlight: ["8L16", "7L17", "6L17", "5L17"], + moonblast: ["9M", "8L40"], + moonlight: ["9M", "8L16", "7L17", "6L17", "5L17"], nightmare: ["7L29", "6L29", "5L29"], + ominouswind: ["9M"], painsplit: ["7T", "6T", "5T"], powerswap: ["8M"], - protect: ["8M", "7M", "6M", "5M"], - psybeam: ["8L8", "7L11", "6L11", "5L11"], - psychic: ["8M", "8L36", "7M", "7L37", "6M", "6L37", "5M", "5L37"], + protect: ["9M", "8M", "7M", "6M", "5M"], + psybeam: ["9M", "8L8", "7L11", "6L11", "5L11"], + psychic: ["9M", "8M", "8L36", "7M", "7L37", "6M", "6L37", "5M", "5L37"], psychup: ["7M", "6M", "5M"], - psyshock: ["8M", "7M", "6M", "5M"], + psyshock: ["9M", "8M", "7M", "6M", "5M"], psywave: ["7L1", "6L1", "5L1"], raindance: ["8M", "7M", "6M", "5M"], - reflect: ["8M", "7M", "6M", "5M"], + reflect: ["9M", "8M", "7M", "6M", "5M"], rest: ["8M", "7M", "7S0", "6M", "5M"], return: ["7M", "6M", "5M"], - rockslide: ["8M", "7M", "6M", "5M"], - rocktomb: ["8M", "7M", "6M", "5M"], + rockslide: ["9M", "8M", "7M", "6M", "5M"], + rocktomb: ["9M", "8M", "7M", "6M", "5M"], round: ["8M", "7M", "6M", "5M"], - safeguard: ["8M", "7M", "6M", "5M"], + safeguard: ["9M", "8M", "7M", "6M", "5M"], secretpower: ["7E", "6M", "6E", "5E"], - shadowball: ["8M", "7M", "6M", "5M"], + shadowball: ["9M", "8M", "7M", "6M", "5M"], shockwave: ["7T", "6T"], signalbeam: ["7T", "6T", "5T"], + silverwind: ["9M"], skillswap: ["8M", "7T", "6T", "5T"], sleeptalk: ["8M", "7M", "7E", "7S0", "6M", "6E", "5T", "5E"], snore: ["8M", "7T", "6T", "5T"], sonicboom: ["7E", "6E", "5E"], storedpower: ["8M", "8L1", "7L47", "6L47", "5L47"], - substitute: ["8M", "7M", "6M", "5M"], + substitute: ["9M", "8M", "7M", "6M", "5M"], swagger: ["7M", "6M", "5M"], - swift: ["8M", "7E", "6E", "5E"], + swift: ["9M", "8M", "7E", "6E", "5E"], synchronoise: ["7L25", "6L25", "5L25"], telekinesis: ["7T", "7L43", "6L43", "5M", "5L43"], - thunderwave: ["8M", "7M", "6M", "5M"], + thunderwave: ["9M", "8M", "7M", "6M", "5M"], torment: ["7M", "6M", "5M"], + triattack: ["9M"], trick: ["8M", "7T", "6T", "5T"], trickroom: ["8M", "7M", "6M", "5M"], wonderroom: ["8M", "8L52", "7T", "6T", "5T"], worryseed: ["7T", "6T", "5T"], yawn: ["8L32", "7L7", "6L7", "5L7"], - zenheadbutt: ["8M", "8L24", "7T", "7L23", "6T", "6L23", "5T", "5L23"], + zenheadbutt: ["9M", "8M", "8L24", "7T", "7L23", "6T", "6L23", "5T", "5L23"], }, eventData: [ { generation: 7, level: 39, nature: "Mild", isHidden: true, moves: ["hypnosis", "dreameater", "rest", "sleeptalk"], pokeball: "dreamball" }, @@ -55259,73 +55898,79 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab learnset: { afteryou: ["7T", "6T", "5T"], allyswitch: ["8M", "7T"], - amnesia: ["8M"], + amnesia: ["9M", "8M"], attract: ["8M", "7M", "6M", "5M"], - calmmind: ["8M", "8L1", "7M", "6M", "5M"], - chargebeam: ["7M", "6M", "5M"], + calmmind: ["9M", "8M", "8L1", "7M", "6M", "5M"], + chargebeam: ["9M", "7M", "6M", "5M"], + charm: ["9M"], confide: ["7M", "6M"], - dazzlinggleam: ["8M", "7M", "6M"], + curse: ["9M"], + dazzlinggleam: ["9M", "8M", "7M", "6M"], defensecurl: ["8L1", "7L1", "6L1", "5L1", "5S0"], - doubleteam: ["7M", "6M", "5M"], - dreameater: ["8L1", "7M", "6M", "5M"], - endure: ["8M"], - energyball: ["8M", "7M", "6M", "5M"], + doubleteam: ["9M", "7M", "6M", "5M"], + dreameater: ["9M", "8L1", "7M", "6M", "5M"], + endure: ["9M", "8M"], + energyball: ["9M", "8M", "7M", "6M", "5M"], expandingforce: ["8T"], - facade: ["8M", "7M", "6M", "5M"], + facade: ["9M", "8M", "7M", "6M", "5M"], flash: ["6M", "5M"], frustration: ["7M", "6M", "5M"], - futuresight: ["8M", "8L1"], - gigaimpact: ["8M", "7M", "6M", "5M"], + futuresight: ["9M", "8M", "8L1"], + gigaimpact: ["9M", "8M", "7M", "6M", "5M"], gravity: ["7T", "6T", "5T"], guardswap: ["8M"], gyroball: ["8M", "7M", "6M", "5M"], healbell: ["7T", "6T", "5T"], + healblock: ["9M"], helpinghand: ["8M", "7T", "6T", "5T"], - hyperbeam: ["8M", "7M", "6M", "5M"], - hypnosis: ["8L1", "7L1", "6L1", "5L1", "5S0"], + hyperbeam: ["9M", "8M", "7M", "6M", "5M"], + hypnosis: ["9M", "8L1", "7L1", "6L1", "5L1", "5S0"], imprison: ["8M", "8L1"], - lightscreen: ["8M", "7M", "6M", "5M"], + lightscreen: ["9M", "8M", "7M", "6M", "5M"], luckychant: ["7L1", "6L1", "5L1", "5S0"], magiccoat: ["8L1", "7T", "6T", "5T"], mistyexplosion: ["8T"], - moonblast: ["8L1"], - moonlight: ["8L1"], + moonblast: ["9M", "8L1"], + moonlight: ["9M", "8L1"], + ominouswind: ["9M"], painsplit: ["7T", "6T", "5T"], powerswap: ["8M"], - protect: ["8M", "7M", "6M", "5M"], - psybeam: ["8L1", "7L1", "6L1", "5L1", "5S0"], - psychic: ["8M", "8L1", "7M", "6M", "5M"], + protect: ["9M", "8M", "7M", "6M", "5M"], + psybeam: ["9M", "8L1", "7L1", "6L1", "5L1", "5S0"], + psychic: ["9M", "8M", "8L1", "7M", "6M", "5M"], psychicterrain: ["8M", "8L1", "7L1"], psychup: ["7M", "6M", "5M"], - psyshock: ["8M", "7M", "6M", "5M"], + psyshock: ["9M", "8M", "7M", "6M", "5M"], raindance: ["8M", "7M", "6M", "5M"], - reflect: ["8M", "7M", "6M", "5M"], + reflect: ["9M", "8M", "7M", "6M", "5M"], rest: ["8M", "7M", "6M", "5M"], return: ["7M", "6M", "5M"], - rockslide: ["8M", "7M", "6M", "5M"], - rocktomb: ["8M", "7M", "6M", "5M"], + rockslide: ["9M", "8M", "7M", "6M", "5M"], + rocktomb: ["9M", "8M", "7M", "6M", "5M"], round: ["8M", "7M", "6M", "5M"], - safeguard: ["8M", "7M", "6M", "5M"], + safeguard: ["9M", "8M", "7M", "6M", "5M"], secretpower: ["6M"], - shadowball: ["8M", "7M", "6M", "5M"], + shadowball: ["9M", "8M", "7M", "6M", "5M"], shockwave: ["7T", "6T"], signalbeam: ["7T", "6T", "5T"], + silverwind: ["9M"], skillswap: ["8M", "7T", "6T", "5T"], sleeptalk: ["8M", "7M", "6M", "5T"], snore: ["8M", "7T", "6T", "5T"], storedpower: ["8M", "8L1"], - substitute: ["8M", "7M", "6M", "5M"], + substitute: ["9M", "8M", "7M", "6M", "5M"], swagger: ["7M", "6M", "5M"], - swift: ["8M"], + swift: ["9M", "8M"], telekinesis: ["7T", "5M"], - thunderwave: ["8M", "7M", "6M", "5M"], + thunderwave: ["9M", "8M", "7M", "6M", "5M"], torment: ["7M", "6M", "5M"], + triattack: ["9M"], trick: ["8M", "7T", "6T", "5T"], trickroom: ["8M", "7M", "6M", "5M"], wonderroom: ["8M", "8L1", "7T", "6T", "5T"], worryseed: ["7T", "6T", "5T"], yawn: ["8L1"], - zenheadbutt: ["8M", "8L1", "7T", "6T", "5T"], + zenheadbutt: ["9M", "8M", "8L1", "7T", "6T", "5T"], }, eventData: [ { generation: 5, level: 50, isHidden: true, moves: ["defensecurl", "luckychant", "psybeam", "hypnosis"] }, @@ -56105,6 +56750,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab scratch: ["9M", "8L1", "7L1", "6L1", "5L1"], secretpower: ["6M"], shadowclaw: ["9M", "8M", "7M", "6M", "5M"], + skullbash: ["9M"], slash: ["9M", "7L26", "6L26", "5L26"], sleeptalk: ["9M", "8M", "7M", "6M", "5T"], sludgebomb: ["9M", "8M", "7M", "6M", "5M"], @@ -56149,13 +56795,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleslap: ["7L17", "6L10", "5L10", "5S0"], doubleteam: ["7M", "6M", "5M"], drainingkiss: ["9M", "8M", "7E", "6E"], - drainpunch: ["8M", "7T", "6T", "5T"], + drainpunch: ["9M", "8M", "7T", "6T", "5T"], dreameater: ["7M", "6M", "5M"], echoedvoice: ["7M", "6M", "5M"], encore: ["8M", "7E", "6E", "5E", "5D"], endure: ["9M", "8M"], entrainment: ["8L52", "7L29", "6L25", "5L25"], - facade: ["8M", "7M", "6M", "5M"], + facade: ["9M", "8M", "7M", "6M", "5M"], fireblast: ["9M", "8M", "7M", "6M", "5M"], firepunch: ["9M", "8M", "7T", "6T", "5T"], flamethrower: ["9M", "8M", "7M", "6M", "5M"], @@ -56230,6 +56876,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderbolt: ["9M", "8M", "7M", "6M", "6S3", "5M"], thunderpunch: ["9M", "8M", "7T", "6T", "5T"], thunderwave: ["9M", "8M", "7M", "6M", "5M"], + triattack: ["9M"], trickroom: ["8M", "7M", "6M", "6S3", "5M"], uproar: ["8M", "7T", "6T", "5T"], wildcharge: ["9M", "8M", "7M", "6M", "5M"], @@ -56675,118 +57322,139 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, throh: { learnset: { + amnesia: ["9M"], attract: ["8M", "7M", "6M", "5M"], bide: ["7L1", "6L5", "5L5"], bind: ["8L1", "7T", "7L1", "6T", "6L1", "5T", "5L1", "5D"], block: ["7T", "6T", "5T"], - bodyslam: ["8M", "7L21", "6L29", "5L29"], - brickbreak: ["8M", "7M", "6M", "5M"], - bulkup: ["8M", "8L25", "7M", "7L25", "6M", "6L33", "5M", "5L33"], - bulldoze: ["8M", "7M", "6M", "5M"], - circlethrow: ["8L10", "7L29", "6L37", "5L37"], + bodyslam: ["9M", "8M", "7L21", "6L29", "5L29"], + brickbreak: ["9M", "8M", "7M", "6M", "5M"], + brutalswing: ["9M"], + bulkup: ["9M", "8M", "8L25", "7M", "7L25", "6M", "6L33", "5M", "5L33"], + bulldoze: ["9M", "8M", "7M", "6M", "5M"], + circlethrow: ["9M", "8L10", "7L29", "6L37", "5L37"], + closecombat: ["9M"], coaching: ["8T"], confide: ["7M", "6M"], - dig: ["8M", "6M", "5M"], + dig: ["9M", "8M", "6M", "5M"], doubleteam: ["7M", "6M", "5M"], - earthquake: ["8M", "7M", "6M", "5M"], - endure: ["8M", "8L45", "7L33", "6L41", "5L41"], - facade: ["8M", "7M", "6M", "5M"], - firepunch: ["8M", "7T", "6T", "5T"], + dynamicpunch: ["9M"], + earthquake: ["9M", "8M", "7M", "6M", "5M"], + endure: ["9M", "8M", "8L45", "7L33", "6L41", "5L41"], + facade: ["9M", "8M", "7M", "6M", "5M"], + firepunch: ["9M", "8M", "7T", "6T", "5T"], fling: ["8M", "7M", "6M", "5M"], - focusblast: ["8M", "7M", "6M", "5M"], - focusenergy: ["8M", "8L5", "7L1", "6L9", "5L9"], + focusblast: ["9M", "8M", "7M", "6M", "5M"], + focusenergy: ["9M", "8M", "8L5", "7L1", "6L9", "5L9"], focuspunch: ["7T", "6T"], frustration: ["7M", "6M", "5M"], - gigaimpact: ["8M", "7M", "6M", "5M"], + gigaimpact: ["9M", "8M", "7M", "6M", "5M"], grassknot: ["8M", "7M", "6M", "5M"], + gunkshot: ["9M"], helpinghand: ["8M", "7T", "6T", "5T"], - icepunch: ["8M", "7T", "6T", "5T", "5D"], + icepunch: ["9M", "8M", "7T", "6T", "5T", "5D"], + irondefense: ["9M"], + ironhead: ["9M"], knockoff: ["7T", "6T", "5T"], laserfocus: ["7T"], - leer: ["8L1", "7L1", "6L1", "5L1"], + leer: ["9M", "8L1", "7L1", "6L1", "5L1"], lowkick: ["8M", "7T", "6T", "5T"], - lowsweep: ["8M", "7M", "6M", "5M"], + lowsweep: ["9M", "8M", "7M", "6M", "5M"], matblock: ["7L1"], megakick: ["8M"], megapunch: ["8M"], + outrage: ["9M"], painsplit: ["7T", "6T", "5T"], payback: ["8M", "7M", "6M", "5M"], - poisonjab: ["8M", "7M", "6M", "5M"], - poweruppunch: ["6M"], - protect: ["8M", "7M", "6M", "5M"], + poisonjab: ["9M", "8M", "7M", "6M", "5M"], + poweruppunch: ["9M", "6M"], + protect: ["9M", "8M", "7M", "6M", "5M"], raindance: ["8M", "7M", "6M", "5M"], rest: ["8M", "7M", "6M", "5M"], retaliate: ["8M", "6M", "5M"], return: ["7M", "6M", "5M"], revenge: ["8M", "8L20", "7L13", "6L21", "5L21"], reversal: ["8M", "8L50", "7L45", "6L50", "5L53"], - rockslide: ["8M", "7M", "6M", "5M"], - rocksmash: ["6M", "5M"], - rocktomb: ["8M", "7M", "6M", "5M"], + rockblast: ["9M"], + rockslide: ["9M", "8M", "7M", "6M", "5M"], + rocksmash: ["9M", "6M", "5M"], + rocktomb: ["9M", "8M", "7M", "6M", "5M"], + rollout: ["9M"], round: ["8M", "7M", "6M", "5M"], scaryface: ["8M"], secretpower: ["6M"], + seedbomb: ["9M"], seismictoss: ["8L40", "7L5", "6L13", "5L13"], + skullbash: ["9M"], sleeptalk: ["8M", "7M", "6M", "5T"], snore: ["8M", "7T", "6T", "5T"], stompingtantrum: ["8M", "7T"], - stoneedge: ["8M", "7M", "6M", "5M"], - stormthrow: ["8L30", "7L17", "6L25", "5L25"], + stoneedge: ["9M", "8M", "7M", "6M", "5M"], + stormthrow: ["9M", "8L30", "7L17", "6L25", "5L25"], strength: ["6M", "5M"], - substitute: ["8M", "7M", "6M", "5M"], + substitute: ["9M", "8M", "7M", "6M", "5M"], sunnyday: ["8M", "7M", "6M", "5M"], superpower: ["8M", "8L55", "7T", "7L41", "6T", "6L48", "5T", "5L49", "5D"], swagger: ["7M", "6M", "5M"], - taunt: ["8M", "7M", "6M", "5M"], - thunderpunch: ["8M", "7T", "6T", "5T"], + taunt: ["9M", "8M", "7M", "6M", "5M"], + thunderpunch: ["9M", "8M", "7T", "6T", "5T"], vitalthrow: ["8L35", "7L9", "6L17", "5L17"], wideguard: ["8L15", "7L37", "6L45", "5L45"], - workup: ["8M", "7M", "5M"], - zenheadbutt: ["8M", "7T", "6T"], + workup: ["9M", "8M", "7M", "5M"], + zenheadbutt: ["9M", "8M", "7T", "6T"], }, }, sawk: { learnset: { attract: ["8M", "7M", "6M", "5M"], bide: ["7L1", "6L5", "5L5"], + blazekick: ["9M"], block: ["7T", "6T", "5T"], - brickbreak: ["8M", "8L35", "7M", "7L21", "6M", "6L29", "5M", "5L29"], - bulkup: ["8M", "8L25", "7M", "7L25", "6M", "6L33", "5M", "5L33"], - bulldoze: ["8M", "7M", "6M", "5M"], - closecombat: ["8M", "8L55", "7L41", "6L48", "5L49"], + bodyslam: ["9M"], + brickbreak: ["9M", "8M", "8L35", "7M", "7L21", "6M", "6L29", "5M", "5L29"], + bulkup: ["9M", "8M", "8L25", "7M", "7L25", "6M", "6L33", "5M", "5L33"], + bulldoze: ["9M", "8M", "7M", "6M", "5M"], + closecombat: ["9M", "8M", "8L55", "7L41", "6L48", "5L49"], coaching: ["8T"], + cometpunch: ["9M"], confide: ["7M", "6M"], counter: ["8L40", "7L13", "6L21", "5L21"], - dig: ["8M", "6M", "5M"], + detect: ["9M"], + dig: ["9M", "8M", "6M", "5M"], doublekick: ["8L10", "7L5", "6L13", "5L13"], doubleteam: ["7M", "6M", "5M"], - dualchop: ["7T", "6T", "5T", "5D"], - earthquake: ["8M", "7M", "6M", "5M"], - endure: ["8M", "8L45", "7L33", "6L41", "5L41"], - facade: ["8M", "7M", "6M", "5M"], - firepunch: ["8M", "7T", "6T", "5T"], + drainpunch: ["9M"], + dualchop: ["9M", "7T", "6T", "5T", "5D"], + dynamicpunch: ["9M"], + earthquake: ["9M", "8M", "7M", "6M", "5M"], + endure: ["9M", "8M", "8L45", "7L33", "6L41", "5L41"], + facade: ["9M", "8M", "7M", "6M", "5M"], + firepunch: ["9M", "8M", "7T", "6T", "5T"], fling: ["8M", "7M", "6M", "5M"], - focusblast: ["8M", "7M", "6M", "5M"], - focusenergy: ["8M", "8L5", "7L1", "6L9", "5L9"], + focusblast: ["9M", "8M", "7M", "6M", "5M"], + focusenergy: ["9M", "8M", "8L5", "7L1", "6L9", "5L9"], focuspunch: ["7T", "6T"], frustration: ["7M", "6M", "5M"], - gigaimpact: ["8M", "7M", "6M", "5M"], + gigaimpact: ["9M", "8M", "7M", "6M", "5M"], grassknot: ["8M", "7M", "6M", "5M"], helpinghand: ["8M", "7T", "6T", "5T"], - icepunch: ["8M", "7T", "6T", "5T"], + icepunch: ["9M", "8M", "7T", "6T", "5T"], + ironhead: ["9M"], karatechop: ["7L17", "6L25", "5L25"], - knockoff: ["7T", "6T", "5T"], + knockoff: ["9M", "7T", "6T", "5T"], laserfocus: ["7T"], - leer: ["8L1", "7L1", "6L1", "5L1"], + leer: ["9M", "8L1", "7L1", "6L1", "5L1"], lowkick: ["8M", "7T", "6T", "5T"], - lowsweep: ["8M", "8L20", "7M", "7L9", "6M", "6L17", "5M", "5L17"], + lowsweep: ["9M", "8M", "8L20", "7M", "7L9", "6M", "6L17", "5M", "5L17"], + machpunch: ["9M"], megakick: ["8M"], megapunch: ["8M"], + outrage: ["9M"], painsplit: ["7T", "6T", "5T"], payback: ["8M", "7M", "6M", "5M"], - poisonjab: ["8M", "7M", "6M", "5M"], - poweruppunch: ["6M"], - protect: ["8M", "7M", "6M", "5M"], + poisonjab: ["9M", "8M", "7M", "6M", "5M"], + poweruppunch: ["9M", "6M"], + protect: ["9M", "8M", "7M", "6M", "5M"], quickguard: ["8L15", "7L37", "6L45", "5L45"], raindance: ["8M", "7M", "6M", "5M"], rest: ["8M", "7M", "6M", "5M"], @@ -56794,25 +57462,26 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab return: ["7M", "6M", "5M"], revenge: ["8M"], reversal: ["8M", "8L50", "7L45", "6L50", "5L53"], - rockslide: ["8M", "7M", "6M", "5M"], - rocksmash: ["8L1", "7L1", "6M", "6L1", "5M", "5L1", "5D"], - rocktomb: ["8M", "7M", "6M", "5M"], + rockslide: ["9M", "8M", "7M", "6M", "5M"], + rocksmash: ["9M", "8L1", "7L1", "6M", "6L1", "5M", "5L1", "5D"], + rocktomb: ["9M", "8M", "7M", "6M", "5M"], round: ["8M", "7M", "6M", "5M"], scaryface: ["8M"], secretpower: ["6M"], sleeptalk: ["8M", "7M", "6M", "5T"], snore: ["8M", "7T", "6T", "5T"], - stoneedge: ["8M", "7M", "6M", "5M"], + stoneedge: ["9M", "8M", "7M", "6M", "5M"], strength: ["6M", "5M"], - substitute: ["8M", "7M", "6M", "5M"], + substitute: ["9M", "8M", "7M", "6M", "5M"], sunnyday: ["8M", "7M", "6M", "5M"], superpower: ["8M", "7T", "6T", "5T"], swagger: ["7M", "6M", "5M"], - taunt: ["8M", "7M", "6M", "5M"], + swordsdance: ["9M"], + taunt: ["9M", "8M", "7M", "6M", "5M"], throatchop: ["8M", "7T"], - thunderpunch: ["8M", "7T", "6T", "5T", "5D"], - workup: ["8M", "7M", "5M"], - zenheadbutt: ["8M", "7T", "6T"], + thunderpunch: ["9M", "8M", "7T", "6T", "5T", "5D"], + workup: ["9M", "8M", "7M", "5M"], + zenheadbutt: ["9M", "8M", "7T", "6T"], }, }, sewaddle: { @@ -57031,8 +57700,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab xscissor: ["9M", "7M", "7L39", "6M", "6L39", "5M", "5L39"], }, encounters: [ - { generation: 5, level: 20, isHidden: true - }, + { generation: 5, level: 20, isHidden: true }, ], }, venipede: { @@ -57047,7 +57715,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleteam: ["7M", "6M", "5M"], endeavor: ["7T", "6T", "5T"], endure: ["9M", "8M"], - facade: ["8M", "7M", "6M", "5M"], + facade: ["9M", "8M", "7M", "6M", "5M"], frustration: ["7M", "6M", "5M"], furycutter: ["8E"], gyroball: ["8M", "7M", "6M", "5M"], @@ -57103,13 +57771,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleteam: ["7M", "6M", "5M"], endeavor: ["7T", "6T", "5T"], endure: ["9M", "8M"], - facade: ["8M", "7M", "6M", "5M"], + facade: ["9M", "8M", "7M", "6M", "5M"], frustration: ["7M", "6M", "5M"], gyroball: ["8M", "7M", "6M", "5M"], hex: ["8M"], infestation: ["9M", "7M", "6M"], irondefense: ["9M", "8M", "8L0", "7T", "7L1", "6T", "6L22", "5T", "5L22"], leer: ["9M"], + mortalspin: ["9M"], payback: ["8M", "7M", "6M", "5M"], pinmissile: ["9M", "8M"], poisonjab: ["9M", "8M", "7M", "6M", "5M"], @@ -57148,6 +57817,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, scolipede: { learnset: { + acidspray: ["9M"], agility: ["9M", "8M", "8L42", "7L33", "6L33", "5L33"], aquatail: ["7T", "6T", "5T"], assurance: ["8M"], @@ -57161,11 +57831,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab defensecurl: ["8L1", "7L1", "6L1", "5L1"], dig: ["9M", "8M", "6M", "5M"], doubleedge: ["9M", "8L66", "7L55", "6L55", "5L55"], + doublehit: ["9M"], doubleteam: ["7M", "6M", "5M"], earthquake: ["9M", "8M", "7M", "6M", "5M"], endeavor: ["7T", "6T", "5T"], endure: ["9M", "8M"], - facade: ["8M", "7M", "6M", "5M"], + facade: ["9M", "8M", "7M", "6M", "5M"], + firstimpression: ["9M"], frustration: ["7M", "6M", "5M"], gigaimpact: ["9M", "8M", "7M", "6M", "5M"], gunkshot: ["9M"], @@ -57177,6 +57849,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab irontail: ["9M", "8M", "7T", "6T", "5T"], leer: ["9M"], megahorn: ["9M", "8M", "8L74", "7L1", "6L1", "5L1"], + mortalspin: ["9M"], payback: ["8M", "7M", "6M", "5M"], pinmissile: ["9M", "8M"], poisonjab: ["9M", "8M", "7M", "6M", "5M"], @@ -57196,6 +57869,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab secretpower: ["6M"], signalbeam: ["7T", "6T"], skittersmack: ["8T"], + skullbash: ["9M"], sleeptalk: ["8M", "7M", "6M", "5T"], sludgebomb: ["9M", "8M", "7M", "6M", "5M"], smartstrike: ["8M", "7M"], @@ -57217,6 +57891,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab throatchop: ["8M", "7T"], toxic: ["9M"], toxicspikes: ["9M", "8M", "5D"], + trailblaze: ["9M"], uturn: ["9M"], venomdrench: ["8M", "8L58", "7L47", "6L47"], venoshock: ["8M", "8L26", "7M", "7L28", "6M", "6L28", "5M", "5L28"], @@ -58017,6 +58692,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M", "8M"], facade: ["9M", "8M", "7M", "6M", "5M"], firefang: ["9M", "8M"], + fissure: ["9M"], fling: ["9M", "8M", "7M", "6M", "5M"], focusblast: ["9M", "8M", "7M", "6M", "5M"], focusenergy: ["8M"], @@ -58622,7 +59298,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endeavor: ["9M"], endure: ["9M", "8M"], facade: ["9M", "8M", "8L16", "7M", "7L42", "6M", "6L42", "5M", "5L42"], - fakeout: ["9E", "8E", "7E", "6E", "5E", "5D"], + fakeout: ["9M", "9E", "8E", "7E", "6E", "5E", "5D"], faketears: ["9M", "8M"], feintattack: ["7L9", "7E", "6L9", "6E", "5L9", "5E"], firepunch: ["9M", "8M", "7T", "7E", "6T", "6E", "5T", "5E"], @@ -58725,12 +59401,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dragonpulse: ["9M", "8M", "7T", "6T", "5T"], dragontail: ["9M", "7M", "6M", "5M"], drainpunch: ["9M", "8M", "7T", "6T", "5T", "5S0"], - dualchop: ["7T", "6T", "5T"], + dualchop: ["9M", "7T", "6T", "5T"], dynamicpunch: ["9M"], encore: ["9M"], endeavor: ["9M"], endure: ["9M", "8M"], facade: ["9M", "8M", "8L16", "7M", "7L45", "6M", "6L45", "5M", "5L45"], + fakeout: ["9M"], faketears: ["9M", "8M"], feintattack: ["7L1", "6L1", "5L1"], firepunch: ["9M", "8M", "7T", "6T", "5T", "5S0"], @@ -58780,6 +59457,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab sandattack: ["9M", "8L12", "7L1", "6L1", "5L1"], scaryface: ["9M", "8M", "8L28", "7L34", "6L34", "5L34"], secretpower: ["6M"], + skullbash: ["9M"], sleeptalk: ["9M", "8M", "7M", "6M", "5T"], sludgebomb: ["9M", "8M", "7M", "6M", "5M"], smackdown: ["9M", "7M", "6M", "5M"], @@ -58904,69 +59582,80 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab astonish: ["8L1", "7L1", "6L1", "5L1"], attract: ["8M", "7M", "6M", "5M"], block: ["7T", "6T", "5T"], - calmmind: ["8M", "7M", "6M", "5M"], + calmmind: ["9M", "8M", "7M", "6M", "5M"], confide: ["7M", "6M"], + confuseray: ["9M"], + confusion: ["9M"], craftyshield: ["8L20", "7E"], - curse: ["8L36", "7L29", "6L29", "5L29"], - darkpulse: ["8M", "8L44", "7M", "6M", "5T"], + curse: ["9M", "8L36", "7L29", "6L29", "5L29"], + darkpulse: ["9M", "8M", "8L44", "7M", "6M", "5T"], destinybond: ["8L52", "7L49", "6L49", "5L49"], disable: ["8L12", "7L5", "7E", "6L5", "6E", "5L5", "5E"], doubleteam: ["7M", "6M", "5M"], - dreameater: ["7M", "6M", "5M"], + dreameater: ["9M", "7M", "6M", "5M"], embargo: ["7M", "6M", "5M"], - endure: ["8M", "7E", "6E", "5E"], - energyball: ["8M", "7M", "6M", "5M"], - facade: ["8M", "7M", "6M", "5M"], - faketears: ["8M", "7E", "6E", "5E"], + endure: ["9M", "8M", "7E", "6E", "5E"], + energyball: ["9M", "8M", "7M", "6M", "5M"], + facade: ["9M", "8M", "7M", "6M", "5M"], + faketears: ["9M", "8M", "7E", "6E", "5E"], flash: ["6M", "5M"], frustration: ["7M", "6M", "5M"], grudge: ["8L32", "7L41", "6L41", "5L41"], guardsplit: ["8L48", "7L33", "6L33", "5L33"], - haze: ["8L4", "7L9", "6L9", "5L9"], - healblock: ["7E", "6E", "5E"], + haze: ["9M", "8L4", "7L9", "6L9", "5L9"], + healblock: ["9M", "7E", "6E", "5E"], hex: ["8M", "8L24", "7L17", "6L17", "5L17"], imprison: ["8M", "7E", "6E", "5E"], - infestation: ["7M", "6M"], - irondefense: ["8M", "7T", "6T", "5T"], - knockoff: ["7T", "6T", "5T"], + infestation: ["9M", "7M", "6M"], + irondefense: ["9M", "8M", "7T", "6T", "5T"], + knockoff: ["9M", "7T", "6T", "5T"], magiccoat: ["7T", "6T", "5T"], meanlook: ["8L28", "7L45", "6L45", "5L45"], memento: ["8E", "7E", "6E", "5E"], - nastyplot: ["8M", "7E", "6E", "5E"], + mudshot: ["9M"], + nastyplot: ["9M", "8M", "7E", "6E", "5E"], nightmare: ["7E", "6E", "5E"], nightshade: ["8L8", "7L13", "6L13", "5L13"], - ominouswind: ["7L25", "6L25", "5L25"], + ominouswind: ["9M", "7L25", "6L25", "5L25"], painsplit: ["7T", "6T", "5T"], + partingshot: ["9M"], payback: ["8M", "7M", "6M", "5M"], + phantomforce: ["9M"], poltergeist: ["8T"], powersplit: ["8L48", "7L33", "6L33", "5L33"], - protect: ["8M", "8L1", "7M", "7L1", "6M", "6L1", "5M", "5L1"], - psychic: ["8M", "7M", "6M", "5M"], + protect: ["9M", "8M", "8L1", "7M", "7L1", "6M", "6L1", "5M", "5L1"], + psychic: ["9M", "8M", "7M", "6M", "5M"], psychup: ["7M", "6M", "5M"], + psyshock: ["9M"], raindance: ["8M", "7M", "6M", "5M"], rest: ["8M", "7M", "6M", "5M"], return: ["7M", "6M", "5M"], roleplay: ["7T", "6T", "5T"], round: ["8M", "7M", "6M", "5M"], - safeguard: ["8M", "7M", "6M", "5M"], + safeguard: ["9M", "8M", "7M", "6M", "5M"], secretpower: ["6M"], - shadowball: ["8M", "8L40", "7M", "7L37", "6M", "6L37", "5M", "5L37"], + selfdestruct: ["9M"], + shadowball: ["9M", "8M", "8L40", "7M", "7L37", "6M", "6L37", "5M", "5L37"], + shadowclaw: ["9M"], + shadowpunch: ["9M"], shockwave: ["7T", "6T"], skillswap: ["8M", "7T", "6T", "5T"], sleeptalk: ["8M", "7M", "6M", "5T"], snatch: ["7T", "6T", "5T"], snore: ["8M", "7T", "6T", "5T"], spite: ["7T", "6T", "5T"], - substitute: ["8M", "7M", "6M", "5M"], + stealthrock: ["9M"], + substitute: ["9M", "8M", "7M", "6M", "5M"], swagger: ["7M", "6M", "5M"], telekinesis: ["7T", "5M"], thief: ["8M", "7M", "6M", "5M"], - toxicspikes: ["8M", "7E", "6E"], + thunderwave: ["9M"], + toxicspikes: ["9M", "8M", "7E", "6E"], trick: ["8M", "7T", "6T", "5T"], trickroom: ["8M", "7M", "6M", "5M"], - willowisp: ["8M", "8L16", "7M", "7L21", "6M", "6L21", "5M", "5L21"], + willowisp: ["9M", "8M", "8L16", "7M", "7L21", "6M", "6L21", "5M", "5L21"], wonderroom: ["8M", "7T", "6T", "5T"], - zenheadbutt: ["8M", "7T", "6T"], + zenheadbutt: ["9M", "8M", "7T", "6T"], }, }, yamaskgalar: { @@ -58974,53 +59663,69 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab allyswitch: ["8M"], astonish: ["8L1"], attract: ["8M"], - brutalswing: ["8M", "8L16"], - calmmind: ["8M"], + brutalswing: ["9M", "8M", "8L16"], + calmmind: ["9M", "8M"], + confuseray: ["9M"], + confusion: ["9M"], craftyshield: ["8L20"], - curse: ["8L36"], - darkpulse: ["8M"], + curse: ["9M", "8L36"], + darkpulse: ["9M", "8M"], destinybond: ["8L52"], disable: ["8L12"], - earthpower: ["8M"], - earthquake: ["8M", "8L44"], - endure: ["8M"], - energyball: ["8M"], - facade: ["8M"], - faketears: ["8M"], + dreameater: ["9M"], + earthpower: ["9M", "8M"], + earthquake: ["9M", "8M", "8L44"], + endure: ["9M", "8M"], + energyball: ["9M", "8M"], + facade: ["9M", "8M"], + faketears: ["9M", "8M"], guardsplit: ["8L48"], - haze: ["8L4"], + haze: ["9M", "8L4"], + healblock: ["9M"], hex: ["8M", "8L24"], imprison: ["8M"], - irondefense: ["8M"], + infestation: ["9M"], + irondefense: ["9M", "8M"], + knockoff: ["9M"], meanlook: ["8L28"], memento: ["8E"], - nastyplot: ["8M"], + mudshot: ["9M"], + nastyplot: ["9M", "8M"], nightshade: ["8L8"], + ominouswind: ["9M"], + partingshot: ["9M"], payback: ["8M"], + phantomforce: ["9M"], poltergeist: ["8T"], powersplit: ["8L48"], - protect: ["8M", "8L1"], - psychic: ["8M"], + protect: ["9M", "8M", "8L1"], + psychic: ["9M", "8M"], + psyshock: ["9M"], raindance: ["8M"], rest: ["8M"], - rockslide: ["8M"], - rocktomb: ["8M"], + rockslide: ["9M", "8M"], + rocktomb: ["9M", "8M"], round: ["8M"], - safeguard: ["8M"], + safeguard: ["9M", "8M"], sandstorm: ["8M"], - shadowball: ["8M", "8L40"], + selfdestruct: ["9M"], + shadowball: ["9M", "8M", "8L40"], + shadowclaw: ["9M"], + shadowpunch: ["9M"], skillswap: ["8M"], slam: ["8L32"], sleeptalk: ["8M"], snore: ["8M"], - substitute: ["8M"], + stealthrock: ["9M"], + substitute: ["9M", "8M"], thief: ["8M"], - toxicspikes: ["8M"], + thunderwave: ["9M"], + toxicspikes: ["9M", "8M"], trick: ["8M"], trickroom: ["8M"], - willowisp: ["8M"], + willowisp: ["9M", "8M"], wonderroom: ["8M"], - zenheadbutt: ["8M"], + zenheadbutt: ["9M", "8M"], }, }, cofagrigus: { @@ -59031,75 +59736,87 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab attract: ["8M", "7M", "6M", "5M"], block: ["7T", "6T", "5T"], bodypress: ["8M"], - calmmind: ["8M", "7M", "6M", "5M"], + calmmind: ["9M", "8M", "7M", "6M", "5M"], confide: ["7M", "6M"], + confuseray: ["9M"], + confusion: ["9M"], craftyshield: ["8L20"], - curse: ["8L38", "7L29", "6L29", "5L29"], - darkpulse: ["8M", "8L50", "7M", "7S0", "6M", "5T"], + curse: ["9M", "8L38", "7L29", "6L29", "5L29"], + darkpulse: ["9M", "8M", "8L50", "7M", "7S0", "6M", "5T"], destinybond: ["8L62", "7L57", "6L57", "5L57"], disable: ["8L12", "7L1", "6L1", "5L1"], doubleteam: ["7M", "6M", "5M"], - dreameater: ["7M", "6M", "5M"], + dreameater: ["9M", "7M", "6M", "5M"], embargo: ["7M", "6M", "5M"], - endure: ["8M"], - energyball: ["8M", "7M", "6M", "5M"], - facade: ["8M", "7M", "6M", "5M"], - faketears: ["8M"], + endure: ["9M", "8M"], + energyball: ["9M", "8M", "7M", "6M", "5M"], + facade: ["9M", "8M", "7M", "6M", "5M"], + faketears: ["9M", "8M"], flash: ["6M", "5M"], frustration: ["7M", "6M", "5M"], - gigaimpact: ["8M", "7M", "6M", "5M"], + gigadrain: ["9M"], + gigaimpact: ["9M", "8M", "7M", "6M", "5M"], grassknot: ["8M", "7M", "6M", "5M"], grudge: ["8L32", "7L45", "6L45", "5L45"], guardsplit: ["8L56", "7L33", "6L33", "5L33"], guardswap: ["8M"], - haze: ["8L1", "7L1", "6L1", "5L1"], + haze: ["9M", "8L1", "7L1", "6L1", "5L1"], + healblock: ["9M"], hex: ["8M", "8L24", "7L17", "6L17", "5L17"], - hyperbeam: ["8M", "7M", "6M", "5M"], + hyperbeam: ["9M", "8M", "7M", "6M", "5M"], + icywind: ["9M"], imprison: ["8M"], - infestation: ["7M", "6M"], - irondefense: ["8M", "7T", "6T", "5T"], - knockoff: ["7T", "6T", "5T"], + infestation: ["9M", "7M", "6M"], + irondefense: ["9M", "8M", "7T", "6T", "5T"], + knockoff: ["9M", "7T", "6T", "5T"], magiccoat: ["7T", "6T", "5T"], meanlook: ["8L28", "7L51", "6L51", "5L51"], - nastyplot: ["8M"], + mudshot: ["9M"], + nastyplot: ["9M", "8M"], nightshade: ["8L1", "7L13", "6L13", "5L13"], - ominouswind: ["7L25", "6L25", "5L25"], + ominouswind: ["9M", "7L25", "6L25", "5L25"], painsplit: ["7T", "6T", "5T"], + partingshot: ["9M"], payback: ["8M", "7M", "6M", "5M"], - phantomforce: ["8M"], + phantomforce: ["9M", "8M"], poltergeist: ["8T"], powersplit: ["8L56", "7L33", "7S0", "6L33", "5L33"], powerswap: ["8M"], - protect: ["8M", "8L1", "7M", "7L1", "6M", "6L1", "5M", "5L1"], - psychic: ["8M", "7M", "6M", "5M"], + protect: ["9M", "8M", "8L1", "7M", "7L1", "6M", "6L1", "5M", "5L1"], + psychic: ["9M", "8M", "7M", "6M", "5M"], psychup: ["7M", "6M", "5M"], + psyshock: ["9M"], raindance: ["8M", "7M", "6M", "5M"], rest: ["8M", "7M", "6M", "5M"], return: ["7M", "6M", "5M"], revenge: ["8M"], roleplay: ["7T", "6T", "5T"], round: ["8M", "7M", "6M", "5M"], - safeguard: ["8M", "7M", "6M", "5M"], + safeguard: ["9M", "8M", "7M", "6M", "5M"], scaryface: ["8M", "8L1", "7L1", "6L34", "5L34"], secretpower: ["6M"], - shadowball: ["8M", "8L44", "7M", "7L39", "7S0", "6M", "6L39", "5M", "5L39"], - shadowclaw: ["8M", "8L0"], + selfdestruct: ["9M"], + shadowball: ["9M", "8M", "8L44", "7M", "7L39", "7S0", "6M", "6L39", "5M", "5L39"], + shadowclaw: ["9M", "8M", "8L0"], + shadowpunch: ["9M"], shockwave: ["7T", "6T"], skillswap: ["8M", "7T", "6T", "5T"], sleeptalk: ["8M", "7M", "6M", "5T"], snatch: ["7T", "6T", "5T"], snore: ["8M", "7T", "6T", "5T"], spite: ["7T", "6T", "5T"], - substitute: ["8M", "7M", "6M", "5M"], + stealthrock: ["9M"], + substitute: ["9M", "8M", "7M", "6M", "5M"], swagger: ["7M", "6M", "5M"], telekinesis: ["7T", "5M"], thief: ["8M", "7M", "6M", "5M"], - toxicspikes: ["8M"], + thunderwave: ["9M"], + toxicspikes: ["9M", "8M"], trick: ["8M", "7T", "6T", "5T"], trickroom: ["8M", "7M", "6M", "5M"], - willowisp: ["8M", "8L16", "7M", "7L21", "7S0", "6M", "6L21", "5M", "5L21"], + willowisp: ["9M", "8M", "8L16", "7M", "7L21", "7S0", "6M", "6L21", "5M", "5L21"], wonderroom: ["8M", "7T", "6T", "5T"], - zenheadbutt: ["8M", "7T", "6T"], + zenheadbutt: ["9M", "8M", "7T", "6T"], }, eventData: [ { generation: 7, level: 66, gender: "M", moves: ["willowisp", "shadowball", "powersplit", "darkpulse"], pokeball: "cherishball" }, @@ -59115,68 +59832,84 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab astonish: ["8L1"], attract: ["8M"], bodypress: ["8M"], - brutalswing: ["8M", "8L16"], - bulldoze: ["8M"], - calmmind: ["8M"], + brutalswing: ["9M", "8M", "8L16"], + bulldoze: ["9M", "8M"], + calmmind: ["9M", "8M"], + confuseray: ["9M"], + confusion: ["9M"], craftyshield: ["8L20"], - curse: ["8L38"], - darkpulse: ["8M"], + curse: ["9M", "8L38"], + darkpulse: ["9M", "8M"], destinybond: ["8L62"], disable: ["8L12"], - dragonpulse: ["8M"], - earthpower: ["8M"], - earthquake: ["8M", "8L50"], - endure: ["8M"], - energyball: ["8M"], - facade: ["8M"], - faketears: ["8M"], - gigaimpact: ["8M"], + dragonpulse: ["9M", "8M"], + dreameater: ["9M"], + earthpower: ["9M", "8M"], + earthquake: ["9M", "8M", "8L50"], + endure: ["9M", "8M"], + energyball: ["9M", "8M"], + facade: ["9M", "8M"], + faketears: ["9M", "8M"], + fissure: ["9M"], + gigadrain: ["9M"], + gigaimpact: ["9M", "8M"], grassknot: ["8M"], guardsplit: ["8L56"], guardswap: ["8M"], - haze: ["8L1"], + haze: ["9M", "8L1"], + healblock: ["9M"], hex: ["8M", "8L24"], - hyperbeam: ["8M"], + hyperbeam: ["9M", "8M"], + icywind: ["9M"], imprison: ["8M"], - irondefense: ["8M"], + infestation: ["9M"], + irondefense: ["9M", "8M"], + knockoff: ["9M"], meanlook: ["8L28"], - nastyplot: ["8M"], + mudshot: ["9M"], + nastyplot: ["9M", "8M"], nightshade: ["8L1"], + ominouswind: ["9M"], + partingshot: ["9M"], payback: ["8M"], - phantomforce: ["8M"], + phantomforce: ["9M", "8M"], poltergeist: ["8T"], powersplit: ["8L56"], powerswap: ["8M"], - protect: ["8M", "8L1"], - psychic: ["8M"], + protect: ["9M", "8M", "8L1"], + psychic: ["9M", "8M"], + psyshock: ["9M"], raindance: ["8M"], rest: ["8M"], revenge: ["8M"], - rockblast: ["8M"], - rockslide: ["8M"], - rocktomb: ["8M"], + rockblast: ["9M", "8M"], + rockslide: ["9M", "8M"], + rocktomb: ["9M", "8M"], round: ["8M"], - safeguard: ["8M"], + safeguard: ["9M", "8M"], sandstorm: ["8M"], - sandtomb: ["8M"], + sandtomb: ["9M", "8M"], scaryface: ["8M", "8L1"], - shadowball: ["8M", "8L44"], - shadowclaw: ["8M", "8L0"], + selfdestruct: ["9M"], + shadowball: ["9M", "8M", "8L44"], + shadowclaw: ["9M", "8M", "8L0"], + shadowpunch: ["9M"], skillswap: ["8M"], slam: ["8L32"], sleeptalk: ["8M"], snore: ["8M"], - stealthrock: ["8M"], - stoneedge: ["8M"], - substitute: ["8M"], - taunt: ["8M"], + stealthrock: ["9M", "8M"], + stoneedge: ["9M", "8M"], + substitute: ["9M", "8M"], + taunt: ["9M", "8M"], thief: ["8M"], - toxicspikes: ["8M"], + thunderwave: ["9M"], + toxicspikes: ["9M", "8M"], trick: ["8M"], trickroom: ["8M"], - willowisp: ["8M"], + willowisp: ["9M", "8M"], wonderroom: ["8M"], - zenheadbutt: ["8M"], + zenheadbutt: ["9M", "8M"], }, }, tirtouga: { @@ -59492,7 +60225,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, trubbish: { learnset: { - acidspray: ["8L6", "7L12", "6L12", "5L12"], + acidspray: ["9M", "8L6", "7L12", "6L12", "5L12"], amnesia: ["9M", "8M", "8L9", "7L40", "6L40", "5L40"], attract: ["8M", "7M", "6M", "5M"], autotomize: ["8E", "7E"], @@ -59506,10 +60239,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab darkpulse: ["9M", "8M", "7M", "6M", "5T"], doubleslap: ["7L14", "6L14", "5L14"], doubleteam: ["7M", "6M", "5M"], - drainpunch: ["8M", "7T", "6T", "5T"], + drainpunch: ["9M", "8M", "7T", "6T", "5T"], endure: ["9M", "8M"], explosion: ["9M", "8L42", "7M", "7L47", "6M", "6L47", "5M", "5L47"], - facade: ["8M", "7M", "6M", "5M"], + facade: ["9M", "8M", "7M", "6M", "5M"], frustration: ["7M", "6M", "5M"], gigadrain: ["9M", "8M", "7T", "6T", "5T"], gunkshot: ["9M", "8M", "8L39", "7T", "7L45", "6T", "6L45", "5T", "5L45"], @@ -59533,7 +60266,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["8M", "7M", "6M", "5M"], sandattack: ["8E", "7E", "6E", "5E"], secretpower: ["6M"], - seedbomb: ["8M", "7T", "6T", "5T"], + seedbomb: ["9M", "8M", "7T", "6T", "5T"], selfdestruct: ["9M", "8M", "7E", "6E", "5E"], sleeptalk: ["8M", "7M", "6M", "5T"], sludge: ["8L18", "7L18", "6L18", "5L18"], @@ -59558,8 +60291,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, garbodor: { learnset: { - acidspray: ["8L1", "7L12", "6L12", "5L12"], + acidspray: ["9M", "8L1", "7L12", "6L12", "5L12"], amnesia: ["9M", "8M", "8L9", "7L46", "6L46", "5L46"], + ancientpower: ["9M"], attract: ["8M", "7M", "6M", "5M"], belch: ["8L33", "7L49", "6L49"], bodypress: ["8M"], @@ -59573,10 +60307,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab darkpulse: ["9M", "8M", "7M", "6M", "5T"], doubleslap: ["7L14", "6L14", "5L14"], doubleteam: ["7M", "6M", "5M"], - drainpunch: ["8M", "7T", "6T", "5T"], + drainpunch: ["9M", "8M", "7T", "6T", "5T"], endure: ["9M", "8M"], explosion: ["9M", "8L48", "7M", "7L59", "6M", "6L59", "5M", "5L59"], - facade: ["8M", "7M", "6M", "5M"], + facade: ["9M", "8M", "7M", "6M", "5M"], fling: ["8M", "7M", "6M", "5M"], focusblast: ["9M", "8M", "7M", "6M", "5M"], frustration: ["7M", "6M", "5M"], @@ -59587,6 +60321,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab healblock: ["9M"], hyperbeam: ["9M", "8M", "7M", "6M", "5M"], infestation: ["7M", "6M"], + magnetbomb: ["9M"], metalclaw: ["9M", "8L1"], mudshot: ["9M"], painsplit: ["8L39", "7T", "6T", "5T"], @@ -59606,7 +60341,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["8M", "7M", "6M", "5M"], screech: ["8M"], secretpower: ["6M"], - seedbomb: ["8M", "7T", "6T", "5T"], + seedbomb: ["9M", "8M", "7T", "6T", "5T"], selfdestruct: ["9M", "8M"], sleeptalk: ["8M", "7M", "6M", "5T"], sludge: ["8L18", "7L18", "6L18", "5L18"], @@ -60808,9 +61543,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleteam: ["7M", "6M", "5M"], endure: ["9M", "8M"], explosion: ["9M", "8E", "7M", "6M", "5M"], - facade: ["8M", "7M", "6M", "5M"], + facade: ["9M", "8M", "7M", "6M", "5M"], flashcannon: ["9M", "8M", "7M", "6M", "5M"], - frostbreath: ["7M", "6M", "5M"], + frostbreath: ["9M", "7M", "6M", "5M"], frustration: ["7M", "6M", "5M"], hail: ["8M", "8L20", "7M", "7L40", "6M", "6L40", "5M", "5L40"], harden: ["9M", "8L1", "7L4", "6L4", "5L4"], @@ -60818,7 +61553,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab icebeam: ["9M", "8M", "8L40", "7M", "7L35", "6M", "6L35", "5M", "5L35"], iceshard: ["8E", "7E", "6E", "5E"], iciclecrash: ["9M", "8E"], - iciclespear: ["8M", "8L24", "7L1", "6L1", "5L1"], + iciclespear: ["9M", "8M", "8L24", "7L1", "6L1", "5L1"], icywind: ["9M", "8M", "8L12", "7T", "7L13", "6T", "6L13", "5T", "5L13"], imprison: ["8M", "7E", "6E", "5E"], irondefense: ["9M", "8M", "7T", "7E", "6T", "6E", "5T", "5E"], @@ -60837,7 +61572,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["8M", "7M", "6M", "5M"], secretpower: ["6M"], selfdestruct: ["9M", "8M"], - sheercold: ["8L48", "7L53", "6L53", "5L53"], + sheercold: ["9M", "8L48", "7L53", "6L53", "5L53"], signalbeam: ["7T", "6T", "5T"], sleeptalk: ["8M", "7M", "6M", "5T"], snore: ["8M", "7T", "6T", "5T"], @@ -60861,9 +61596,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleteam: ["7M", "6M", "5M"], endure: ["9M", "8M"], explosion: ["9M", "7M", "6M", "5M"], - facade: ["8M", "7M", "6M", "5M"], + facade: ["9M", "8M", "7M", "6M", "5M"], flashcannon: ["9M", "8M", "7M", "6M", "5M"], - frostbreath: ["7M", "6M", "5M"], + frostbreath: ["9M", "7M", "6M", "5M"], frustration: ["7M", "6M", "5M"], hail: ["8M", "8L20", "7M", "7L42", "6M", "6L42", "5M", "5L42"], harden: ["9M", "8L1", "7L1", "6L1", "5L1"], @@ -60871,7 +61606,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab icebeam: ["9M", "8M", "8L44", "7M", "7L36", "6M", "6L36", "5M", "5L36"], iceshard: ["5D"], iciclecrash: ["9M"], - iciclespear: ["8M", "8L24", "7L1", "6L1", "5L1"], + iciclespear: ["9M", "8M", "8L24", "7L1", "6L1", "5L1"], icywind: ["9M", "8M", "8L12", "7T", "7L13", "6T", "6L13", "5T", "5L13"], imprison: ["8M", "5D"], irondefense: ["9M", "8M", "7T", "6T", "5T"], @@ -60888,7 +61623,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["8M", "7M", "6M", "5M"], secretpower: ["6M"], selfdestruct: ["9M", "8M"], - sheercold: ["8L56", "7L58", "6L58", "5L58"], + sheercold: ["9M", "8L56", "7L58", "6L58", "5L58"], signalbeam: ["7T", "6T", "5T"], sleeptalk: ["8M", "7M", "6M", "5T"], snore: ["8M", "7T", "6T", "5T"], @@ -60909,14 +61644,15 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab avalanche: ["8M", "8L16", "7L19", "6L19", "5L19"], beatup: ["8M"], blizzard: ["9M", "8M", "8L52", "7M", "7L59", "6M", "6L59", "5M", "5L59"], + chillingwater: ["9M"], confide: ["7M", "6M"], doubleteam: ["7M", "6M", "5M"], endure: ["9M", "8M"], explosion: ["9M", "7M", "6M", "5M"], - facade: ["8M", "7M", "6M", "5M"], + facade: ["9M", "8M", "7M", "6M", "5M"], flashcannon: ["9M", "8M", "7M", "6M", "5M"], freezedry: ["9M", "8L1", "7L1", "6L1"], - frostbreath: ["7M", "6M", "5M"], + frostbreath: ["9M", "7M", "6M", "5M"], frustration: ["7M", "6M", "5M"], gigaimpact: ["9M", "8M", "7M", "6M", "5M"], hail: ["8M", "8L20", "7M", "7L42", "6M", "6L42", "5M", "5L42"], @@ -60925,7 +61661,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab hypervoice: ["9M", "8M"], icebeam: ["9M", "8M", "8L44", "7M", "7L36", "6M", "6L36", "5M", "5L36"], iciclecrash: ["9M", "8L1"], - iciclespear: ["8M", "8L24", "7L1", "6L1", "5L1"], + iciclespear: ["9M", "8M", "8L24", "7L1", "6L1", "5L1"], icywind: ["9M", "8M", "8L12", "7T", "7L13", "6T", "6L13", "5T", "5L13"], imprison: ["8M"], irondefense: ["9M", "8M", "7T", "6T", "5T"], @@ -60942,7 +61678,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["8M", "7M", "6M", "5M"], secretpower: ["6M"], selfdestruct: ["9M", "8M"], - sheercold: ["8L60", "7L1", "6L1", "5L67"], + sheercold: ["9M", "8L60", "7L1", "6L1", "5L67"], signalbeam: ["7T", "6T", "5T"], sleeptalk: ["8M", "7M", "6M", "5T"], snore: ["8M", "7T", "6T", "5T"], @@ -61126,7 +61862,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab attract: ["8M", "7M", "6M", "5M"], batonpass: ["8M", "7E", "6E", "5E"], charge: ["9M", "8L20", "7L10", "6L10", "5L10"], - chargebeam: ["7M", "6M", "5M"], + chargebeam: ["9M", "7M", "6M", "5M"], charm: ["9M", "8M", "7E", "6E", "5E", "5D"], confide: ["7M", "6M"], covet: ["8E", "7T", "7E", "6T", "6E", "5T", "5E"], @@ -61134,14 +61870,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab defog: ["8E", "7T"], discharge: ["9M", "8L50", "7L50", "6L50", "5L50"], doubleteam: ["9M", "8L5", "7M", "7L19", "6M", "6L19", "5M", "5L19"], - dualwingbeat: ["8T"], + dualwingbeat: ["9M", "8T"], eerieimpulse: ["9M", "8M"], electroball: ["8M", "7L26", "6L26", "5L26"], electroweb: ["9M", "8M", "7T", "6T"], encore: ["8M", "8L35", "7L38", "6L38", "5L38"], endure: ["9M", "8M"], energyball: ["9M", "8M"], - facade: ["8M", "7M", "6M", "5M"], + facade: ["9M", "8M", "7M", "6M", "5M"], flash: ["6M", "5M"], fling: ["8M", "7M", "6M", "5M"], frustration: ["7M", "6M", "5M"], @@ -61156,6 +61892,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab pursuit: ["7L16", "6L16", "5L16"], quickattack: ["9M", "8L10", "7L4", "6L4", "5L4", "5D"], raindance: ["8M", "7M", "6M", "5M"], + razorwind: ["9M"], rest: ["8M", "7M", "6M", "5M"], return: ["7M", "6M", "5M"], risingvoltage: ["8T"], @@ -61325,12 +62062,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bulletseed: ["9M"], clearsmog: ["9M", "8L20", "7L39", "6L39", "5L39"], confide: ["7M", "6M"], + dazzlinggleam: ["9M"], defensecurl: ["9E", "8E", "7E", "6E", "5E"], doubleteam: ["7M", "6M", "5M"], endure: ["9M", "8M", "7E", "6E", "5E"], energyball: ["9M", "8M", "7M", "6M", "5M"], facade: ["9M", "8M", "7M", "6M", "5M"], feintattack: ["7L20", "6L20", "5L20"], + firstimpression: ["9M"], flash: ["6M", "5M"], foulplay: ["9M", "8M", "7T", "6T", "5T"], frustration: ["7M", "6M", "5M"], @@ -61339,10 +62078,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab grassknot: ["9M", "8M", "7M", "6M", "5M"], grassyterrain: ["9M"], growth: ["9M", "8L4", "7L6", "7E", "6L6", "6E", "5L6", "5E"], + healblock: ["9M"], ingrain: ["9M", "8L32", "7L18", "6L18", "5L18"], leafstorm: ["9M"], magicalleaf: ["9M"], megadrain: ["9M", "8L12", "7L15", "6L15", "5L15"], + mimic: ["9M"], + mudshot: ["9M"], naturepower: ["7M", "6M"], payback: ["8M", "7M", "6M", "5M"], poisonpowder: ["9E", "8E", "7E", "6E", "5E"], @@ -61352,10 +62094,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab raindance: ["9M", "8M", "7M", "6M", "5M"], rest: ["9M", "8M", "7M", "6M", "5M"], return: ["7M", "6M", "5M"], - rollout: ["9E", "8E", "7E", "6E", "5E"], + rollout: ["9M", "9E", "8E", "7E", "6E", "5E"], round: ["8M", "7M", "6M", "5M"], secretpower: ["6M"], seedbomb: ["9M", "8M", "7T", "6T", "5T"], + skullbash: ["9M"], sleeptalk: ["9M", "8M", "7M", "6M", "5T"], sludgebomb: ["9M", "8M", "7M", "6M", "5M"], snore: ["8M", "7T", "6T", "5T"], @@ -61368,6 +62111,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab sweetscent: ["9M", "8L24", "7L24", "6L24", "5L24"], synthesis: ["9M", "8L16", "7T", "7L35", "6T", "6L35", "5T", "5L35"], terablast: ["9M"], + toxic: ["9M"], + toxicspikes: ["9M"], venoshock: ["9M", "8M", "7M", "6M", "5M"], worryseed: ["9E", "8E", "7T", "6T", "5T"], }, @@ -61383,11 +62128,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bulletseed: ["9M"], clearsmog: ["9M", "8L20", "8S0", "7L43", "6L43", "5L43"], confide: ["7M", "6M"], + dazzlinggleam: ["9M"], doubleteam: ["7M", "6M", "5M"], endure: ["9M", "8M"], energyball: ["9M", "8M", "7M", "6M", "5M"], facade: ["9M", "8M", "7M", "6M", "5M"], feintattack: ["7L20", "6L20", "5L20"], + firstimpression: ["9M"], flash: ["6M", "5M"], foulplay: ["9M", "8M", "7T", "6T", "5T"], frustration: ["7M", "6M", "5M"], @@ -61397,12 +62144,15 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab grassknot: ["9M", "8M", "7M", "6M", "5M"], grassyterrain: ["9M", "8M"], growth: ["9M", "8L1", "7L1", "6L1", "5L1"], + healblock: ["9M"], hex: ["9M", "8M"], hyperbeam: ["9M", "8M", "7M", "6M", "5M"], ingrain: ["9M", "8L32", "7L18", "6L18", "5L18"], leafstorm: ["9M"], magicalleaf: ["9M"], megadrain: ["9M", "8L12", "7L15", "6L15", "5L15"], + mimic: ["9M"], + mudshot: ["9M"], naturepower: ["7M", "6M"], payback: ["8M", "7M", "6M", "5M"], pollenpuff: ["9M", "8M"], @@ -61411,10 +62161,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab raindance: ["9M", "8M", "7M", "6M", "5M"], rest: ["9M", "8M", "7M", "6M", "5M"], return: ["7M", "6M", "5M"], + rollout: ["9M"], round: ["8M", "7M", "6M", "5M"], scaryface: ["9M"], secretpower: ["6M"], seedbomb: ["9M", "8M", "7T", "6T", "5T"], + skullbash: ["9M"], sleeptalk: ["9M", "8M", "7M", "6M", "5T"], sludgebomb: ["9M", "8M", "7M", "6M", "5M"], snore: ["8M", "7T", "6T", "5T"], @@ -61424,10 +62176,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab stunspore: ["9M", "8L1"], substitute: ["9M", "8M", "7M", "6M", "5M"], sunnyday: ["9M", "8M", "7M", "6M", "5M"], - swagger: ["7M", "6M", "5M"], + swagger: ["9M", "7M", "6M", "5M"], sweetscent: ["9M", "8L24", "7L24", "6L24", "5L24"], synthesis: ["9M", "8L16", "7T", "7L35", "6T", "6L35", "5T", "5L35"], terablast: ["9M"], + torment: ["9M"], + toxic: ["9M"], + toxicspikes: ["9M"], venoshock: ["9M", "8M", "7M", "6M", "5M"], worryseed: ["7T", "6T", "5T"], }, @@ -61436,8 +62191,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ], encounters: [ { generation: 5, level: 37 }, - { generation: 5, level: 35, isHidden: true - }, + { generation: 5, level: 35, isHidden: true }, ], }, frillish: { @@ -62131,6 +62885,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab learnset: { charge: ["9M"], chargebeam: ["9M", "7M", "7L1", "6M", "6L1", "5L1"], + facade: ["9M"], knockoff: ["9M"], magnetrise: ["7T", "6T", "5T"], protect: ["9M"], @@ -62222,6 +62977,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab chargebeam: ["9M", "7M", "6M", "5M"], closecombat: ["9M"], coil: ["9M", "7L1", "6L1"], + cometpunch: ["9M"], confide: ["7M", "6M"], confuseray: ["9M"], crunch: ["9M", "7L1", "6L1", "5L1"], @@ -62261,9 +63017,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab liquidation: ["9M"], lunge: ["9M"], magnetrise: ["7T", "6T", "5T"], + muddywater: ["9M"], outrage: ["9M", "7T", "6T"], + poisonfang: ["9M"], poweruppunch: ["6M"], protect: ["9M", "7M", "6M", "5M"], + psychicfangs: ["9M"], raindance: ["9M", "7M", "6M", "5M"], rest: ["9M", "7M", "6M", "5M"], return: ["7M", "6M", "5M"], @@ -62593,6 +63352,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab minimize: ["9M", "8L1", "7L1", "6L1", "5L1"], mysticalfire: ["8M"], nightshade: ["9M", "8L28", "7L13", "6L13", "5L13"], + ominouswind: ["9M"], overheat: ["9M", "8M", "8L58", "7M", "7L69", "6M", "6L69", "5M", "5L69"], painsplit: ["9M", "8L52", "7T", "7L61", "6T", "6L61", "5T", "5L61"], payback: ["8M", "7M", "6M", "5M"], @@ -62633,6 +63393,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab chandelure: { learnset: { acidarmor: ["9M"], + acidspray: ["9M"], allyswitch: ["8M", "7T"], astonish: ["9M", "8L1"], attract: ["8M", "7M", "6M", "5M"], @@ -62673,6 +63434,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab minimize: ["9M", "8L1"], mysticalfire: ["8M"], nightshade: ["9M", "8L1"], + ominouswind: ["9M"], overheat: ["9M", "8M", "8L1", "7M", "6M", "5M"], painsplit: ["9M", "8L1", "7T", "7L1", "6T", "6L1", "5T"], payback: ["8M", "7M", "6M", "5M"], @@ -63181,11 +63943,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab defog: ["7T"], doubleteam: ["7M", "6M", "5M"], endure: ["9M", "8M"], - explosion: ["9E", "7M", "6M", "5M"], + explosion: ["9M", "9E", "7M", "6M", "5M"], facade: ["9M", "8M", "7M", "6M", "5M"], flashcannon: ["9M", "8M", "7M", "6M", "5M"], freezedry: ["9M", "8L36", "7L49", "6L50"], - frostbreath: ["9E", "7M", "6M", "5M"], + frostbreath: ["9M", "9E", "7M", "6M", "5M"], frustration: ["7M", "6M", "5M"], gigaimpact: ["9M"], hail: ["8M", "7M", "6M", "5M"], @@ -63214,7 +63976,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["8M", "7M", "6M", "5M"], scaryface: ["9M"], secretpower: ["6M"], - selfdestruct: ["8M"], + selfdestruct: ["9M", "8M"], sharpen: ["7L1", "6L9", "5L9"], sheercold: ["9M", "8L60", "7L1", "6L1", "5L61"], signalbeam: ["7T", "6T", "5T"], @@ -63375,8 +64137,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab electroweb: ["9M", "8M", "7T", "6T", "5T"], endeavor: ["7T", "6T", "5T"], endure: ["9M", "8M", "8L5", "7L30", "6L30", "5L30"], - facade: ["8M", "7M", "6M", "5M"], - fissure: ["8L55", "7L1", "6L1", "5L61"], + facade: ["9M", "8M", "7M", "6M", "5M"], + fissure: ["9M", "8L55", "7L1", "6L1", "5L61"], flail: ["8L50", "7L1", "6L1", "5L55"], flash: ["6M", "5M"], foulplay: ["8M", "7T", "6T", "5T"], @@ -63386,7 +64148,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab magnetrise: ["7T", "6T", "5T"], mefirst: ["7E", "6E"], mudbomb: ["7L21", "6L21", "5L21"], - muddywater: ["8M", "8L40", "7L40", "6L40", "5L40"], + muddywater: ["9M", "8M", "8L40", "7L40", "6L40", "5L40"], mudshot: ["9M", "8M", "8L10", "7L13", "6L13", "5L13"], mudslap: ["8L1", "7L1", "6L1", "5L1", "5D"], mudsport: ["7L1", "6L1", "5L1"], @@ -63402,7 +64164,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocktomb: ["9M", "8M", "7M", "6M", "5M"], round: ["8M", "7M", "6M", "5M"], sandstorm: ["8M", "7M", "6M", "5M"], - scald: ["8M", "7M", "6M", "5M"], + scald: ["9M", "8M", "7M", "6M", "5M"], secretpower: ["6M"], shockwave: ["7T", "7E", "6T", "6E", "5E"], sleeptalk: ["8M", "7M", "7E", "6M", "6E", "5T", "5E"], @@ -63443,17 +64205,18 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab earthpower: ["9M", "8M"], earthquake: ["9M", "8M"], endure: ["9M", "8M", "8L5"], - facade: ["8M"], - fissure: ["8L55"], + facade: ["9M", "8M"], + fissure: ["9M", "8L55"], flail: ["8L50"], flashcannon: ["9M", "8M"], foulplay: ["8M"], icefang: ["9M", "8M"], irondefense: ["9M", "8M", "8L30"], lashout: ["8T"], + magnetbomb: ["9M"], metalclaw: ["9M", "8L1"], metalsound: ["9M", "8L20"], - muddywater: ["8M", "8L40"], + muddywater: ["9M", "8M", "8L40"], mudshot: ["9M", "8M", "8L10"], mudslap: ["8L1"], painsplit: ["8E"], @@ -63467,7 +64230,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocktomb: ["9M", "8M"], round: ["8M"], sandstorm: ["8M"], - scald: ["8M"], + scald: ["9M", "8M"], screech: ["9M", "8M"], sleeptalk: ["8M"], sludgebomb: ["9M", "8M"], @@ -63476,7 +64239,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab snore: ["8M"], spite: ["8E"], stealthrock: ["9M", "8M"], - steelbeam: ["8T"], + steelbeam: ["9M", "8T"], stompingtantrum: ["8M"], stoneedge: ["9M", "8M"], substitute: ["9M", "8M"], @@ -63775,6 +64538,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bodyslam: ["9M"], brickbreak: ["9M", "8M", "7M", "6M", "5M"], bulldoze: ["9M", "8M", "7M", "6M", "5M"], + cometpunch: ["9M"], confide: ["7M", "6M"], confuseray: ["9M"], curse: ["9M", "8L16", "7L45", "6L40", "5L40"], @@ -63798,6 +64562,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab gravity: ["9M", "7T", "6T", "5T"], gyroball: ["9M", "8M", "7M", "6M", "5M"], hammerarm: ["9M", "8L48", "7L55", "6L50", "5L50"], + harden: ["9M"], heavyslam: ["9M", "8M", "8L40"], helpinghand: ["9M", "8M"], hex: ["9M"], @@ -63806,13 +64571,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab icywind: ["9M", "8M", "7T", "6T", "5T"], imprison: ["9M", "8M"], irondefense: ["9M", "8M", "8L28", "7T", "7L17", "6T", "6L17", "5T", "5L17"], + ironhead: ["9M"], knockoff: ["9M"], lowkick: ["9M", "8M", "7T", "6T", "5T"], lowsweep: ["9M", "8M", "7M", "6M", "5M"], magiccoat: ["7T", "6T", "5T"], + magnetbomb: ["9M"], magnitude: ["7L30", "6L25", "5L25"], megakick: ["8M"], megapunch: ["9M", "8M", "8L32", "7L25", "6L21", "5L21"], + mudshot: ["9M"], mudslap: ["9M", "8L1", "7L5", "6L5", "5L5"], nightshade: ["9M", "8L20", "7L40", "6L35", "5L35"], phantomforce: ["9M", "8M", "8L44"], @@ -63830,13 +64598,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rockslide: ["9M", "8M", "7M", "6M", "5M"], rocksmash: ["6M", "5M"], rocktomb: ["9M", "8M", "7M", "6M", "5M"], - rollout: ["7L9", "6L9", "5L9", "5D"], + rollout: ["9M", "7L9", "6L9", "5L9", "5D"], round: ["8M", "7M", "6M", "5M"], - safeguard: ["8M", "7M", "6M", "5M"], + safeguard: ["9M", "8M", "7M", "6M", "5M"], sandstorm: ["9M"], scorchingsands: ["9M", "8T"], secretpower: ["6M"], - selfdestruct: ["8M"], + selfdestruct: ["9M", "8M"], shadowball: ["9M", "8M", "8L36", "7M", "6M", "5M"], shadowpunch: ["9M", "8L12", "7L13", "6L13", "5L13"], shockwave: ["7T", "6T"], @@ -63851,6 +64619,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab sunnyday: ["9M"], superpower: ["8M", "7T", "6T", "5T"], swagger: ["7M", "6M", "5M"], + tackle: ["9M"], takedown: ["9M"], telekinesis: ["7T", "5M"], terablast: ["9M"], @@ -63869,6 +64638,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bulldoze: ["9M", "8M", "7M", "6M", "5M"], chargebeam: ["9M", "7M", "6M", "5M"], closecombat: ["9M", "8M"], + cometpunch: ["9M"], confide: ["7M", "6M"], confuseray: ["9M"], curse: ["9M", "8L16", "7L47", "6L40", "5L40"], @@ -63884,6 +64654,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M", "8M"], facade: ["9M", "8M", "7M", "6M", "5M"], firepunch: ["9M", "8M", "7T", "6T", "5T"], + fissure: ["9M"], flash: ["6M", "5M"], flashcannon: ["9M", "8M", "7M", "6M", "5M"], fling: ["9M", "8M", "7M", "6M", "5M"], @@ -63896,6 +64667,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab gravity: ["9M", "7T", "6T", "5T"], gyroball: ["9M", "8M", "7M", "6M", "5M", "5S0"], hammerarm: ["9M", "8L52", "7L61", "6L60", "5L60", "5S0"], + harden: ["9M"], hardpress: ["9M"], heatcrash: ["9M", "8M"], heavyslam: ["9M", "8M", "8L40", "7L1", "6L43", "5L43"], @@ -63908,13 +64680,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab icywind: ["9M", "8M", "7T", "6T", "5T"], imprison: ["9M", "8M"], irondefense: ["9M", "8M", "8L28", "7T", "7L17", "6T", "6L17", "5T", "5L17"], + ironhead: ["9M"], knockoff: ["9M"], lowkick: ["9M", "8M", "7T", "6T", "5T"], lowsweep: ["9M", "8M", "7M", "6M", "5M"], magiccoat: ["7T", "6T", "5T"], + magnetbomb: ["9M"], magnitude: ["7L30", "6L25", "5L25"], megakick: ["8M"], megapunch: ["9M", "8M", "8L32", "7L25", "6L21", "5L21"], + mudshot: ["9M"], mudslap: ["9M", "8L1", "7L1", "6L1", "5L1"], nightshade: ["9M", "8L20", "7L40", "6L35", "5L35"], phantomforce: ["9M", "8M", "8L46", "7L76", "6L1"], @@ -63932,17 +64707,18 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rockslide: ["9M", "8M", "7M", "6M", "5M"], rocksmash: ["6M", "5M"], rocktomb: ["9M", "8M", "7M", "6M", "5M"], - rollout: ["7L9", "6L9", "5L9"], + rollout: ["9M", "7L9", "6L9", "5L9"], round: ["8M", "7M", "6M", "5M"], - safeguard: ["8M", "7M", "6M", "5M"], + safeguard: ["9M", "8M", "7M", "6M", "5M"], sandstorm: ["9M"], scorchingsands: ["9M", "8T"], secretpower: ["6M"], - selfdestruct: ["8M"], + selfdestruct: ["9M", "8M"], shadowball: ["9M", "8M", "8L36", "7M", "6M", "5M"], shadowpunch: ["9M", "8L12", "7L13", "6L13", "5L13", "5S0"], shockwave: ["7T", "6T"], signalbeam: ["7T", "6T", "5T"], + skullbash: ["9M"], sleeptalk: ["9M", "8M", "7M", "6M", "5T"], smackdown: ["9M"], snore: ["8M", "7T", "6T", "5T"], @@ -63955,6 +64731,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab sunnyday: ["9M"], superpower: ["8M", "7T", "6T", "5T"], swagger: ["7M", "6M", "5M"], + tackle: ["9M"], takedown: ["9M"], telekinesis: ["7T", "5M"], terablast: ["9M"], @@ -65232,7 +66009,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab block: ["7T", "6T", "5T"], bodypress: ["9M"], bodyslam: ["9M"], - bounce: ["8M", "7T", "6T", "5T"], + bounce: ["9M", "8M", "7T", "6T", "5T"], brickbreak: ["9M", "8M"], calmmind: ["9M", "8M", "7M", "6M", "5M"], closecombat: ["9M", "9S6", "8M", "8L70", "8S5", "7L1", "6L1", "5L73"], @@ -65249,6 +66026,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab focusblast: ["9M", "8M", "7M", "6M", "5M"], frustration: ["7M", "6M", "5M"], gigaimpact: ["9M", "8M", "7M", "6M", "5M"], + headbutt: ["9M"], heavyslam: ["9M"], helpinghand: ["9M", "8M", "8L1", "7T", "7L13", "6T", "6L25", "5T", "5L25", "5S0", "5S1"], honeclaws: ["6M", "5M"], @@ -65258,7 +66036,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab laserfocus: ["7T"], leer: ["9M", "8L1", "7L1", "6L1", "5L1"], magnetrise: ["7T", "6T", "5T"], - megahorn: ["8M"], + megahorn: ["9M", "8M"], metalburst: ["9M", "8L35", "7L1", "6L1", "5L67"], metalclaw: ["9M", "8L7", "7L1", "6L13", "5L13"], metalsound: ["9M"], @@ -65279,10 +66057,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocksmash: ["6M", "5M"], round: ["8M", "7M", "6M", "5M"], sacredsword: ["9M", "9S6", "8L49", "8S5", "7L31", "7S4", "6L42", "6S3", "5L42", "5S0", "5S1", "5S2"], - safeguard: ["8M", "7M", "6M", "5M"], + safeguard: ["9M", "8M", "7M", "6M", "5M"], sandstorm: ["9M", "8M", "7M", "6M", "5M"], scaryface: ["9M", "8M"], secretpower: ["6M"], + skullbash: ["9M"], sleeptalk: ["9M", "8M", "7M", "6M", "5T"], smartstrike: ["9M", "8M"], snore: ["8M", "7T", "6T", "5T"], @@ -65343,13 +66122,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab focusblast: ["9M", "8M", "7M", "6M", "5M"], frustration: ["7M", "6M", "5M"], gigaimpact: ["9M", "8M", "7M", "6M", "5M"], + headbutt: ["9M"], + headsmash: ["9M"], + heavyslam: ["9M"], helpinghand: ["9M", "8M", "8L1", "7T", "7L13", "6T", "6L25", "5T", "5L25", "5S0", "5S1"], highhorsepower: ["9M"], hyperbeam: ["9M", "8M", "7M", "6M", "5M"], ironhead: ["9M", "8M", "7T", "6T", "5T"], laserfocus: ["7T"], leer: ["9M", "8L1", "7L1", "6L1", "5L1"], - megahorn: ["8M"], + megahorn: ["9M", "8M"], poisonjab: ["9M", "8M", "7M", "6M", "5M"], protect: ["9M", "8M", "7M", "6M", "5M"], psychup: ["9M", "7M", "6M", "5M"], @@ -65366,13 +66148,15 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rockpolish: ["7M", "6M", "5M"], rockslide: ["9M", "8M", "8L35", "7M", "7L25", "7S4", "6M", "6L37", "6S3", "5M", "5L37", "5S0", "5S1"], rocksmash: ["6M", "5M"], + rockthrow: ["9M"], rocktomb: ["9M", "8M", "7M", "6M", "5M"], round: ["8M", "7M", "6M", "5M"], sacredsword: ["9M", "9S6", "8L49", "8S5", "7L31", "7S4", "6L42", "6S3", "5L42", "5S0", "5S1", "5S2"], - safeguard: ["8M", "7M", "6M", "5M"], + safeguard: ["9M", "8M", "7M", "6M", "5M"], sandstorm: ["9M", "8M", "7M", "6M", "5M"], scaryface: ["9M", "8M"], secretpower: ["6M"], + skullbash: ["9M"], sleeptalk: ["9M", "8M", "7M", "6M", "5T"], smackdown: ["9M", "8L7", "7M", "7L1", "6M", "6L13", "5M", "5L13"], smartstrike: ["9M", "8M"], @@ -65412,7 +66196,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab aurasphere: ["9M"], block: ["7T", "6T", "5T"], bodyslam: ["9M"], - bounce: ["8M", "7T", "6T", "5T"], + bounce: ["9M", "8M", "7T", "6T", "5T"], brickbreak: ["9M", "8M"], bulletseed: ["9M"], calmmind: ["9M", "8M", "7M", "6M", "5M"], @@ -65434,16 +66218,20 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab gigaimpact: ["9M", "8M", "7M", "6M", "5M"], grassknot: ["9M", "8M", "7M", "6M", "5M"], grassyglide: ["9M", "8T"], + headbutt: ["9M"], helpinghand: ["9M", "8M", "8L1", "7T", "7L13", "6T", "6L25", "5T", "5L25", "5S0", "5S1"], + hornleech: ["9M"], hyperbeam: ["9M", "8M", "7M", "6M", "5M"], + irondefense: ["9M"], laserfocus: ["7T"], leafblade: ["9M", "9S6", "8M", "8L63", "8S5", "7L1", "7S4", "6L1", "5L67"], leafstorm: ["9M", "8M"], leer: ["9M", "8L1", "7L1", "6L1", "5L1"], lightscreen: ["9M", "8M", "7M", "6M", "5M"], magicalleaf: ["9M", "8M", "8L7", "7L1", "6L13", "5L13"], - megahorn: ["8M"], + megahorn: ["9M", "8M"], naturepower: ["7M", "6M"], + poisonjab: ["9M"], protect: ["9M", "8M", "7M", "6M", "5M"], psychup: ["9M", "7M", "6M", "5M"], quickattack: ["9M", "8L1", "7L1", "6L1", "5L1"], @@ -65458,15 +66246,17 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocksmash: ["6M", "5M"], round: ["8M", "7M", "6M", "5M"], sacredsword: ["9M", "9S6", "8L49", "8S5", "7L31", "7S4", "6L42", "6S3", "5L42", "5S0", "5S1", "5S2"], - safeguard: ["8M", "7M", "6M", "5M"], + safeguard: ["9M", "8M", "7M", "6M", "5M"], scaryface: ["9M"], secretpower: ["6M"], seedbomb: ["9M", "8M", "7T", "6T", "5T"], + skullbash: ["9M"], sleeptalk: ["9M", "8M", "7M", "6M", "5T"], smartstrike: ["9M", "8M"], snore: ["8M", "7T", "6T", "5T"], solarbeam: ["9M", "8M", "7M", "6M", "5M"], solarblade: ["9M", "8M"], + stealthrock: ["9M"], stoneedge: ["9M", "8M", "7M", "6M", "5M"], strength: ["6M", "5M"], substitute: ["9M", "8M", "7M", "6M", "5M"], @@ -65594,7 +66384,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ], eventOnly: true, }, - tornadustherian: { eventOnly: true }, + tornadustherian: { + eventOnly: true, + }, thundurus: { learnset: { acrobatics: ["9M"], @@ -65699,7 +66491,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ], eventOnly: true, }, - thundurustherian: { eventOnly: true }, + thundurustherian: { + eventOnly: true, + }, reshiram: { learnset: { ancientpower: ["9M", "8L1", "7L15", "6L15", "5L15"], @@ -66009,7 +66803,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ], eventOnly: true, }, - landorustherian: { eventOnly: true }, + landorustherian: { + eventOnly: true, + }, kyurem: { learnset: { aerialace: ["9M"], @@ -66314,7 +67110,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab aquatail: ["9M", "9S5", "9S6", "8L35", "7T", "7L37", "6T", "6L37", "5T", "5L37"], aurasphere: ["9M", "8M"], batonpass: ["9M"], - bounce: ["8M", "7T", "6T", "5T"], + bodyslam: ["9M"], + bounce: ["9M", "8M", "7T", "6T", "5T"], brickbreak: ["9M", "8M"], bubblebeam: ["9M", "8L7", "7L1", "6L13", "6S3", "5L13", "5S0"], calmmind: ["9M", "8M", "7M", "6M", "5M"], @@ -66327,6 +67124,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleedge: ["9M"], doublekick: ["9M", "9S6", "8L21", "7L1", "6L7", "6S2", "6S3", "5L7", "5S0"], doubleteam: ["7M", "6M", "5M"], + earthpower: ["9M"], endeavor: ["7T", "6T", "5T"], endure: ["9M", "8M"], facade: ["9M", "8M", "7M", "6M", "5M"], @@ -66336,15 +67134,18 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab frustration: ["7M", "6M", "5M"], gigaimpact: ["9M", "8M", "7M", "6M", "5M"], hail: ["8M", "7M", "6M", "5M"], + headbutt: ["9M"], helpinghand: ["9M", "8M", "8L1", "7T", "7L25", "6T", "6L25", "5T", "5L25"], hydropump: ["9M", "8M", "8L63", "8S4", "7L67", "6L67", "6S2", "5L67", "5S1"], hyperbeam: ["9M", "8M", "7M", "6M", "5M"], + icebeam: ["9M"], icywind: ["9M", "8M", "7T", "6T", "5T"], lastresort: ["7T", "6T", "5T"], leer: ["9M", "8L1", "7L1", "6L1", "6S2", "6S3", "5L1", "5S0"], + lightscreen: ["9M"], liquidation: ["9M", "8M", "7T"], lowkick: ["9M", "8M", "7T"], - megahorn: ["8M"], + megahorn: ["9M", "8M"], muddywater: ["9M", "8M"], painsplit: ["9M"], poisonjab: ["9M", "8M", "7M", "6M", "5M"], @@ -66362,13 +67163,15 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocksmash: ["6M", "5M"], round: ["8M", "7M", "6M", "5M"], sacredsword: ["9M", "9S5", "9S6", "8L49", "8S4", "7L43", "6L43", "5L43", "5S1"], - safeguard: ["8M", "7M", "6M", "5M"], - scald: ["8M", "7M", "6M", "5M"], + safeguard: ["9M", "8M", "7M", "6M", "5M"], + scald: ["9M", "8M", "7M", "6M", "5M"], secretpower: ["6M"], secretsword: ["9M", "8L1", "8S4", "7T", "6T", "5T"], + skullbash: ["9M"], sleeptalk: ["9M", "8M", "7M", "6M", "5T"], smartstrike: ["9M", "8M"], snore: ["8M", "7T", "6T", "5T"], + stealthrock: ["9M"], stoneedge: ["9M", "8M", "7M", "6M", "5M"], strength: ["6M", "5M"], substitute: ["9M", "8M", "7M", "6M", "5M"], @@ -66384,9 +67187,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab trailblaze: ["9M"], upperhand: ["9M"], vacuumwave: ["9M"], + waterfall: ["9M"], waterpulse: ["9M", "7T", "6T"], + whirlpool: ["9M"], workup: ["9M", "8M", "8L1", "7M", "7L61", "6L61", "5M", "5L61"], xscissor: ["9M", "8M", "7M", "6M", "5M"], + zenheadbutt: ["9M"], }, eventData: [ { generation: 5, level: 15, moves: ["aquajet", "leer", "doublekick", "bubblebeam"], pokeball: "cherishball" }, @@ -66399,28 +67205,32 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ], eventOnly: true, }, - keldeoresolute: { eventOnly: true }, + keldeoresolute: { + eventOnly: true, + }, meloetta: { learnset: { acrobatics: ["9M", "7M", "7L26", "6M", "6L26", "5M", "5L26"], + agility: ["9M"], alluringvoice: ["9M"], allyswitch: ["7T"], batonpass: ["9M"], brickbreak: ["9M", "7M", "6M", "5M"], calmmind: ["9M", "7M", "6M", "5M"], celebrate: ["7S3"], - chargebeam: ["7M", "6M", "5M"], + chargebeam: ["9M", "7M", "6M", "5M"], charm: ["9M"], closecombat: ["9M", "7L78", "7S2", "6L78", "5L78", "5S1"], coaching: ["9M"], + cometpunch: ["9M"], confide: ["7M", "6M"], confusion: ["9M", "7L1", "6L11", "5L11", "5S0"], covet: ["7T", "6T", "5T"], dazzlinggleam: ["9M", "7M", "6M"], disarmingvoice: ["9M"], - doubleteam: ["7M", "6M", "5M"], + doubleteam: ["9M", "7M", "6M", "5M"], drainpunch: ["9M", "7T", "6T", "5T"], - dreameater: ["7M", "6M", "5M"], + dreameater: ["9M", "7M", "6M", "5M"], dualchop: ["7T", "6T", "5T"], echoedvoice: ["9M", "9S5", "7M", "7L36", "6M", "6L36", "5M", "5L36"], embargo: ["7M", "6M", "5M"], @@ -66431,6 +67241,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab firepunch: ["9M", "7T", "6T", "5T"], flash: ["6M", "5M"], fling: ["9M", "7M", "6M", "5M"], + flipturn: ["9M"], focusblast: ["9M", "7M", "6M", "5M"], focuspunch: ["9M", "7T", "6T"], frustration: ["7M", "6M", "5M"], @@ -66452,10 +67263,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab magiccoat: ["7T", "6T", "5T"], magicroom: ["7T", "6T", "5T"], metronome: ["9M"], + mimic: ["9M"], payback: ["7M", "6M", "5M"], perishsong: ["9M", "7L85", "6L85", "5L85"], + petaldance: ["9M"], playrough: ["9M"], - poweruppunch: ["6M"], + powergem: ["9M"], + poweruppunch: ["9M", "6M"], protect: ["9M", "7M", "6M", "5M"], psybeam: ["9M", "9S5", "7L31", "6L31", "5L31"], psychic: ["9M", "9S4", "7M", "7L57", "7S2", "6M", "6L57", "5M", "5L57", "5S1"], @@ -66504,7 +67318,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab uturn: ["9M", "7M", "7L43", "6M", "6L43", "5M", "5L43"], wakeupslap: ["7L50", "6L50", "5L50"], wonderroom: ["7T", "6T", "5T"], - workup: ["7M", "5M"], + workup: ["9M", "7M", "5M"], zenheadbutt: ["9M", "7T", "6T", "5T"], }, eventData: [ @@ -66521,84 +67335,88 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab learnset: { aerialace: ["7M", "6M", "5M"], allyswitch: ["8M", "7T"], + ancientpower: ["9M"], assurance: ["8M"], - blazekick: ["8M", "5S2"], - blizzard: ["8M", "7M", "6M", "5M"], + blazekick: ["9M", "8M", "5S2"], + blizzard: ["9M", "8M", "7M", "6M", "5M"], bugbite: ["7T", "6T", "5T"], - bugbuzz: ["8M", "8L56", "7L55", "6L55", "5L55"], - chargebeam: ["7M", "6M", "5M"], + bugbuzz: ["9M", "8M", "8L56", "7L55", "6L55", "5L55"], + chargebeam: ["9M", "7M", "6M", "5M"], confide: ["7M", "6M"], - darkpulse: ["8M", "7M", "6M", "5T"], + darkpulse: ["9M", "8M", "7M", "6M", "5T"], doubleteam: ["7M", "6M", "5M"], - electroweb: ["8M", "7T", "6T", "5T"], - endure: ["8M"], - energyball: ["8M", "7M", "6M", "5M"], + electroweb: ["9M", "8M", "7T", "6T", "5T"], + endure: ["9M", "8M"], + energyball: ["9M", "8M", "7M", "6M", "5M"], explosion: ["7M", "6M", "5M"], extremespeed: ["5S2"], - facade: ["8M", "7M", "6M", "5M"], + facade: ["9M", "8M", "7M", "6M", "5M"], fellstinger: ["8L21", "8S4", "7L1", "6L1"], - flamecharge: ["8L28", "7M", "7L18", "6M", "6L18", "5M", "5L18"], - flamethrower: ["8M", "7M", "6M", "5M"], + flamecharge: ["9M", "8L28", "7M", "7L18", "6M", "6L18", "5M", "5L18"], + flamethrower: ["9M", "8M", "7M", "6M", "5M"], flash: ["6M", "5M"], - flashcannon: ["8M", "7M", "6M", "5M"], - fly: ["8M", "7M", "6M", "5M"], + flashcannon: ["9M", "8M", "7M", "6M", "5M"], + fly: ["9M", "8M", "7M", "6M", "5M"], frustration: ["7M", "6M", "5M"], furycutter: ["8L1", "7L7", "6L7", "5L7"], - gigadrain: ["8M", "7T", "6T", "5T"], - gigaimpact: ["8M", "7M", "6M", "5M"], + gigadrain: ["9M", "8M", "7T", "6T", "5T"], + gigaimpact: ["9M", "8M", "7M", "6M", "5M"], gravity: ["7T", "6T", "5T"], - gunkshot: ["8M", "7T", "6T", "5T"], + gunkshot: ["9M", "8M", "7T", "6T", "5T"], honeclaws: ["6M", "5M"], - hyperbeam: ["8M", "7M", "7L73", "6M", "6L73", "5M", "5L73"], - icebeam: ["8M", "7M", "6M", "5M"], + hyperbeam: ["9M", "8M", "7M", "7L73", "6M", "6L73", "5M", "5L73"], + icebeam: ["9M", "8M", "7M", "6M", "5M"], infestation: ["7M", "6M"], - irondefense: ["8M", "7T", "6T", "5T"], - ironhead: ["8M", "7T", "6T", "5T"], + irondefense: ["9M", "8M", "7T", "6T", "5T"], + ironhead: ["9M", "8M", "7T", "6T", "5T"], lastresort: ["7T", "6T", "5T"], - leechlife: ["8M"], - lightscreen: ["8M", "7M", "6M", "5M"], + leechlife: ["9M", "8M"], + lightscreen: ["9M", "8M", "7M", "6M", "5M"], lockon: ["8L77", "7L11", "6L11", "5L11"], + lunge: ["9M"], magiccoat: ["7T", "6T", "5T"], - magnetbomb: ["7L22", "6L22", "6S3", "5L22", "5S0", "5S1"], + magnetbomb: ["9M", "7L22", "6L22", "6S3", "5L22", "5S0", "5S1"], magnetrise: ["8L49", "7T", "7L1", "6T", "6L1", "5T", "5L1"], - metalclaw: ["8L14", "8S4", "7L1", "6L1", "5L1"], - metalsound: ["8L35", "7L33", "6L33", "5L33"], - protect: ["8M", "7M", "6M", "5M"], - psychic: ["8M", "7M", "6M", "5M"], - quickattack: ["8L1", "7L1", "6L1", "5L1"], + metalclaw: ["9M", "8L14", "8S4", "7L1", "6L1", "5L1"], + metalsound: ["9M", "8L35", "7L33", "6L33", "5L33"], + protect: ["9M", "8M", "7M", "6M", "5M"], + psychic: ["9M", "8M", "7M", "6M", "5M"], + quickattack: ["9M", "8L1", "7L1", "6L1", "5L1"], recycle: ["7T", "6T", "5T"], - reflect: ["8M", "7M", "6M", "5M"], + reflect: ["9M", "8M", "7M", "6M", "5M"], rest: ["8M", "7M", "6M", "5M"], return: ["7M", "6M", "5M"], rockpolish: ["7M", "6M", "5M"], round: ["8M", "7M", "6M", "5M"], - screech: ["8M", "8L7", "7L1", "6L1", "5L1"], + screech: ["9M", "8M", "8L7", "7L1", "6L1", "5L1"], secretpower: ["6M"], - selfdestruct: ["8M", "8L91", "7L77", "6L77", "5L77"], - shadowclaw: ["8M", "7M", "6M", "5M"], + selfdestruct: ["9M", "8M", "8L91", "7L77", "6L77", "5L77"], + shadowball: ["9M"], + shadowclaw: ["9M", "8M", "7M", "6M", "5M"], shiftgear: ["5S2"], shockwave: ["7T", "6T"], signalbeam: ["7T", "7L40", "6T", "6L40", "6S3", "5T", "5L40", "5S0", "5S1"], simplebeam: ["8L63", "7L62", "6L62", "5L62"], + skullbash: ["9M"], slash: ["7L29", "6L29", "5L29"], sleeptalk: ["8M", "7M", "6M", "5T"], snore: ["8M", "7T", "6T", "5T"], - solarbeam: ["8M", "7M", "6M", "6S3", "5M", "5S0", "5S1"], - steelbeam: ["8T"], + solarbeam: ["9M", "8M", "7M", "6M", "6S3", "5M", "5S0", "5S1"], + steelbeam: ["9M", "8T"], strugglebug: ["6M", "5M"], - substitute: ["8M", "7M", "6M", "5M"], + substitute: ["9M", "8M", "7M", "6M", "5M"], swagger: ["7M", "6M", "5M"], - swift: ["8M"], - technoblast: ["8L84", "8S4", "7L1", "6L1", "6S3", "5L1", "5S0", "5S1", "5S2"], + swift: ["9M", "8M"], + technoblast: ["9M", "8L84", "8S4", "7L1", "6L1", "6S3", "5L1", "5S0", "5S1", "5S2"], telekinesis: ["7T"], - thunder: ["8M", "7M", "6M", "5M"], - thunderbolt: ["8M", "7M", "6M", "5M"], - thunderwave: ["8M", "7M", "6M", "5M"], - triattack: ["8M", "7L44", "6L44", "5L44"], - uturn: ["8M", "7M", "6M", "5M"], - xscissor: ["8M", "8L42", "8S4", "7M", "7L51", "6M", "6L51", "5M", "5L51"], - zapcannon: ["8L70", "7L66", "6L66", "5L66"], - zenheadbutt: ["8M", "7T", "6T", "5T"], + thunder: ["9M", "8M", "7M", "6M", "5M"], + thunderbolt: ["9M", "8M", "7M", "6M", "5M"], + thunderwave: ["9M", "8M", "7M", "6M", "5M"], + triattack: ["9M", "8M", "7L44", "6L44", "5L44"], + uturn: ["9M", "8M", "7M", "6M", "5M"], + xscissor: ["9M", "8M", "8L42", "8S4", "7M", "7L51", "6M", "6L51", "5M", "5L51"], + zapcannon: ["9M", "8L70", "7L66", "6L66", "5L66"], + zenheadbutt: ["9M", "8M", "7T", "6T", "5T"], }, eventData: [ { generation: 5, level: 50, moves: ["technoblast", "magnetbomb", "solarbeam", "signalbeam"], pokeball: "cherishball" }, @@ -66609,10 +67427,18 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ], eventOnly: true, }, - genesectburn: { eventOnly: true }, - genesectchill: { eventOnly: true }, - genesectdouse: { eventOnly: true }, - genesectshock: { eventOnly: true }, + genesectburn: { + eventOnly: true, + }, + genesectchill: { + eventOnly: true, + }, + genesectdouse: { + eventOnly: true, + }, + genesectshock: { + eventOnly: true, + }, chespin: { learnset: { aerialace: ["9M", "7M", "6M"], @@ -66835,7 +67661,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleteam: ["7M", "6M"], dragonclaw: ["9M", "7M", "6M"], drainpunch: ["9M", "7T", "6T"], - dualchop: ["7T", "6T"], + dualchop: ["9M", "7T", "6T"], earthquake: ["9M", "7M", "6M"], endeavor: ["9M", "7T", "6T"], endure: ["9M"], @@ -66899,11 +67725,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab secretpower: ["6M"], seedbomb: ["9M", "7T", "7L35", "6T", "6L35"], shadowclaw: ["9M", "7M", "6M"], + skullbash: ["9M"], sleeptalk: ["9M", "7M", "6M"], sludgebomb: ["7M", "6M"], smackdown: ["9M", "7M", "6M"], snore: ["7T", "6T"], solarbeam: ["9M", "7M", "6M"], + solarblade: ["9M"], spikes: ["9M"], spikyshield: ["9M", "7L1", "6L36"], stompingtantrum: ["9M", "7T"], @@ -67103,6 +67931,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab blastburn: ["9M", "7T", "6T"], burningjealousy: ["9M"], calmmind: ["9M", "7M", "6M"], + chargebeam: ["9M"], charm: ["9M"], confide: ["7M", "6M"], confuseray: ["9M"], @@ -67110,7 +67939,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab cut: ["6M"], dazzlinggleam: ["9M", "7M", "6M"], doubleteam: ["9M", "7M", "6M"], - dreameater: ["7M", "6M"], + dreameater: ["9M", "7M", "6M"], echoedvoice: ["7M", "6M"], embargo: ["7M", "6M"], ember: ["9M", "7L1", "6L5"], @@ -67153,6 +67982,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mysticalfire: ["9M", "7L1", "6L36"], nastyplot: ["9M"], nightshade: ["9M"], + ominouswind: ["9M"], overheat: ["9M", "7M", "6M"], poweruppunch: ["6M"], protect: ["9M", "7M", "6M"], @@ -67163,6 +67993,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab psychup: ["9M", "7M", "6M"], psyshock: ["9M", "7M", "7L38", "6M", "6L34"], raindance: ["9M", "7M", "6M"], + razorwind: ["9M"], recycle: ["7T", "6T"], reflect: ["9M"], rest: ["9M", "7M", "6M"], @@ -67176,6 +68007,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab shadowball: ["9M", "7M", "7L1", "6M", "6L1"], shockwave: ["7T", "6T"], signalbeam: ["7T", "6T"], + silverwind: ["9M"], skillswap: ["9M", "7T", "6T"], sleeptalk: ["9M", "7M", "6M"], snatch: ["7T", "6T"], @@ -67427,6 +68259,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab psyshock: ["9M"], quickattack: ["9M", "7L1", "6L8"], raindance: ["9M", "7M", "6M"], + razorwind: ["9M"], rest: ["9M", "7M", "6M"], return: ["7M", "6M"], rockslide: ["9M", "7M", "6M"], @@ -67461,6 +68294,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab trailblaze: ["9M"], upperhand: ["9M"], uturn: ["9M", "7M", "6M"], + vacuumwave: ["9M"], waterfall: ["9M", "7M", "6M"], watergun: ["9M"], waterpledge: ["9M", "7T", "6T"], @@ -67591,7 +68425,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab earthquake: ["9M", "8M", "8L36", "7M", "7L49", "6M", "6L49"], endeavor: ["7T", "6T"], endure: ["9M", "8M"], - facade: ["8M", "7M", "7L47", "6M", "6L47"], + facade: ["9M", "8M", "7M", "7L47", "6M", "6L47"], flail: ["8L15", "7L29", "6L29"], fling: ["8M", "7M", "6M"], frustration: ["7M", "6M"], @@ -67651,18 +68485,22 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab brutalswing: ["9M", "8M", "7M"], bulkup: ["9M", "8M", "7M", "6M"], bulldoze: ["9M", "8M", "8L23", "7M", "7L1", "6M", "6L1"], + circlethrow: ["9M"], + cometpunch: ["9M"], confide: ["7M", "6M"], cut: ["6M"], dig: ["9M", "8M", "8L28", "7L37", "6M", "6L37"], doublekick: ["8L18", "7L21", "6L20"], doubleslap: ["7L13"], doubleteam: ["7M", "6M"], + drainpunch: ["9M"], earthpower: ["9M", "8M", "7T", "6T"], earthquake: ["9M", "8M", "8L48", "7M", "7L57", "6M", "6L57"], endeavor: ["7T", "6T"], endure: ["9M", "8M"], - facade: ["8M", "7M", "7L54", "6M", "6L53"], + facade: ["9M", "8M", "7M", "7L54", "6M", "6L53"], firepunch: ["9M", "8M", "7T", "6T"], + fissure: ["9M"], flail: ["8L15", "7L32", "6L31"], fling: ["8M", "7M", "6M"], focuspunch: ["7T", "6T"], @@ -67704,8 +68542,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["8M", "7M", "6M"], sandstorm: ["8M", "7M", "6M"], sandtomb: ["8M"], - scorchingsands: ["8T"], + scorchingsands: ["9M", "8T"], secretpower: ["6M"], + skullbash: ["9M"], sleeptalk: ["8M", "7M", "6M"], sludgebomb: ["9M", "8M", "7M", "6M"], smackdown: ["7M", "6M"], @@ -67856,6 +68695,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab terablast: ["9M"], thief: ["9M", "8M", "7M", "6M"], uturn: ["9M", "8M", "7M", "6M"], + vacuumwave: ["9M"], whirlwind: ["9M"], willowisp: ["9M", "8M", "7M", "6M"], wingattack: ["9M"], @@ -67873,6 +68713,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab aircutter: ["9M"], airslash: ["9M"], attract: ["8M", "7M", "6M"], + blazekick: ["9M"], bravebird: ["9M", "8M", "8L83", "7L1", "6L1"], bulkup: ["9M", "8M", "7M", "6M"], confide: ["7M", "6M"], @@ -67915,6 +68756,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab roost: ["9M", "8L65", "7M", "7L25", "6M", "6L25"], round: ["8M", "7M", "6M"], secretpower: ["6M"], + skyattack: ["9M"], sleeptalk: ["9M", "8M", "7M", "6M"], snatch: ["7T", "6T"], snore: ["8M", "7T", "6T"], @@ -67934,6 +68776,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thief: ["9M", "8M", "7M", "6M"], upperhand: ["9M"], uturn: ["9M", "8M", "7M", "6M"], + vacuumwave: ["9M"], whirlwind: ["9M"], willowisp: ["9M", "8M", "7M", "6M"], wingattack: ["9M"], @@ -67946,6 +68789,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab scatterbug: { learnset: { bugbite: ["9M", "7T", "7L15", "6T", "6L15"], + endure: ["9M"], + facade: ["9M"], poisonpowder: ["9E", "7E", "6E"], pounce: ["9M"], protect: ["9M"], @@ -67961,6 +68806,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab learnset: { bugbite: ["9M", "7T", "6T"], electroweb: ["7T", "6T"], + endure: ["9M"], + facade: ["9M"], harden: ["9M", "7L1", "6L1"], infestation: ["9M"], irondefense: ["9M", "7T", "6T"], @@ -67992,6 +68839,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleteam: ["7M", "6M"], drainingkiss: ["9M", "7L25", "6L25"], dreameater: ["7M", "6M"], + dualwingbeat: ["9M"], electroweb: ["7T", "6T"], endeavor: ["7T", "6T"], endure: ["9M"], @@ -68009,6 +68857,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab irondefense: ["9M"], laserfocus: ["7T"], lightscreen: ["9M", "7M", "7L12", "6M", "6L1"], + ominouswind: ["9M"], + petaldance: ["9M"], poisonpowder: ["9M", "7L1", "6L1"], pollenpuff: ["9M"], pounce: ["9M"], @@ -68026,6 +68876,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab safeguard: ["9M", "7M", "7L41", "6M", "6L41"], secretpower: ["6M"], signalbeam: ["7T", "6T"], + silverwind: ["9M"], skittersmack: ["9M"], sleeppowder: ["9M", "7L1", "6L1"], sleeptalk: ["9M", "7M", "6M"], @@ -68452,6 +69303,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mistyterrain: ["9M", "7L43", "6L43"], moonblast: ["9M", "7L46", "6L46"], naturepower: ["7M", "6M"], + ominouswind: ["9M"], petalblizzard: ["9M", "7L33", "6L33"], petaldance: ["9M", "7L51", "6L51"], pollenpuff: ["9M"], @@ -68465,10 +69317,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab safeguard: ["9M", "7M", "6M"], secretpower: ["6M"], seedbomb: ["9M", "7T", "6T"], + silverwind: ["9M"], skillswap: ["9M"], sleeptalk: ["9M", "7M", "6M"], snore: ["7T", "6T"], solarbeam: ["9M", "7M", "7L58", "6M", "6L58"], + solarblade: ["9M"], storedpower: ["9M"], substitute: ["9M", "7M", "6M"], sunnyday: ["9M", "7M", "6M"], @@ -68489,6 +69343,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab aromatherapy: ["9M"], calmmind: ["9M"], charm: ["9M"], + chillingwater: ["9M"], dazzlinggleam: ["9M"], doubleteam: ["9M"], drainingkiss: ["9M"], @@ -68508,6 +69363,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab metronome: ["9M"], mistyterrain: ["9M"], moonblast: ["9M"], + ominouswind: ["9M"], petalblizzard: ["9M"], petaldance: ["9M"], protect: ["9M"], @@ -68517,13 +69373,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rest: ["9M"], safeguard: ["9M"], seedbomb: ["9M"], + silverwind: ["9M"], sleeptalk: ["9M"], solarbeam: ["9M"], + solarblade: ["9M"], substitute: ["9M"], sunnyday: ["9M"], swift: ["9M"], synthesis: ["9M", "9S0"], tackle: ["9M"], + trailblaze: ["9M"], vinewhip: ["9M"], wish: ["9M"], }, @@ -68575,6 +69434,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mistyterrain: ["9M", "7L1", "6L1"], moonblast: ["9M", "7L1", "6L1"], naturepower: ["7M", "6M"], + ominouswind: ["9M"], petalblizzard: ["9M", "7L1", "6L1"], petaldance: ["9M", "7L1", "6L1"], pollenpuff: ["9M"], @@ -68589,10 +69449,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab safeguard: ["9M", "7M", "6M"], secretpower: ["6M"], seedbomb: ["9M", "7T", "6T"], + silverwind: ["9M"], skillswap: ["9M"], sleeptalk: ["9M", "7M", "6M"], snore: ["7T", "6T"], solarbeam: ["9M", "7M", "6M"], + solarblade: ["9M"], storedpower: ["9M"], substitute: ["9M", "7M", "6M"], sunnyday: ["9M", "7M", "6M"], @@ -68734,9 +69596,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["7M", "6M"], secretpower: ["6M"], seedbomb: ["9M", "7T", "7L30", "6T", "6L30"], + skullbash: ["9M"], sleeptalk: ["9M", "7M", "6M"], snore: ["7T", "6T"], solarbeam: ["9M", "7M", "6M"], + solarblade: ["9M"], stompingtantrum: ["9M", "7T"], strength: ["6M"], substitute: ["9M", "7M", "6M"], @@ -68771,9 +69635,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab brickbreak: ["9M", "8M", "7M", "6M"], bulkup: ["9M", "8M", "7M", "6M"], bulldoze: ["9M", "8M", "7M", "6M"], - circlethrow: ["8L12", "7L25", "6L25"], + circlethrow: ["9M", "8L12", "7L25", "6L25"], coaching: ["8T"], - cometpunch: ["7L15", "6L15"], + cometpunch: ["9M", "7L15", "6L15"], confide: ["7M", "6M"], covet: ["7T", "6T"], crunch: ["9M", "8M", "8L33", "7L39", "6L39"], @@ -68782,14 +69646,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab detect: ["9M"], dig: ["9M", "8M", "6M"], doubleteam: ["7M", "6M"], - drainpunch: ["8M", "7T", "6T"], + drainpunch: ["9M", "8M", "7T", "6T"], dualchop: ["7T", "6T"], echoedvoice: ["7M", "6M"], endeavor: ["7T", "6T"], endure: ["9M", "8M"], entrainment: ["8L44", "7L42", "6L42"], - facade: ["8M", "7M", "6M"], - falseswipe: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], + falseswipe: ["9M", "8M", "7M", "6M"], firepunch: ["9M", "8M", "7T", "6T"], fling: ["8M", "7M", "6M"], focuspunch: ["7T", "6T"], @@ -68806,7 +69670,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lashout: ["8T"], leer: ["9M", "8L1", "7L1", "6L1"], lowkick: ["8M", "7T", "6T"], - lowsweep: ["8M", "8L16", "7M", "6M"], + lowsweep: ["9M", "8M", "8L16", "7M", "6M"], mefirst: ["7E", "6E"], megakick: ["8M"], megapunch: ["8M"], @@ -68837,7 +69701,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab snore: ["8M", "7T", "6T"], spite: ["7T", "6T"], stoneedge: ["9M", "8M", "7M", "6M", "6S0"], - stormthrow: ["8E", "7E", "6E"], + stormthrow: ["9M", "8E", "7E", "6E"], strength: ["6M"], substitute: ["9M", "8M", "7M", "6M"], sunnyday: ["8M", "7M", "6M"], @@ -68871,10 +69735,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bulkup: ["9M", "8M", "7M", "6M"], bulldoze: ["9M", "8M", "7M", "6M"], bulletpunch: ["9M", "8L1", "7L1"], - circlethrow: ["8L12", "7L25", "6L25"], + circlethrow: ["9M", "8L12", "7L25", "6L25"], closecombat: ["9M", "8M"], coaching: ["8T"], - cometpunch: ["7L15", "6L15"], + cometpunch: ["9M", "7L15", "6L15"], confide: ["7M", "6M"], covet: ["7T", "6T"], crunch: ["9M", "8M", "8L35", "7L42", "6L42"], @@ -68885,16 +69749,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dig: ["9M", "8M", "6M"], doubleteam: ["7M", "6M"], dragonclaw: ["9M", "8M", "7M", "6M"], - drainpunch: ["8M", "7T", "6T"], - dualchop: ["7T", "6T"], + drainpunch: ["9M", "8M", "7T", "6T"], + dualchop: ["9M", "7T", "6T"], earthquake: ["9M", "8M", "7M", "6M"], echoedvoice: ["7M", "6M"], embargo: ["7M", "6M"], endeavor: ["7T", "6T"], endure: ["9M", "8M"], entrainment: ["8L52", "7L1", "6L1"], - facade: ["8M", "7M", "6M"], - falseswipe: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], + falseswipe: ["9M", "8M", "7M", "6M"], firepunch: ["9M", "8M", "7T", "6T"], fling: ["8M", "7M", "6M"], focusblast: ["9M", "8M", "7M", "6M"], @@ -68920,7 +69784,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lashout: ["8T"], leer: ["9M", "8L1", "7L1", "6L1"], lowkick: ["8M", "7T", "6T"], - lowsweep: ["8M", "8L16", "7M", "7L1", "6M", "6L70"], + lowsweep: ["9M", "8M", "8L16", "7M", "7L1", "6M", "6L70"], megakick: ["8M"], megapunch: ["8M"], nightslash: ["9M", "8L0"], @@ -68955,6 +69819,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab spite: ["7T", "6T"], stompingtantrum: ["8M", "7T"], stoneedge: ["9M", "8M", "7M", "6M"], + stormthrow: ["9M"], strength: ["6M"], substitute: ["9M", "8M", "7M", "6M"], sunnyday: ["8M", "7M", "6M"], @@ -68984,7 +69849,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab babydolleyes: ["7L9", "6L9"], bite: ["9M", "7L22", "6L22"], captivate: ["7E", "6E"], - chargebeam: ["7M", "6M"], + chargebeam: ["9M", "7M", "6M"], charm: ["9M", "7L38", "6L38"], confide: ["7M", "6M"], cottonguard: ["9M", "7L48", "6L48"], @@ -68992,11 +69857,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab darkpulse: ["9M", "7M", "6M"], dig: ["9M", "6M"], doubleedge: ["9M"], + doublehit: ["9M"], doubleteam: ["9M", "7M", "6M"], echoedvoice: ["7M", "6M"], endeavor: ["7T", "6T"], endure: ["9M"], - facade: ["7M", "6M"], + facade: ["9M", "7M", "6M"], firefang: ["9M"], flash: ["6M"], frustration: ["7M", "6M"], @@ -69010,9 +69876,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab icefang: ["9M"], irontail: ["9M", "7T", "6T"], lastresort: ["7T", "6T"], - mimic: ["7E", "6E"], + mimic: ["9M", "7E", "6E"], odorsleuth: ["7L27", "6L27"], protect: ["9M", "7M", "6M"], + psychicfangs: ["9M"], raindance: ["7M", "6M"], refresh: ["7E", "6E"], rest: ["7M", "6M"], @@ -69024,6 +69891,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["7M", "6M"], sandattack: ["7L5", "6L5"], secretpower: ["6M"], + skullbash: ["9M"], sleeptalk: ["7M", "6M"], snarl: ["9M", "7M", "6M"], snore: ["7T", "6T"], @@ -69037,6 +69905,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab takedown: ["9M", "7L35", "6L35"], thunderfang: ["9M"], thunderwave: ["9M", "7M", "6M"], + triattack: ["9M"], uproar: ["7T", "6T"], uturn: ["9M", "7M", "6M"], wildcharge: ["9M", "7M", "6M"], @@ -69111,6 +69980,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab swift: ["9M", "8M"], tackle: ["9M"], telekinesis: ["7T"], + teleport: ["9M"], terablast: ["9M"], thunderbolt: ["9M", "8M", "7M", "6M"], thunderwave: ["9M", "8M", "7M", "6M"], @@ -69166,9 +70036,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab meanlook: ["9M", "8L1", "7L1", "6L1"], miracleeye: ["7L31", "6L31"], mistyterrain: ["9M", "8M", "8L59", "7L50", "6L50"], + moonblast: ["9M"], nastyplot: ["9M", "8M"], + ominouswind: ["9M"], payback: ["8M", "7M", "6M"], - payday: ["8M"], + payday: ["9M", "8M"], playrough: ["9M", "8M"], poweruppunch: ["6M"], protect: ["9M", "8M", "7M", "6M"], @@ -69208,12 +70080,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab tailslap: ["8M"], taunt: ["9M"], telekinesis: ["7T"], + teleport: ["9M"], terablast: ["9M"], thunderbolt: ["9M", "8M", "7M", "6M"], thunderwave: ["9M", "8M", "7M", "6M"], torment: ["7M", "6M"], toxicspikes: ["9M"], trailblaze: ["9M"], + triattack: ["9M"], trick: ["9M", "8M", "7T", "6T"], trickroom: ["9M", "8M", "7M", "6M"], wish: ["9M"], @@ -69264,9 +70138,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab magiccoat: ["7T"], magicroom: ["8M", "7T"], mefirst: ["7L1", "6L1"], + moonblast: ["9M"], nastyplot: ["9M", "8M"], + ominouswind: ["9M"], payback: ["8M", "7M", "6M"], - payday: ["8M"], + payday: ["9M", "8M"], playrough: ["9M", "8M"], poweruppunch: ["6M"], protect: ["9M", "8M", "7M", "6M"], @@ -69302,11 +70178,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab tackle: ["9M"], tailslap: ["8M"], telekinesis: ["7T"], + teleport: ["9M"], terablast: ["9M"], thunderbolt: ["9M", "8M", "7M", "6M"], thunderwave: ["9M", "8M", "7M", "6M"], torment: ["7M", "6M"], trailblaze: ["9M"], + triattack: ["9M"], trick: ["9M", "8M", "7T"], trickroom: ["9M", "8M", "7M", "6M"], waterpulse: ["9M"], @@ -69330,8 +70208,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab destinybond: ["8E", "7E", "6E"], doubleteam: ["7M", "6M"], endure: ["8M"], - facade: ["8M", "7M", "6M"], - falseswipe: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], + falseswipe: ["9M", "8M", "7M", "6M"], flashcannon: ["9M", "8M", "7M", "6M"], frustration: ["7M", "6M"], furycutter: ["8L1", "7L5", "6L5"], @@ -69356,7 +70234,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rockslide: ["9M", "8M", "7M", "6M"], rocksmash: ["6M"], round: ["8M"], - sacredsword: ["8L48", "7L47", "6L47"], + sacredsword: ["9M", "8L48", "7L47", "6L47"], screech: ["9M", "8M"], secretpower: ["6M"], shadowclaw: ["9M", "8M", "7M", "6M"], @@ -69365,9 +70243,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab slash: ["9M", "8L20", "7L29", "6L29"], sleeptalk: ["8M", "7M", "6M"], snore: ["8M", "7T", "6T"], - solarblade: ["8M"], + solarblade: ["9M", "8M"], spite: ["7T", "6T"], - steelbeam: ["8T"], + steelbeam: ["9M", "8T"], substitute: ["9M", "8M", "7M", "6M"], swagger: ["7M", "6M"], swordsdance: ["9M", "8M", "8L44", "7M", "7L1", "6M", "6L1"], @@ -69386,10 +70264,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab closecombat: ["9M", "8M"], confide: ["7M", "6M"], cut: ["6M"], + doublehit: ["9M"], doubleteam: ["7M", "6M"], + dualchop: ["9M"], endure: ["9M", "8M"], - facade: ["8M", "7M", "6M"], - falseswipe: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], + falseswipe: ["9M", "8M", "7M", "6M"], flashcannon: ["9M", "8M", "7M", "6M"], frustration: ["7M", "6M"], furycutter: ["8L1", "7L1", "6L5"], @@ -69406,6 +70286,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab psychocut: ["9M", "8M"], pursuit: ["7L13", "6L13"], raindance: ["8M", "7M", "6M"], + razorwind: ["9M"], reflect: ["9M", "8M", "7M", "6M"], rest: ["8M", "7M", "6M"], retaliate: ["8M", "8L28", "7L26", "6M", "6L26"], @@ -69414,7 +70295,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rockslide: ["9M", "8M", "7M", "6M"], rocksmash: ["6M"], round: ["8M"], - sacredsword: ["8L56", "7L51", "6L51"], + sacredsword: ["9M", "8L56", "7L51", "6L51"], screech: ["9M", "8M"], secretpower: ["6M"], shadowclaw: ["9M", "8M", "7M", "6M"], @@ -69423,9 +70304,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab slash: ["9M", "8L20", "7L29", "6L29"], sleeptalk: ["8M", "7M", "6M"], snore: ["8M", "7T", "6T"], - solarblade: ["8M"], + solarblade: ["9M", "8M"], spite: ["7T", "6T"], - steelbeam: ["8T"], + steelbeam: ["9M", "8T"], substitute: ["9M", "8M", "7M", "6M"], swagger: ["7M", "6M"], swordsdance: ["9M", "8M", "8L50", "7M", "7L1", "6M", "6L1"], @@ -69446,10 +70327,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab closecombat: ["9M", "8M"], confide: ["7M", "6M"], cut: ["6M"], + doublehit: ["9M"], doubleteam: ["7M", "6M"], + dualchop: ["9M"], endure: ["9M", "8M"], - facade: ["8M", "7M", "6M"], - falseswipe: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], + falseswipe: ["9M", "8M", "7M", "6M"], flashcannon: ["9M", "8M", "7M", "6M", "6S0"], frustration: ["7M", "6M"], furycutter: ["8L1", "7L1", "6L1"], @@ -69465,11 +70348,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab magnetrise: ["7T", "6T"], metalsound: ["9M", "8L1"], nightslash: ["9M", "8L1", "7L1", "6L1"], + ominouswind: ["9M"], powertrick: ["8L1", "7L1", "6L1"], protect: ["9M", "8M", "7M", "6M"], psychocut: ["9M", "8M"], pursuit: ["7L1", "6L1"], raindance: ["8M", "7M", "6M"], + razorwind: ["9M"], reflect: ["9M", "8M", "7M", "6M"], rest: ["8M", "7M", "6M"], retaliate: ["8M", "8L1", "6M"], @@ -69478,7 +70363,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rockslide: ["9M", "8M", "7M", "6M"], rocksmash: ["6M"], round: ["8M", "7M", "6M"], - sacredsword: ["8L1", "7L1", "6L1"], + sacredsword: ["9M", "8L1", "7L1", "6L1"], screech: ["9M", "8M"], secretpower: ["6M"], shadowball: ["9M", "8M", "7M", "6M", "6S0"], @@ -69488,9 +70373,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab slash: ["9M", "8L1", "7L1", "6L1"], sleeptalk: ["8M", "7M", "6M"], snore: ["8M", "7T", "6T"], - solarblade: ["8M"], + solarblade: ["9M", "8M"], spite: ["7T", "6T"], - steelbeam: ["8T"], + steelbeam: ["9M", "8T"], substitute: ["9M", "8M", "7M", "6M"], sunnyday: ["8M", "7M", "6M"], swagger: ["7M", "6M"], @@ -69526,7 +70411,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endeavor: ["7T", "6T"], endure: ["9M", "8M"], energyball: ["9M", "8M", "7M", "6M"], - facade: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], fairywind: ["9M", "8L1", "7L1", "6L1"], faketears: ["9M", "8M"], flail: ["8L21", "7L38", "6L38"], @@ -69579,7 +70464,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab aromaticmist: ["8L1", "7L1", "6L1"], attract: ["8M", "8L18", "7M", "7L29", "6M", "6L29"], calmmind: ["9M", "8M", "8L33", "7M", "7L17", "6M", "6L17"], - chargebeam: ["7M", "6M"], + chargebeam: ["9M", "7M", "6M"], charm: ["9M", "8M", "8L30", "7L35", "6L35"], confide: ["7M", "6M"], covet: ["7T", "6T"], @@ -69588,14 +70473,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab disarmingvoice: ["9M", "8L9", "7L53", "6L53"], doubleteam: ["7M", "6M"], drainingkiss: ["9M", "8M", "8L15", "7L21", "6L21"], - drainpunch: ["8M", "7T", "6T"], - dreameater: ["7M", "6M"], + drainpunch: ["9M", "8M", "7T", "6T"], + dreameater: ["9M", "7M", "6M"], echoedvoice: ["8L1", "7M", "7L13", "6M", "6L13"], encore: ["8M"], endeavor: ["7T", "6T"], endure: ["9M", "8M"], energyball: ["9M", "8M", "7M", "6M"], - facade: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], fairywind: ["9M", "8L1", "7L1", "6L1"], faketears: ["9M", "8M"], flail: ["8L21", "7L38", "6L38"], @@ -69618,6 +70503,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab moonblast: ["9M", "8L36", "7L31", "6L31", "6S0"], nastyplot: ["9M", "8M"], odorsleuth: ["7L1", "6L8"], + ominouswind: ["9M"], protect: ["9M", "8M", "7M", "6M"], psybeam: ["9M"], psychic: ["9M", "8M", "8L27", "7M", "7L48", "6M", "6L48"], @@ -69629,6 +70515,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab return: ["7M", "6M"], round: ["8M", "7M", "6M"], secretpower: ["6M"], + silverwind: ["9M"], skillswap: ["8M", "8L39", "7T", "7L44", "6T", "6L44"], sleeptalk: ["8M", "7M", "6M"], snore: ["8M", "7T", "6T"], @@ -69669,7 +70556,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endeavor: ["8L39", "7T", "7L21", "6T", "6L21"], endure: ["9M", "8M"], energyball: ["9M", "8M", "8L27", "7M", "7L36", "6M", "6L36"], - facade: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], fairywind: ["9M", "8L6", "7L5", "6L5"], faketears: ["9M", "8M", "8L15", "7L10", "6L10"], flamethrower: ["9M", "8M", "7M", "6M"], @@ -69725,12 +70612,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dazzlinggleam: ["9M", "8M", "7M", "6M"], doubleteam: ["7M", "6M"], drainingkiss: ["9M", "8M", "8L12", "7L31", "6L31"], - drainpunch: ["8M", "7T", "6T"], - dreameater: ["7M", "6M"], + drainpunch: ["9M", "8M", "7T", "6T"], + dreameater: ["9M", "7M", "6M"], endeavor: ["8L39", "7T", "7L21", "6T", "6L21"], endure: ["9M", "8M"], energyball: ["9M", "8M", "8L27", "7M", "7L36", "6M", "6L36"], - facade: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], fairywind: ["9M", "8L1", "7L1", "6L5"], faketears: ["9M", "8M", "8L15", "7L10", "6L10"], flamethrower: ["9M", "8M", "7M", "6M"], @@ -69745,6 +70632,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab magiccoat: ["7T", "6T"], metronome: ["9M", "8M"], mistyexplosion: ["8T"], + ominouswind: ["9M"], playnice: ["8L1", "7L1", "6L8"], playrough: ["9M", "8M", "8L33", "7L49", "6L49"], protect: ["9M", "8M", "7M", "6M"], @@ -69757,6 +70645,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab safeguard: ["9M", "8M", "7M", "7L67", "6M", "6L67"], secretpower: ["6M"], selfdestruct: ["9M"], + silverwind: ["9M"], sleeptalk: ["8M", "7M", "6M"], snore: ["8M", "7T", "6T"], stickyweb: ["9M", "8L42"], @@ -69815,6 +70704,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lightscreen: ["9M", "8M", "7M", "7L31", "6M", "6L31"], liquidation: ["9M", "8M"], lunge: ["9M"], + mimic: ["9M"], nastyplot: ["9M", "8M"], nightslash: ["9M", "8L24", "7L46", "6L46"], payback: ["9M", "8M", "8L9", "7M", "7L27", "6M", "6L27"], @@ -69879,11 +70769,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab brutalswing: ["8M", "7M"], bulkup: ["9M"], calmmind: ["9M", "8M", "7M", "6M"], + circlethrow: ["9M"], closecombat: ["9M"], + cometpunch: ["9M"], confide: ["7M", "6M"], constrict: ["7L1", "6L1"], cut: ["6M"], darkpulse: ["9M", "8M", "7M", "6M"], + doublehit: ["9M"], doubleteam: ["9M", "7M", "6M"], embargo: ["7M", "6M"], endure: ["9M", "8M"], @@ -69909,8 +70802,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lightscreen: ["9M", "8M", "7M", "7L31", "6M", "6L31"], liquidation: ["9M", "8M"], lunge: ["9M"], + mimic: ["9M"], nastyplot: ["9M", "8M"], nightslash: ["9M", "8L24", "7L46", "6L46"], + octolock: ["9M"], payback: ["9M", "8M", "8L9", "7M", "7L27", "6M", "6L27"], peck: ["9M", "8L1", "7L1", "6L1"], pluck: ["9M", "8L12", "7L35", "6L35"], @@ -69957,7 +70852,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab throatchop: ["9M", "8M", "7T"], thunderbolt: ["9M", "8M", "7M", "6M"], topsyturvy: ["9M", "8L42", "7L15", "6L15"], - torment: ["7M", "6M"], + torment: ["9M", "7M", "6M"], trailblaze: ["9M"], trick: ["9M"], trickroom: ["9M", "8M", "7M", "6M"], @@ -69971,7 +70866,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab binacle: { learnset: { aerialace: ["7M", "6M"], - ancientpower: ["8L20", "7L28", "6L28"], + ancientpower: ["9M", "8L20", "7L28", "6L28"], assurance: ["8M"], attract: ["8M", "7M", "6M"], beatup: ["8M"], @@ -69990,8 +70885,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab embargo: ["7M", "6M"], endeavor: ["7T", "6T"], endure: ["9M", "8M"], - facade: ["8M", "7M", "6M"], - falseswipe: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], + falseswipe: ["9M", "8M", "7M", "6M"], fling: ["8M", "7M", "6M"], frustration: ["7M", "6M"], furycutter: ["8L12", "7L37", "6L37"], @@ -70026,7 +70921,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab safeguard: ["9M", "8M", "7M", "6M"], sandattack: ["8E", "7L1", "6L1"], sandstorm: ["8M", "7M", "6M"], - scald: ["8M", "7M", "6M"], + scald: ["9M", "8M", "7M", "6M"], scratch: ["8L1", "7L1", "6L1"], screech: ["9M", "8M"], secretpower: ["6M"], @@ -70062,7 +70957,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab barbaracle: { learnset: { aerialace: ["7M", "6M"], - ancientpower: ["8L20", "7L28", "6L28"], + ancientpower: ["9M", "8L20", "7L28", "6L28"], assurance: ["8M"], attract: ["8M", "7M", "6M"], beatup: ["8M"], @@ -70074,21 +70969,23 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bulldoze: ["9M", "8M", "7M", "6M"], clamp: ["7L20", "6L20"], closecombat: ["9M"], + cometpunch: ["9M"], confide: ["7M", "6M"], crosschop: ["8L48", "7L55", "6L55"], cut: ["6M"], dig: ["9M", "8M", "6M"], dive: ["8M"], + doublehit: ["9M"], doubleteam: ["7M", "6M"], dragonclaw: ["9M", "8M", "7M", "6M"], - dualchop: ["7T", "6T"], + dualchop: ["9M", "7T", "6T"], earthpower: ["8M", "7T", "6T"], earthquake: ["9M", "8M", "7M", "6M"], embargo: ["7M", "6M"], endeavor: ["7T", "6T"], endure: ["9M", "8M"], - facade: ["8M", "7M", "6M"], - falseswipe: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], + falseswipe: ["9M", "8M", "7M", "6M"], fling: ["8M", "7M", "6M"], focusblast: ["9M", "8M", "7M", "6M"], frustration: ["7M", "6M"], @@ -70106,8 +71003,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab laserfocus: ["7T"], liquidation: ["9M", "8M", "7T"], lowkick: ["8M", "7T", "6T"], - meteorbeam: ["8T"], - muddywater: ["8M"], + meteorbeam: ["9M", "8T"], + muddywater: ["9M", "8M"], mudshot: ["9M", "8M"], mudslap: ["8L1", "7L18", "6L18"], naturepower: ["7M", "6M"], @@ -70130,13 +71027,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab safeguard: ["9M", "8M", "7M", "6M"], sandattack: ["7L1", "6L1"], sandstorm: ["8M", "7M", "6M"], - scald: ["8M", "7M", "6M"], + scald: ["9M", "8M", "7M", "6M"], scratch: ["8L1", "7L1", "6L1"], screech: ["9M", "8M"], secretpower: ["6M"], shadowclaw: ["9M", "8M", "7M", "6M"], shellsmash: ["8L42", "7L1", "6L1"], - skullbash: ["8L1", "7L1", "6L1"], + skullbash: ["9M", "8L1", "7L1", "6L1"], slash: ["9M", "8L28", "7L13", "6L13"], sleeptalk: ["8M", "7M", "6M"], sludgebomb: ["9M", "8M", "7M", "6M"], @@ -70207,7 +71104,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rest: ["9M", "8M", "7M", "6M"], return: ["7M", "6M"], round: ["8M", "7M", "6M"], - scald: ["8M", "7M", "6M"], + scald: ["9M", "8M", "7M", "6M"], scaleshot: ["9M", "8T"], scaryface: ["9M"], secretpower: ["6M"], @@ -70391,6 +71288,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, clawitzer: { learnset: { + acidspray: ["9M"], aquajet: ["9M", "8L15", "7L49", "6L47"], aquatail: ["7T", "6T"], attract: ["8M", "7M", "6M"], @@ -70436,7 +71334,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab return: ["7M", "6M"], rockslide: ["9M", "8M", "7M", "6M"], round: ["8M", "7M", "6M"], - scald: ["8M", "7M", "6M"], + scald: ["9M", "8M", "7M", "6M"], scaryface: ["9M"], secretpower: ["6M"], shadowball: ["9M", "8M", "7M", "6M"], @@ -70490,14 +71388,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab electroball: ["8M"], electroweb: ["9M", "8M", "7T", "6T"], endure: ["9M", "8M"], - facade: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], flash: ["6M"], frustration: ["7M", "6M"], glare: ["8E", "7E", "6E"], grassknot: ["8M", "7M", "6M"], irontail: ["8M", "7T", "6T"], lightscreen: ["9M", "8M", "7M", "6M"], - lowsweep: ["8M", "7M", "6M"], + lowsweep: ["9M", "8M", "7M", "6M"], magnetrise: ["7T", "6T"], morningsun: ["9M"], mudslap: ["8L1", "7L13", "6L13"], @@ -70515,8 +71413,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocktomb: ["9M", "8M", "7M", "6M"], round: ["8M", "7M", "6M"], sandstorm: ["8M", "7M", "6M"], - scaleshot: ["8T"], + scaleshot: ["9M", "8T"], secretpower: ["6M"], + seedbomb: ["9M"], shockwave: ["7T", "6T"], signalbeam: ["7T", "6T"], sleeptalk: ["8M", "7M", "6M"], @@ -70544,7 +71443,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab brutalswing: ["8M", "7M"], bulldoze: ["9M", "8M", "8L1", "7M", "6M"], charge: ["9M", "8L1", "7L1", "6L1"], - chargebeam: ["7M", "6M"], + chargebeam: ["9M", "7M", "6M"], confide: ["7M", "6M"], cut: ["6M"], darkpulse: ["9M", "8M", "7M", "6M"], @@ -70559,7 +71458,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab electroball: ["8M"], electroweb: ["9M", "8M", "7T", "6T"], endure: ["9M", "8M"], - facade: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], firepunch: ["9M", "8M", "7T", "6T"], flash: ["6M"], focusblast: ["9M", "8M", "7M", "6M"], @@ -70571,7 +71470,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab irontail: ["9M", "8M", "7T", "6T"], lightscreen: ["9M", "8M", "7M", "6M"], lowkick: ["8M", "7T", "6T"], - lowsweep: ["8M", "7M", "6M"], + lowsweep: ["9M", "8M", "7M", "6M"], magnetrise: ["7T", "6T"], megakick: ["8M"], megapunch: ["8M"], @@ -70583,7 +71482,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab psychup: ["7M", "6M"], quickattack: ["9M", "8L1", "7L1", "6L1"], raindance: ["8M", "7M", "6M"], - razorwind: ["7L1", "6L1"], + razorwind: ["9M", "7L1", "6L1"], rest: ["8M", "7M", "6M"], return: ["7M", "6M"], risingvoltage: ["8T"], @@ -70591,8 +71490,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocktomb: ["9M", "8M", "7M", "6M"], round: ["8M", "7M", "6M"], sandstorm: ["8M", "7M", "6M"], - scaleshot: ["8T"], + scaleshot: ["9M", "8T"], secretpower: ["6M"], + seedbomb: ["9M"], + shedtail: ["9M"], shockwave: ["7T", "6T"], signalbeam: ["7T", "6T"], sleeptalk: ["8M", "7M", "6M"], @@ -70618,7 +71519,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab tyrunt: { learnset: { aerialace: ["7M", "6M"], - ancientpower: ["8L8", "7L26", "6L26"], + ancientpower: ["9M", "8L8", "7L26", "6L26"], assurance: ["8M"], attract: ["8M", "7M", "6M"], bide: ["7L12", "6L12"], @@ -70643,7 +71544,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab earthpower: ["9M", "8M", "7T", "6T"], earthquake: ["9M", "8M", "8L44", "7M", "7L44", "6M", "6L44"], endure: ["9M", "8M"], - facade: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], firefang: ["9M", "8M", "7E", "6E"], frustration: ["7M", "6M"], honeclaws: ["6M"], @@ -70654,12 +71555,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ironhead: ["9M", "8M", "7T", "6T"], irontail: ["8M", "7T", "6T"], lashout: ["8T"], - meteorbeam: ["8T"], + meteorbeam: ["9M", "8T"], outrage: ["9M", "8M", "7T", "6T"], playrough: ["9M", "8M"], - poisonfang: ["8E", "7E", "6E"], + poisonfang: ["9M", "8E", "7E", "6E"], protect: ["9M", "8M", "7M", "6M"], - psychicfangs: ["8M"], + psychicfangs: ["9M", "8M"], rest: ["8M", "7M", "6M"], return: ["7M", "6M"], roar: ["9M", "8L4", "7M", "7L6", "6M", "6L6", "6S0"], @@ -70671,7 +71572,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocktomb: ["9M", "8M", "7M", "6M"], round: ["8M", "7M", "6M"], sandstorm: ["8M", "7M", "6M"], - scaleshot: ["8T"], + scaleshot: ["9M", "8T"], scaryface: ["8M"], secretpower: ["6M"], sleeptalk: ["8M", "7M", "6M"], @@ -70698,7 +71599,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab tyrantrum: { learnset: { aerialace: ["7M", "6M"], - ancientpower: ["8L1", "7L26", "6L26"], + ancientpower: ["9M", "8L1", "7L26", "6L26"], assurance: ["8M"], attract: ["8M", "7M", "6M"], bide: ["7L12", "6L12"], @@ -70724,7 +71625,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab earthpower: ["9M", "8M", "7T", "6T"], earthquake: ["9M", "8M", "8L48", "7M", "7L47", "6M", "6L47"], endure: ["9M", "8M"], - facade: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], firefang: ["9M", "8M"], frustration: ["7M", "6M"], gigaimpact: ["9M", "8M", "8L60", "7M", "7L68", "6M", "6L75"], @@ -70739,11 +71640,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ironhead: ["9M", "8M", "7T", "6T"], irontail: ["9M", "8M", "7T", "6T"], lashout: ["8T"], - meteorbeam: ["8T"], + meteorbeam: ["9M", "8T"], outrage: ["9M", "8M", "7T", "6T"], playrough: ["9M", "8M"], + poisonfang: ["9M"], protect: ["9M", "8M", "7M", "6M"], - psychicfangs: ["8M"], + psychicfangs: ["9M", "8M"], rest: ["8M", "7M", "6M"], return: ["7M", "6M"], roar: ["9M", "8L1", "7M", "7L1", "6M", "6L6"], @@ -70755,7 +71657,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocktomb: ["9M", "8M", "7M", "6M"], round: ["8M", "7M", "6M"], sandstorm: ["8M", "7M", "6M"], - scaleshot: ["8T"], + scaleshot: ["9M", "8T"], scaryface: ["8M"], secretpower: ["6M"], sleeptalk: ["8M", "7M", "6M"], @@ -70778,7 +71680,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, amaura: { learnset: { - ancientpower: ["8L8", "7L26", "6L26"], + ancientpower: ["9M", "8L8", "7L26", "6L26"], aquatail: ["7T", "6T"], attract: ["8M", "7M", "6M"], aurorabeam: ["8L24", "7L20", "6L20"], @@ -70800,7 +71702,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab echoedvoice: ["7M", "6M"], encore: ["8M", "8L4", "7L44", "6L44"], endure: ["9M", "8M"], - facade: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], flash: ["6M"], flashcannon: ["9M", "8M", "7M", "6M"], freezedry: ["9M", "8L36"], @@ -70818,7 +71720,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab irontail: ["8M", "7T", "6T"], lightscreen: ["9M", "8M", "8L44", "7M", "7L47", "6M", "6L47"], magnetrise: ["7T", "7E", "6T", "6E"], - meteorbeam: ["8T"], + meteorbeam: ["9M", "8T"], mirrorcoat: ["8E", "7E", "6E"], mist: ["9M", "8L20", "7L18", "6L18"], mudshot: ["8M"], @@ -70862,7 +71764,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, aurorus: { learnset: { - ancientpower: ["8L1", "7L26", "6L26"], + ancientpower: ["9M", "8L1", "7L26", "6L26"], aquatail: ["7T", "6T"], attract: ["8M", "7M", "6M"], aurorabeam: ["8L24", "7L20", "6L20"], @@ -70871,7 +71773,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bodyslam: ["9M", "8M"], bulldoze: ["9M", "8M", "7M", "6M"], calmmind: ["9M", "8M", "7M", "6M"], - chargebeam: ["7M", "6M"], + chargebeam: ["9M", "7M", "6M"], + chillingwater: ["9M"], confide: ["7M", "6M"], darkpulse: ["9M", "8M", "7M", "6M"], doubleteam: ["7M", "6M"], @@ -70882,7 +71785,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab echoedvoice: ["7M", "6M"], encore: ["8M", "8L1", "7L46", "6L46"], endure: ["9M", "8M"], - facade: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], flash: ["6M"], flashcannon: ["9M", "8M", "7M", "6M"], freezedry: ["9M", "8L36", "7L1", "6L1"], @@ -70894,14 +71797,15 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab hyperbeam: ["9M", "8M", "8L66", "7M", "7L63", "6M", "6L63"], hypervoice: ["9M", "8M", "7T", "6T"], icebeam: ["9M", "8M", "8L42", "7M", "7L56", "6M", "6L56"], - iciclespear: ["8M"], + icehammer: ["9M"], + iciclespear: ["9M", "8M"], icywind: ["9M", "8M", "8L12", "7T", "7L13", "6T", "6L13"], irondefense: ["9M", "8M", "7T", "6T"], ironhead: ["9M", "8M", "7T", "6T"], irontail: ["9M", "8M", "7T", "6T"], lightscreen: ["9M", "8M", "8L48", "7M", "7L50", "6M", "6L50"], magnetrise: ["7T", "6T"], - meteorbeam: ["8T"], + meteorbeam: ["9M", "8T"], mist: ["9M", "8L20", "7L18", "6L18"], mudshot: ["8M"], naturepower: ["8L32", "7M", "7L43", "6M", "6L43"], @@ -70925,6 +71829,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab safeguard: ["9M", "8M", "7M", "6M"], sandstorm: ["8M", "7M", "6M"], secretpower: ["6M"], + sheercold: ["9M"], sleeptalk: ["8M", "7M", "6M"], snore: ["8M", "7T", "6T"], stealthrock: ["9M", "8M", "7T", "6T"], @@ -70983,6 +71888,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lightscreen: ["9M", "8M", "8L25", "7M", "7L33", "6M", "6L33"], magicalleaf: ["9M", "8M"], magiccoat: ["7T", "6T"], + mimic: ["9M"], mistyexplosion: ["9M", "8T"], mistyterrain: ["9M", "8M", "8L35", "7L29", "6L29"], moonblast: ["9M", "8L50", "7L37", "6L37"], @@ -71007,6 +71913,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab secretpower: ["6M"], shadowball: ["9M", "8M", "7M", "6M"], skillswap: ["9M", "8M", "8L40", "7T", "7L25", "6T", "6L25"], + skullbash: ["9M"], sleeptalk: ["9M", "9S3", "8M", "7M", "6M"], snore: ["8M", "7T", "6T"], storedpower: ["9M", "8M"], @@ -71050,6 +71957,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bulkup: ["9M", "8M", "7M", "6M"], closecombat: ["9M", "8M"], coaching: ["9M", "8T"], + cometpunch: ["9M"], confide: ["7M", "6M"], crosschop: ["9E", "8E"], cut: ["6M"], @@ -71058,7 +71966,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dig: ["9M", "8M", "6M"], doubleteam: ["7M", "6M"], drainpunch: ["9M", "8M", "7T", "6T"], - dualchop: ["7T", "6T"], + dualchop: ["9M", "7T", "6T"], dualwingbeat: ["9M", "8T"], encore: ["9M", "8M", "8L16", "7L20", "6L20"], endeavor: ["9M", "8L52", "7T", "7L36", "6T", "6L36"], @@ -71110,6 +72018,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab roost: ["9M", "8L36", "7M", "7L12", "6M", "6L12"], round: ["8M", "7M", "6M"], secretpower: ["6M"], + skullbash: ["9M"], skyattack: ["9M", "8L56", "7T", "7L48", "6T", "6L48"], skydrop: ["7M", "7L55", "6M", "6L55"], sleeptalk: ["9M", "8M", "7M", "6M"], @@ -71168,6 +72077,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M", "8M"], entrainment: ["9M", "8L55", "7L39", "6L39"], facade: ["9M", "8M", "7M", "6M"], + fakeout: ["9M"], flash: ["6M"], fling: ["9M", "8M", "7M", "6M"], frustration: ["7M", "6M"], @@ -71178,6 +72088,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab irontail: ["8M", "7T", "6T"], lastresort: ["7T", "6T"], lightscreen: ["9M"], + magnetbomb: ["9M"], magnetrise: ["9E", "8E", "7T", "6T"], mistyterrain: ["9M"], naturalgift: ["7E", "6E"], @@ -71256,6 +72167,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ironhead: ["9M"], lightscreen: ["9M", "8M", "8L30", "7M", "7L60", "6M", "6L60"], magiccoat: ["7T", "6T"], + magnetbomb: ["9M"], magnetrise: ["7T", "6T"], meteorbeam: ["9M", "8T"], mistyexplosion: ["9M", "8T"], @@ -71440,6 +72352,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab icespinner: ["9M"], irondefense: ["9M"], ironhead: ["9M"], + magnetbomb: ["9M"], muddywater: ["9M"], mudshot: ["9M"], outrage: ["9M"], @@ -71564,6 +72477,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab absorb: ["9M"], acidarmor: ["9M"], acidspray: ["9M"], + ancientpower: ["9M"], blizzard: ["9M"], bodypress: ["9M"], bodyslam: ["9M"], @@ -71599,6 +72513,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab irontail: ["9M"], knockoff: ["9M"], lashout: ["9M"], + magnetbomb: ["9M"], muddywater: ["9M"], mudshot: ["9M"], outrage: ["9M"], @@ -71663,6 +72578,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lockon: ["7E", "6E"], magiccoat: ["7T", "6T"], magicroom: ["9M", "8M", "8L44", "7T", "7L44", "6T", "6L44"], + magnetbomb: ["9M"], magnetrise: ["9E", "8E", "7T", "6T"], metalclaw: ["9M"], metalsound: ["9M", "8L20", "7L12", "6L12"], @@ -71808,7 +72724,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dig: ["9M", "8M", "6M"], doubleteam: ["7M", "6M"], drainpunch: ["9M", "8M", "7T", "6T"], - dreameater: ["7M", "6M"], + dreameater: ["9M", "7M", "6M"], earthquake: ["9M", "8M", "7M", "6M"], endure: ["9M", "8M"], energyball: ["9M", "8M", "7M", "6M"], @@ -71863,6 +72779,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab seedbomb: ["9M", "8M", "7T", "6T"], shadowball: ["9M", "8M", "7M", "6M"], shadowclaw: ["9M", "8M", "8L0", "7M", "7L1", "6M", "6L55"], + shadowpunch: ["9M"], skillswap: ["9M", "8M", "7T", "6T"], skittersmack: ["9M", "8T"], sleeptalk: ["9M", "8M", "7M", "6M"], @@ -71872,7 +72789,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab strength: ["6M"], substitute: ["9M", "8M", "7M", "6M"], sunnyday: ["9M", "8M", "7M", "6M"], - swagger: ["7M", "6M"], + swagger: ["9M", "7M", "6M"], tackle: ["9M", "8L1", "7L1", "6L1"], takedown: ["9M"], telekinesis: ["7T"], @@ -71908,7 +72825,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M", "8M"], energyball: ["9M", "8M", "7M", "6M"], explosion: ["7M", "6M"], - facade: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], fireblast: ["9M", "8M", "7M", "6M"], firespin: ["9M"], flamecharge: ["7M", "6M"], @@ -71944,7 +72861,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab safeguard: ["9M", "8M", "7M", "6M"], scaryface: ["8M", "8L24", "7L4", "6L4"], secretpower: ["6M"], - seedbomb: ["8M", "8L32", "7T", "7L48", "6T", "6L48"], + seedbomb: ["9M", "8M", "8L32", "7T", "7L48", "6T", "6L48"], selfdestruct: ["9M"], shadowball: ["9M", "8M", "8L36", "7M", "7L36", "6M", "6L36"], shadowsneak: ["9M", "8L4", "7L30", "6L30"], @@ -71997,10 +72914,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M", "8M"], energyball: ["9M", "8M", "7M", "6M"], explosion: ["9M", "8L1", "7M", "7L1", "6M", "6L1"], - facade: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], fireblast: ["9M", "8M", "7M", "6M"], firespin: ["9M"], - flamecharge: ["7M", "6M"], + flamecharge: ["9M", "7M", "6M"], flamethrower: ["9M", "8M", "7M", "6M"], flash: ["6M"], focusblast: ["8M", "7M", "6M"], @@ -72023,6 +72940,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mysticalfire: ["9M", "8M"], nastyplot: ["9M", "8M"], naturepower: ["7M", "6M"], + ominouswind: ["9M"], painsplit: ["8L44", "7T", "7L42", "6T", "6L42"], phantomforce: ["9M", "8M", "8L48", "7L1", "6L1"], poltergeist: ["8T"], @@ -72039,11 +72957,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab safeguard: ["9M", "8M", "7M", "6M"], scaryface: ["8M", "8L24", "7L1", "6L4"], secretpower: ["6M"], - seedbomb: ["8M", "8L32", "7T", "7L48", "6T", "6L48"], + seedbomb: ["9M", "8M", "8L32", "7T", "7L48", "6T", "6L48"], selfdestruct: ["9M"], shadowball: ["9M", "8M", "8L36", "7M", "7L36", "6M", "6L36"], shadowclaw: ["9M"], shadowsneak: ["9M", "8L1", "7L30", "6L30"], + silverwind: ["9M"], skillswap: ["8M", "7T", "6T"], skittersmack: ["8T"], sleeptalk: ["8M", "7M", "6M"], @@ -72151,7 +73070,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab facade: ["9M", "8M", "7M", "6M"], flash: ["6M"], flashcannon: ["9M", "8M", "7M", "6M"], - frostbreath: ["7M", "6M"], + frostbreath: ["9M", "7M", "6M"], frustration: ["7M", "6M"], gigaimpact: ["9M", "8M", "7M", "6M"], gyroball: ["9M", "8M", "7M", "6M"], @@ -72187,7 +73106,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab scaryface: ["9M"], secretpower: ["6M"], sharpen: ["7L20", "6L20"], - skullbash: ["8L51", "7L1", "6L1"], + sheercold: ["9M"], + skullbash: ["9M", "8L51", "7L1", "6L1"], sleeptalk: ["9M", "8M", "7M", "6M"], snore: ["8M", "7T", "6T"], snowscape: ["9M"], @@ -72207,6 +73127,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, avalugghisui: { learnset: { + ancientpower: ["9M"], avalanche: ["9M"], bite: ["9M"], blizzard: ["9M"], @@ -72250,6 +73171,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocktomb: ["9M"], sandstorm: ["9M"], scaryface: ["9M"], + sheercold: ["9M"], + skullbash: ["9M"], sleeptalk: ["9M"], snowscape: ["9M"], stealthrock: ["9M"], @@ -72387,17 +73310,18 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab protect: ["9M", "8M", "7M", "6M"], psychic: ["9M", "8M", "7M", "6M"], psychicnoise: ["9M"], - razorwind: ["7L31", "6L31"], + razorwind: ["9M", "7L31", "6L31"], rest: ["9M", "8M", "7M", "6M"], return: ["7M", "6M"], roost: ["9M", "8L44", "7M", "7L27", "6M", "6L27"], round: ["8M", "7M", "6M"], + scaleshot: ["9M"], scaryface: ["9M"], screech: ["9M", "8M", "8L40", "7L1", "6L1"], secretpower: ["6M"], shadowball: ["9M", "8M", "7M", "6M"], shadowclaw: ["9M", "8M", "7M", "6M"], - skyattack: ["7T", "6T"], + skyattack: ["9M", "7T", "6T"], sleeptalk: ["9M", "8M", "7M", "6M"], snatch: ["7T", "6T"], snore: ["8M", "7T", "6T"], @@ -72415,7 +73339,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab taunt: ["9M", "8M", "7M", "6M"], terablast: ["9M"], thief: ["9M", "8M", "7M", "6M"], - torment: ["7M", "6M"], + torment: ["9M", "7M", "6M"], uproar: ["9M", "8M", "7T", "6T"], uturn: ["9M", "8M", "7M", "6M"], waterpulse: ["9M", "7T", "6T"], @@ -72442,7 +73366,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab echoedvoice: ["7M", "6M"], endeavor: ["7T", "6T"], endure: ["9M", "8M"], - facade: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], flash: ["6M"], flashcannon: ["9M", "8M", "7M", "6M"], focusblast: ["9M", "8M", "7M", "7S4", "6M", "6S1"], @@ -72466,6 +73390,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab naturepower: ["8L15", "7M", "7L72", "6M", "6L72"], nightslash: ["9M", "8L20", "7L51", "7S2", "7S3", "6L51"], outrage: ["9M", "8M", "8L80", "7T", "7L93", "6T", "6L93"], + petaldance: ["9M"], playrough: ["9M", "8M"], protect: ["9M", "8M", "7M", "6M"], psychic: ["9M", "8M", "7M", "6M"], @@ -72479,9 +73404,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rockslide: ["9M", "8M", "7M", "6M"], round: ["8M", "7M", "6M"], secretpower: ["6M"], + seedbomb: ["9M"], + silverwind: ["9M"], sleeptalk: ["8M", "7M", "6M"], smartstrike: ["8M"], snore: ["8M", "7T", "6T"], + solarblade: ["9M"], substitute: ["9M", "8M", "7M", "6M"], sunnyday: ["8M", "7M", "6M"], swagger: ["7M", "6M"], @@ -72492,6 +73420,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunder: ["9M", "8M", "7M", "6M"], thunderbolt: ["9M", "8M", "7M", "6M"], thunderwave: ["9M", "8M", "7M", "6M"], + trailblaze: ["9M"], wonderroom: ["8M", "7T", "6T"], zenheadbutt: ["9M", "8M", "7T", "6T"], }, @@ -72521,11 +73450,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab doubleteam: ["9M", "8L1", "7M", "7L5", "6M", "6L5"], dragonclaw: ["9M", "8M", "7M", "6M"], dragonrush: ["9M", "8L65", "8S5", "7L63", "6L63"], - dreameater: ["7M", "6M"], - dualwingbeat: ["8T"], + dreameater: ["9M", "7M", "6M"], + dualwingbeat: ["9M", "8T"], embargo: ["7M", "6M"], endure: ["9M", "8M"], - facade: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], fly: ["9M", "8M", "7M", "6M"], focusblast: ["9M", "8M", "8L75", "7M", "7L72", "6M", "6L72"], foulplay: ["8M", "8L60", "7T", "7L51", "6T", "6L51", "6S1"], @@ -72542,12 +73471,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab laserfocus: ["7T"], lashout: ["8T"], oblivionwing: ["9M", "9S6", "8L50", "8S5", "7L26", "7S2", "7S3", "7S4", "6L26", "6S0", "6S1"], + ominouswind: ["9M"], payback: ["8M"], phantomforce: ["9M", "8M", "8L55", "7L55", "7S2", "7S3", "6L55"], protect: ["9M", "8M", "7M", "6M"], psychic: ["9M", "9S6", "8M", "8L45", "7M", "7L59", "7S2", "7S3", "6M", "6L59"], raindance: ["8M", "7M", "6M"], - razorwind: ["7L1", "6L1"], + razorwind: ["9M", "7L1", "6L1"], rest: ["8M", "7M", "6M"], return: ["7M", "6M"], rockslide: ["9M", "8M", "7M", "6M"], @@ -72556,7 +73486,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab secretpower: ["6M"], shadowball: ["9M", "8M", "7M", "6M"], shadowclaw: ["9M", "8M", "7M", "6M"], - skyattack: ["8L80", "7T", "7L93", "6T", "6L93"], + skyattack: ["9M", "8L80", "7T", "7L93", "6T", "6L93"], skydrop: ["7M", "6M"], sleeptalk: ["8M", "7M", "6M"], snarl: ["9M", "8M", "8L10", "7M", "7L18", "6M", "6L18", "6S0"], @@ -72572,6 +73502,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thief: ["8M", "7M", "6M"], torment: ["7M", "6M"], uturn: ["9M", "8M", "7M", "6M"], + vacuumwave: ["9M"], zenheadbutt: ["9M", "8M", "7T", "6T"], }, eventData: [ @@ -72610,7 +73541,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab earthquake: ["9M", "8M", "8L80", "7M", "7L55", "6M", "6L55", "6S0"], endure: ["9M", "8M"], extremespeed: ["9M", "7T", "7S7", "7S8", "6L88", "6S1"], - facade: ["8M", "7M", "6M"], + facade: ["9M", "8M", "7M", "6M"], + fissure: ["9M"], focusblast: ["9M", "8M", "7M", "6M"], frustration: ["7M", "6M"], gigaimpact: ["9M", "8M", "7M", "6M"], @@ -72623,10 +73555,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ironhead: ["9M"], irontail: ["8M", "7T", "6T"], landswrath: ["9M", "8L48", "8S9", "7L26", "7S2", "7S3", "7S4", "7S5", "7S6", "6L26", "6S1"], + magnetbomb: ["9M"], outrage: ["9M", "8M", "8L88", "7T", "7L80", "7S7", "7S8", "6T", "6L93", "6S1"], painsplit: ["7T", "6T"], payback: ["8M"], + poisonfang: ["9M"], protect: ["9M", "8M", "7M", "6M"], + psychicfangs: ["9M"], rest: ["8M", "7M", "6M"], retaliate: ["8M"], return: ["7M", "6M"], @@ -72636,8 +73571,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["8M", "7M", "6M"], safeguard: ["9M", "8M", "8L24", "7M", "7L5", "7S2", "7S5", "7S6", "6M", "6L5"], sandstorm: ["8M", "8L64", "7M", "7L35", "7S3", "7S4", "6M", "6L35"], - scaleshot: ["8T"], - scorchingsands: ["8T"], + scaleshot: ["9M", "8T"], + scorchingsands: ["9M", "8T"], secretpower: ["6M"], shockwave: ["7T", "6T"], skittersmack: ["8T"], @@ -72655,6 +73590,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab swift: ["9M", "8M"], thousandarrows: ["9M", "8L1", "8S9", "7T", "7S7", "7S8"], thousandwaves: ["9M", "8L1", "7T"], + triattack: ["9M"], zenheadbutt: ["9M", "8M", "7T", "6T"], }, eventData: [ @@ -72674,7 +73610,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab zygarde10: { learnset: { bind: ["8S5", "7S0", "7S1", "7S2"], - coreenforcer: ["9S6"], + coreenforcer: ["9M", "9S6"], dig: ["7S0", "7S2"], dragonbreath: ["7S3"], dragondance: ["7S4"], @@ -72682,12 +73618,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab extremespeed: ["7S4"], glare: ["7S3"], haze: ["7S1"], - landswrath: ["9S6", "8S5", "7S0", "7S1", "7S2", "7S3"], + landswrath: ["9M", "9S6", "8S5", "7S0", "7S1", "7S2", "7S3"], outrage: ["7S4"], safeguard: ["7S0", "7S2", "7S3"], sandstorm: ["7S1"], - thousandarrows: ["9S6", "8S5", "7S4"], - thousandwaves: ["9S6"], + thousandarrows: ["9M", "9S6", "8S5", "7S4"], + thousandwaves: ["9M", "9S6"], }, eventData: [ { generation: 7, level: 30, moves: ["safeguard", "dig", "bind", "landswrath"] }, @@ -72742,6 +73678,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab irondefense: ["9M", "8M", "7T", "6T"], lastresort: ["7T", "6T"], lightscreen: ["9M", "8M", "8L42", "7M", "7L60", "6M", "6L60"], + magnetbomb: ["9M"], magnetrise: ["7T", "6T"], meteorbeam: ["9M", "8T"], metronome: ["9M", "8M"], @@ -72770,6 +73707,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab scorchingsands: ["9M"], secretpower: ["6M"], sharpen: ["7L5", "6L8"], + silverwind: ["9M"], skillswap: ["9M", "8M", "8L56", "7T", "7L35", "6T", "6L40"], sleeptalk: ["9M", "8M", "7M", "6M"], smackdown: ["9M", "8L14", "7M", "7L8", "6M", "6L12"], @@ -72805,7 +73743,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab block: ["7T", "6T"], brickbreak: ["9M", "7M", "6M"], calmmind: ["9M", "7M", "6M"], - chargebeam: ["7M", "6M"], + chargebeam: ["9M", "7M", "6M"], confide: ["7M", "6M"], confusion: ["9M", "7L1", "6L1"], covet: ["7T", "6T"], @@ -72813,7 +73751,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab destinybond: ["9M", "7L1", "6L1"], doubleteam: ["7M", "6M"], drainpunch: ["9M", "7T", "6T"], - dreameater: ["7M", "6M"], + dreameater: ["9M", "7M", "6M"], dualchop: ["7T", "6T"], embargo: ["7M", "6M"], endure: ["9M"], @@ -72846,12 +73784,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab magiccoat: ["7T", "7L10", "6T", "6L10"], magicroom: ["7T", "6T"], nastyplot: ["9M", "7L68", "7S1", "6L68", "6S0"], + ominouswind: ["9M"], phantomforce: ["9M", "7L35", "6L35"], powersplit: ["9M", "7L29", "6L29"], poweruppunch: ["6M"], protect: ["9M", "7M", "6M"], psybeam: ["9M", "7L19", "6L15"], psychic: ["9M", "7M", "7L75", "7S1", "6M", "6L75", "6S0"], + psychicfangs: ["9M"], psychicnoise: ["9M"], psychicterrain: ["9M"], psychup: ["9M", "7M", "6M"], @@ -72870,8 +73810,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab scaryface: ["9M"], secretpower: ["6M"], shadowball: ["9M", "7M", "7L55", "7S1", "6M", "6L55"], + shadowpunch: ["9M"], shockwave: ["7T", "6T"], signalbeam: ["7T", "6T"], + silverwind: ["9M"], skillswap: ["9M", "7T", "7L25", "6T", "6L25"], skittersmack: ["9M"], sleeptalk: ["9M", "7M", "6M"], @@ -72903,7 +73845,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ], eventOnly: true, }, - hoopaunbound: { eventOnly: true }, + hoopaunbound: { + eventOnly: true, + }, volcanion: { learnset: { bodypress: ["9M", "8M"], @@ -74458,6 +75402,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab chillingwater: ["9M"], closecombat: ["9M", "7L49"], coaching: ["9M"], + cometpunch: ["9M"], confide: ["7M"], crabhammer: ["9M", "7L37"], dig: ["9M"], @@ -74470,12 +75415,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endeavor: ["9M", "9E", "7T", "7E"], endure: ["9M"], facade: ["9M", "7M"], + firstimpression: ["9M"], fling: ["9M", "7M"], focusblast: ["9M", "7M"], focuspunch: ["9M", "9E", "7T"], frostbreath: ["7M"], frustration: ["7M"], gunkshot: ["9M"], + harden: ["9M"], helpinghand: ["9M"], icepunch: ["9M", "7T"], irondefense: ["9M", "7T", "7L42"], @@ -74483,6 +75430,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab knockoff: ["9M"], leer: ["9M", "7L9"], liquidation: ["9M"], + machpunch: ["9M"], mudshot: ["9M"], mudslap: ["9M"], payback: ["9M", "7M", "7L29"], @@ -74506,12 +75454,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab substitute: ["9M", "7M"], sunnyday: ["9M", "7M"], superpower: ["9E", "7T", "7E"], - swagger: ["7M"], + swagger: ["9M", "7M"], swift: ["9M"], takedown: ["9M"], + taunt: ["9M"], terablast: ["9M"], thief: ["9M", "7M"], thunderpunch: ["9M", "7T"], + torment: ["9M"], upperhand: ["9M"], visegrip: ["9M"], wideguard: ["9E", "7E"], @@ -74537,6 +75487,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab chillingwater: ["9M"], closecombat: ["9M", "7L49"], coaching: ["9M"], + cometpunch: ["9M"], confide: ["7M"], dig: ["9M"], dizzypunch: ["7L25"], @@ -74548,6 +75499,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endeavor: ["9M", "7T"], endure: ["9M"], facade: ["9M", "7M"], + firstimpression: ["9M"], fling: ["9M", "7M"], focusblast: ["9M", "7M"], focuspunch: ["9M", "7T"], @@ -74556,6 +75508,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab gigaimpact: ["9M", "7M"], gunkshot: ["9M"], hail: ["7M"], + harden: ["9M"], hardpress: ["9M"], helpinghand: ["9M"], hyperbeam: ["9M"], @@ -74563,12 +75516,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab icehammer: ["9M", "7L37"], icepunch: ["9M", "7T", "7L1"], icespinner: ["9M"], + iciclespear: ["9M"], icywind: ["9M", "7T"], irondefense: ["9M", "7T", "7L42"], ironhead: ["9M", "7T"], knockoff: ["9M"], leer: ["9M", "7L1"], liquidation: ["9M"], + machpunch: ["9M"], mudshot: ["9M"], mudslap: ["9M"], payback: ["7M"], @@ -74585,6 +75540,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["7M"], scald: ["7M"], scaryface: ["9M"], + sheercold: ["9M"], slam: ["9M"], sleeptalk: ["9M", "7M"], snore: ["7T"], @@ -74594,12 +75550,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab substitute: ["9M", "7M"], sunnyday: ["9M", "7M"], superpower: ["7T"], - swagger: ["7M"], + swagger: ["9M", "7M"], swift: ["9M"], takedown: ["9M"], + taunt: ["9M"], terablast: ["9M"], thief: ["9M", "7M"], thunderpunch: ["9M", "7T"], + torment: ["9M"], upperhand: ["9M"], workup: ["7M"], zenheadbutt: ["9M", "7T"], @@ -77003,118 +77961,127 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab confide: ["7M"], defensecurl: ["8L1"], doubleteam: ["7M"], - endure: ["8M"], - facade: ["8M", "7M"], + endure: ["9M", "8M"], + facade: ["9M", "8M", "7M"], frustration: ["7M"], hail: ["8M", "7M"], - harden: ["8E", "7E"], + harden: ["9M", "8E", "7E"], leechlife: ["8M", "7M"], metalclaw: ["8E", "7E"], - mudshot: ["8M"], - protect: ["8M", "7M"], + mudshot: ["9M", "8M"], + protect: ["9M", "8M", "7M"], raindance: ["8M", "7M"], rest: ["8M", "7M"], return: ["7M"], - rollout: ["8E"], + rollout: ["9M", "8E"], round: ["8M", "7M"], sandattack: ["8L1", "7L1"], - scald: ["8M", "7M"], + scald: ["9M", "8M", "7M"], screech: ["8M"], skittersmack: ["8T"], sleeptalk: ["8M", "7M"], snore: ["8M", "7T"], - spikes: ["8M", "7E"], + spikes: ["9M", "8M", "7E"], strugglebug: ["8L1", "7L1"], - substitute: ["8M", "7M"], - surf: ["8M", "7M"], + substitute: ["9M", "8M", "7M"], + surf: ["9M", "8M", "7M"], swagger: ["7M"], - swift: ["8M"], - taunt: ["8M", "7M"], - waterfall: ["8M", "7M"], + swift: ["9M", "8M"], + taunt: ["9M", "8M", "7M"], + waterfall: ["9M", "8M", "7M"], wideguard: ["8E", "7E"], }, }, golisopod: { learnset: { aerialace: ["7M"], + agility: ["9M"], + aquajet: ["9M"], assurance: ["8M"], attract: ["8M", "7M"], - blizzard: ["8M", "7M"], - brickbreak: ["8M", "7M"], + blizzard: ["9M", "8M", "7M"], + brickbreak: ["9M", "8M", "7M"], bugbite: ["8L16", "7T", "7L10"], bugbuzz: ["8M"], - bulkup: ["8M", "7M"], - closecombat: ["8M"], + bulkup: ["9M", "8M", "7M"], + closecombat: ["9M", "8M"], confide: ["7M"], - darkpulse: ["8M", "7M"], + darkpulse: ["9M", "8M", "7M"], defensecurl: ["8L1"], dive: ["8M"], + doublehit: ["9M"], doubleteam: ["7M"], - drillrun: ["8M", "7T"], - dualchop: ["7T"], + drillrun: ["9M", "8M", "7T"], + dualchop: ["9M", "7T"], endeavor: ["7T"], - endure: ["8M"], - facade: ["8M", "7M"], - falseswipe: ["8M", "7M"], - firstimpression: ["8L0", "7L1"], + endure: ["9M", "8M"], + facade: ["9M", "8M", "7M"], + falseswipe: ["9M", "8M", "7M"], + firstimpression: ["9M", "8L0", "7L1"], fling: ["8M", "7M"], - focusblast: ["8M", "7M"], + focusblast: ["9M", "8M", "7M"], frostbreath: ["7M"], frustration: ["7M"], furycutter: ["8L8", "7L1"], - gigaimpact: ["8M", "7M"], + gigaimpact: ["9M", "8M", "7M"], + gunkshot: ["9M"], hail: ["8M", "7M"], - hyperbeam: ["8M"], - icebeam: ["8M", "7M"], - icywind: ["8M", "7T"], - irondefense: ["8M", "8L20", "7T", "7L36"], - ironhead: ["8M", "7T"], + harden: ["9M"], + hyperbeam: ["9M", "8M"], + icebeam: ["9M", "8M", "7M"], + icywind: ["9M", "8M", "7T"], + irondefense: ["9M", "8M", "8L20", "7T", "7L36"], + ironhead: ["9M", "8M", "7T"], knockoff: ["7T"], laserfocus: ["7T"], - leechlife: ["8M", "7M"], - liquidation: ["8M", "8L44", "7T", "7L48"], - muddywater: ["8M"], - mudshot: ["8M", "8L12"], + leechlife: ["9M", "8M", "7M"], + liquidation: ["9M", "8M", "8L44", "7T", "7L48"], + metalclaw: ["9M"], + muddywater: ["9M", "8M"], + mudshot: ["9M", "8M", "8L12"], + nightslash: ["9M"], painsplit: ["7T"], payback: ["8M", "7M"], - pinmissile: ["8M", "8L36", "7L41"], - poisonjab: ["8M", "7M"], - protect: ["8M", "7M"], + pinmissile: ["9M", "8M", "8L36", "7L41"], + poisonjab: ["9M", "8M", "7M"], + protect: ["9M", "8M", "7M"], psychup: ["7M"], raindance: ["8M", "7M"], razorshell: ["8M", "8L32", "7L26"], rest: ["8M", "7M"], return: ["7M"], - rockslide: ["8M", "7M"], - rocksmash: ["8L4", "7L1"], - rocktomb: ["8M", "7M"], + rockslide: ["9M", "8M", "7M"], + rocksmash: ["9M", "8L4", "7L1"], + rocktomb: ["9M", "8M", "7M"], + rollout: ["9M"], round: ["8M", "7M"], sandattack: ["8L1", "7L1"], - scald: ["8M", "7M"], - screech: ["8M"], - shadowclaw: ["8M", "7M"], + scald: ["9M", "8M", "7M"], + screech: ["9M", "8M"], + shadowclaw: ["9M", "8M", "7M"], skittersmack: ["8T"], - slash: ["8L28", "7L21"], + slash: ["9M", "8L28", "7L21"], sleeptalk: ["8M", "7M"], - sludgebomb: ["8M", "7M"], + sludgebomb: ["9M", "8M", "7M"], sludgewave: ["8M", "7M"], snarl: ["8M", "7M"], snore: ["8M", "7T"], - spikes: ["8M"], + spikes: ["9M", "8M"], spite: ["8L1", "7T", "7L13"], strugglebug: ["8L1", "7L1"], - substitute: ["8M", "7M"], + substitute: ["9M", "8M", "7M"], suckerpunch: ["8L24", "7L31"], - surf: ["8M", "7M"], + surf: ["9M", "8M", "7M"], swagger: ["7M"], - swift: ["8M"], - swordsdance: ["8M", "8L40", "7M", "7L16"], - taunt: ["8M", "7M"], + swift: ["9M", "8M"], + swordsdance: ["9M", "8M", "8L40", "7M", "7L16"], + taunt: ["9M", "8M", "7M"], throatchop: ["8M", "7T"], + uturn: ["9M"], venoshock: ["8M", "7M"], - waterfall: ["8M", "7M"], + waterfall: ["9M", "8M", "7M"], waterpulse: ["7T"], - xscissor: ["8M", "7M"], + xscissor: ["9M", "8M", "7M"], }, }, sandygast: { @@ -77122,7 +78089,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab absorb: ["9M", "8L1", "7L1"], afteryou: ["7T"], amnesia: ["9M", "8M", "7E"], - ancientpower: ["9E", "8E", "7E"], + ancientpower: ["9M", "9E", "8E", "7E"], astonish: ["9M", "8L5", "7L5"], attract: ["8M", "7M"], block: ["7T"], @@ -77132,6 +78099,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab confide: ["7M"], confuseray: ["9M"], curse: ["9M", "9E", "8E", "7E"], + darkpulse: ["9M"], destinybond: ["9E", "8E", "7E"], doubleteam: ["7M"], earthpower: ["9M", "8M", "8L50", "7T", "7L45"], @@ -77148,14 +78116,17 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab hex: ["9M"], hypnosis: ["9M", "8L30", "7L27"], imprison: ["9M"], - infestation: ["7M"], + infestation: ["9M", "7M"], irondefense: ["9M", "8M", "8L40", "7T", "7L32"], megadrain: ["9M", "8L15", "7L18"], mudshot: ["9M", "8M"], mudslap: ["9M"], + nastyplot: ["9M"], nightshade: ["9M"], + ominouswind: ["9M"], painsplit: ["9M", "7T"], poltergeist: ["9M", "8T"], + powergem: ["9M"], protect: ["9M", "8M", "7M"], psychic: ["9M", "8M", "7M"], raindance: ["9M"], @@ -77196,6 +78167,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab absorb: ["9M", "8L1", "7L1"], afteryou: ["7T"], amnesia: ["9M", "8M"], + ancientpower: ["9M"], astonish: ["9M", "8L1", "7L1"], attract: ["8M", "7M"], block: ["7T"], @@ -77206,6 +78178,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab confide: ["7M"], confuseray: ["9M"], curse: ["9M"], + darkpulse: ["9M"], doubleteam: ["7M"], earthpower: ["9M", "8M", "8L54", "7T", "7L47"], earthquake: ["9M", "8M", "7M"], @@ -77213,6 +78186,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M", "8M"], energyball: ["9M", "8M", "7M"], facade: ["9M", "8M", "7M"], + fakeout: ["9M"], + fissure: ["9M"], flashcannon: ["9M"], fling: ["9M", "8M", "7M"], frustration: ["7M"], @@ -77224,14 +78199,17 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab hyperbeam: ["9M"], hypnosis: ["9M", "8L30", "7L27"], imprison: ["9M"], - infestation: ["7M"], + infestation: ["9M", "7M"], irondefense: ["9M", "8M", "8L40", "7T", "7L32"], megadrain: ["9M", "8L15", "7L18"], mudshot: ["9M", "8M"], mudslap: ["9M"], + nastyplot: ["9M"], nightshade: ["9M"], + ominouswind: ["9M"], painsplit: ["9M", "7T"], poltergeist: ["9M", "8T"], + powergem: ["9M"], protect: ["9M", "8M", "7M"], psychic: ["9M", "8M", "7M"], quash: ["7M"], @@ -77263,6 +78241,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab swagger: ["7M"], terablast: ["9M"], terrainpulse: ["8T"], + torment: ["9M"], trick: ["9M", "8M", "7T"], }, }, @@ -77880,6 +78859,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mistyterrain: ["9M"], nightmare: ["7E"], nightshade: ["9M"], + nightslash: ["9M"], painsplit: ["9M", "8L60", "7T", "7L50"], payback: ["8M", "7M"], phantomforce: ["9M", "9S3", "8M"], @@ -77908,6 +78888,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab sunnyday: ["9M"], swagger: ["7M"], swordsdance: ["9M", "8M", "7M"], + tackle: ["9M"], takedown: ["9M"], taunt: ["9M", "8M", "7M"], telekinesis: ["7T"], @@ -77921,7 +78902,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab trickroom: ["9M", "8M", "7M"], willowisp: ["9M", "8M", "7M"], woodhammer: ["9M", "8L1", "7L1"], - workup: ["8M", "7M"], + workup: ["9M", "8M", "7M"], xscissor: ["9M", "8M", "7M"], }, eventData: [ @@ -78099,6 +79080,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab breakingswipe: ["8M"], bulldoze: ["8M", "7M"], calmmind: ["9M", "8M", "7M"], + chargebeam: ["9M"], confide: ["7M"], defog: ["7T"], doubleteam: ["7M"], @@ -78117,7 +79099,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M", "8M"], energyball: ["9M", "8M", "7M"], extrasensory: ["8L30", "7L37"], - facade: ["8M", "7M"], + facade: ["9M", "8M", "7M"], fireblast: ["9M", "8M", "7M"], flamethrower: ["9M", "8M", "7M"], fling: ["8M", "7M"], @@ -78147,7 +79129,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab protect: ["9M", "8M", "8L10", "7M", "7L9"], psychup: ["7M"], raindance: ["8M", "7M"], - razorwind: ["7E"], + razorwind: ["9M", "7E"], rest: ["8M", "7M"], return: ["7M"], roar: ["7M"], @@ -78155,7 +79137,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab roost: ["7M"], round: ["8M", "7M"], safeguard: ["9M", "8M", "8L20", "7M", "7L33"], - scaleshot: ["8T"], + scaleshot: ["9M", "8T"], shadowball: ["9M", "8M", "7M"], shadowclaw: ["9M", "8M", "7M"], shockwave: ["7T"], @@ -78176,6 +79158,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderbolt: ["9M", "8M", "7M"], thunderwave: ["9M", "8M", "7M"], tickle: ["8E"], + triattack: ["9M"], twister: ["9M", "8L5", "7L5"], uproar: ["8M", "7T"], waterpulse: ["7T"], @@ -79820,6 +80803,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lightscreen: ["9M", "8M", "7M"], lockon: ["9M"], luckychant: ["7L9", "7S0"], + magnetbomb: ["9M"], magneticflux: ["9M"], magnetrise: ["7T"], metalsound: ["9M"], @@ -79828,7 +80812,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mistyexplosion: ["9M", "8T"], mistyterrain: ["9M"], painsplit: ["9M", "8L78", "7T", "7L65"], + petaldance: ["9M"], playrough: ["9M"], + powergem: ["9M"], powerswap: ["8M"], protect: ["9M", "8M", "7M"], psybeam: ["9M", "8L30", "7L1"], @@ -79839,16 +80825,18 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab return: ["7M"], rollout: ["9M", "8L12"], round: ["8M", "7M"], - selfdestruct: ["8M"], + selfdestruct: ["9M", "8M"], shadowball: ["9M", "8M", "7M"], shiftgear: ["9M", "8L48", "7L1"], shockwave: ["7T"], signalbeam: ["7T"], skillswap: ["9M"], + skullbash: ["9M"], sleeptalk: ["9M"], snore: ["8M", "7T"], snowscape: ["9M"], solarbeam: ["9M", "8M", "7M"], + solarblade: ["9M"], sonicboom: ["7L1"], speedswap: ["8M"], spikes: ["9M"], @@ -79864,10 +80852,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab terablast: ["9M"], thunderbolt: ["9M", "8M", "7M"], thunderwave: ["9M", "8M", "7M"], - triattack: ["8M"], + triattack: ["9M", "8M"], trick: ["9M", "8M"], trickroom: ["9M", "8M", "7M"], trumpcard: ["7L97"], + vacuumwave: ["9M"], voltswitch: ["9M", "8M", "7M"], zapcannon: ["9M", "8L84"], zenheadbutt: ["9M", "8M", "7T"], @@ -79920,13 +80909,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ironhead: ["9M", "8M", "8L60"], lightscreen: ["9M", "8M"], lockon: ["9M"], + magnetbomb: ["9M"], magneticflux: ["9M"], metalsound: ["9M"], mindreader: ["8L42"], mistyexplosion: ["9M", "8T"], mistyterrain: ["9M"], painsplit: ["9M", "8L78"], + petaldance: ["9M"], playrough: ["9M"], + powergem: ["9M"], powerswap: ["8M"], protect: ["9M", "8M"], psybeam: ["9M", "8L30"], @@ -79936,14 +80928,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rest: ["9M", "8M", "8S0"], rollout: ["9M", "8L12"], round: ["8M"], - selfdestruct: ["8M"], + selfdestruct: ["9M", "8M"], shadowball: ["9M", "8M"], shiftgear: ["9M", "8L48"], skillswap: ["9M"], + skullbash: ["9M"], sleeptalk: ["9M"], snore: ["8M"], snowscape: ["9M"], solarbeam: ["9M", "8M"], + solarblade: ["9M"], speedswap: ["8M"], spikes: ["9M"], steelbeam: ["9M", "8T"], @@ -79956,9 +80950,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab terablast: ["9M"], thunderbolt: ["9M", "8M"], thunderwave: ["9M", "8M"], - triattack: ["8M"], + triattack: ["9M", "8M"], trick: ["9M", "8M"], trickroom: ["9M", "8M"], + vacuumwave: ["9M"], voltswitch: ["9M", "8M"], zapcannon: ["9M", "8L84"], zenheadbutt: ["9M", "8M"], @@ -79971,87 +80966,94 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab marshadow: { learnset: { acrobatics: ["8M", "7M"], - agility: ["8M"], + agility: ["9M", "8M"], assurance: ["8M", "8L36", "7L1"], - aurasphere: ["8M"], - blazekick: ["8M"], + aurasphere: ["9M", "8M"], + blazekick: ["9M", "8M"], bounce: ["8M", "7T"], - brickbreak: ["8M", "7M"], - bulkup: ["8M", "7M"], - calmmind: ["8M", "7M"], - closecombat: ["8M", "8L99", "7L50", "7S0"], + brickbreak: ["9M", "8M", "7M"], + brutalswing: ["9M"], + bulkup: ["9M", "8M", "7M"], + calmmind: ["9M", "8M", "7M"], + closecombat: ["9M", "8M", "8L99", "7L50", "7S0"], coaching: ["8T"], + cometpunch: ["9M"], confide: ["7M"], copycat: ["8L1", "7L20"], counter: ["8L1", "7L1"], doubleteam: ["7M"], - drainpunch: ["8M", "8L1", "8S1", "7T", "7L1"], + drainpunch: ["9M", "8M", "8L1", "8S1", "7T", "7L1"], + dualchop: ["9M"], echoedvoice: ["7M"], endeavor: ["8L90", "7T", "7L60"], - endure: ["8M"], - facade: ["8M", "7M"], - falseswipe: ["8M", "7M"], + endure: ["9M", "8M"], + facade: ["9M", "8M", "7M"], + falseswipe: ["9M", "8M", "7M"], feint: ["8L1", "7L11"], - firepunch: ["8M", "8L1", "7T", "7L1"], + firepunch: ["9M", "8M", "8L1", "7T", "7L1"], fling: ["8M", "7M"], - focusblast: ["8M", "7M"], + focusblast: ["9M", "8M", "7M"], focuspunch: ["7T"], forcepalm: ["8L27", "8S1", "7L5", "7S0"], foulplay: ["8M", "7T"], frustration: ["7M"], - gigaimpact: ["8M", "7M"], + gigaimpact: ["9M", "8M", "7M"], grassknot: ["8M", "7M"], hex: ["8M"], - hyperbeam: ["8M"], - icepunch: ["8M", "8L1", "7T", "7L1"], - ironhead: ["8M", "7T"], + hyperbeam: ["9M", "8M"], + icepunch: ["9M", "8M", "8L1", "7T", "7L1"], + ironhead: ["9M", "8M", "7T"], jumpkick: ["7L35"], - knockoff: ["7T"], + knockoff: ["9M", "7T"], laserfocus: ["8L81", "7T", "7L1"], lastresort: ["7T"], lowkick: ["8M", "7T"], - lowsweep: ["8M", "7M"], + lowsweep: ["9M", "8M", "7M"], + machpunch: ["9M"], megakick: ["8M"], megapunch: ["8M"], - outrage: ["8M", "7T"], + ominouswind: ["9M"], + outrage: ["9M", "8M", "7T"], payback: ["8M", "7M"], - phantomforce: ["8M"], - poisonjab: ["8M", "7M"], + phantomforce: ["9M", "8M"], + poisonjab: ["9M", "8M", "7M"], poltergeist: ["8T"], - protect: ["8M", "7M"], + poweruppunch: ["9M"], + protect: ["9M", "8M", "7M"], psychup: ["8L63", "7M", "7L41"], pursuit: ["7L1"], rest: ["8M", "7M"], return: ["7M"], revenge: ["8M"], reversal: ["8M"], - rockslide: ["8M", "7M"], - rocktomb: ["8M", "7M"], + rockslide: ["9M", "8M", "7M"], + rocktomb: ["9M", "8M", "7M"], roleplay: ["8L9", "7T", "7L30"], rollingkick: ["7L15"], round: ["8M", "7M"], - shadowball: ["8M", "7M", "7S0"], - shadowclaw: ["8M", "7M"], - shadowpunch: ["8L18", "7L26"], - shadowsneak: ["8L1", "8S1", "7L1"], + shadowball: ["9M", "8M", "7M", "7S0"], + shadowclaw: ["9M", "8M", "7M"], + shadowpunch: ["9M", "8L18", "7L26"], + shadowsneak: ["9M", "8L1", "8S1", "7L1"], skittersmack: ["8T"], sleeptalk: ["8M", "7M"], smackdown: ["7M"], snatch: ["7T"], snore: ["8M", "7T"], - spectralthief: ["8L72", "8S1", "7L45", "7S0"], - stoneedge: ["8M", "7M"], - substitute: ["8M", "7M"], + spectralthief: ["9M", "8L72", "8S1", "7L45", "7S0"], + stoneedge: ["9M", "8M", "7M"], + substitute: ["9M", "8M", "7M"], suckerpunch: ["8L45", "7L56"], superpower: ["8M", "7T"], swagger: ["7M"], - swift: ["8M"], + swift: ["9M", "8M"], thief: ["8M", "7M"], throatchop: ["8M", "7T"], - thunderpunch: ["8M", "8L1", "7T", "7L1"], - willowisp: ["8M", "7M"], - workup: ["8M", "7M"], - zenheadbutt: ["8M", "7T"], + thunderpunch: ["9M", "8M", "8L1", "7T", "7L1"], + vacuumwave: ["9M"], + willowisp: ["9M", "8M", "7M"], + workup: ["9M", "8M", "7M"], + zenheadbutt: ["9M", "8M", "7T"], }, eventData: [ { generation: 7, level: 50, moves: ["spectralthief", "closecombat", "forcepalm", "shadowball"], pokeball: "cherishball" }, @@ -80332,59 +81334,62 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab zeraora: { learnset: { acrobatics: ["8M", "7M"], - aerialace: ["7M"], - agility: ["8M", "8L80"], + aerialace: ["9M", "7M"], + agility: ["9M", "8M", "8L80"], assurance: ["8M"], aurasphere: ["8M"], - blazekick: ["8M", "8S1"], + blazekick: ["9M", "8M", "8S1"], bounce: ["8M", "7T"], - brickbreak: ["8M", "7M"], - brutalswing: ["8M", "7M"], - bulkup: ["8M", "7M"], - calmmind: ["8M", "7M"], - charge: ["8L40", "7L26"], - closecombat: ["8M", "8L96", "8S1", "7L47", "7S0"], + brickbreak: ["9M", "8M", "7M"], + brutalswing: ["9M", "8M", "7M"], + bulkup: ["9M", "8M", "7M"], + calmmind: ["9M", "8M", "7M"], + charge: ["9M", "8L40", "7L26"], + closecombat: ["9M", "8M", "8L96", "8S1", "7L47", "7S0"], coaching: ["8T"], + cometpunch: ["9M"], confide: ["7M"], - discharge: ["8L64", "7L50"], + discharge: ["9M", "8L64", "7L50"], doubleteam: ["7M"], - drainpunch: ["8M", "7T"], + drainpunch: ["9M", "8M", "7T"], dualchop: ["7T"], + dynamicpunch: ["9M"], echoedvoice: ["7M"], electricterrain: ["8M"], electroball: ["8M"], - electroweb: ["8M", "7T"], + electroweb: ["9M", "8M", "7T"], endeavor: ["7T"], - endure: ["8M"], - facade: ["8M", "7M"], - fakeout: ["8L1", "7L22"], - falseswipe: ["8M", "7M"], - firepunch: ["8M", "7T"], + endure: ["9M", "8M"], + facade: ["9M", "8M", "7M"], + fakeout: ["9M", "8L1", "7L22"], + falseswipe: ["9M", "8M", "7M"], + firepunch: ["9M", "8M", "7T"], fling: ["8M", "7M"], - focusblast: ["8M", "7M"], + focusblast: ["9M", "8M", "7M"], focuspunch: ["7T"], frustration: ["7M"], furyswipes: ["8L8", "7L12"], - gigaimpact: ["8M", "7M"], + gigaimpact: ["9M", "8M", "7M"], grassknot: ["8M", "7M"], helpinghand: ["8M"], honeclaws: ["8L56", "7L5"], - hyperbeam: ["8M"], - irontail: ["8M", "7T"], + hyperbeam: ["9M", "8M"], + irontail: ["9M", "8M", "7T"], knockoff: ["7T"], laserfocus: ["7T"], lowkick: ["8M", "7T"], - lowsweep: ["8M", "7M"], + lowsweep: ["9M", "8M", "7M"], megakick: ["8M"], megapunch: ["8M"], - outrage: ["8M", "8S1", "7T"], - payday: ["8M"], - plasmafists: ["8L88", "8S1", "7L43", "7S0"], - playrough: ["8M"], - poweruppunch: ["8L1"], - protect: ["8M", "7M"], - quickattack: ["8L1", "7L8"], + outrage: ["9M", "8M", "8S1", "7T"], + payday: ["9M", "8M"], + plasmafists: ["9M", "8L88", "8S1", "7L43", "7S0"], + playrough: ["9M", "8M"], + poweruppunch: ["9M", "8L1"], + protect: ["9M", "8M", "7M"], + quickattack: ["9M", "8L1", "7L8"], quickguard: ["8L16", "7L40"], + razorwind: ["9M"], rest: ["8M", "7M"], return: ["7M"], revenge: ["8M"], @@ -80394,24 +81399,25 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab scaryface: ["8M"], scratch: ["8L1", "7L1"], shockwave: ["7T"], - slash: ["8L24", "7L33"], + slash: ["9M", "8L24", "7L33"], sleeptalk: ["8M", "7M"], - snarl: ["8M", "8L1", "7M", "7L19"], + snarl: ["9M", "8M", "8L1", "7M", "7L19"], snatch: ["7T"], snore: ["8M", "7T"], - spark: ["8L1", "7L1"], - substitute: ["8M", "7M"], + spark: ["9M", "8L1", "7L1"], + substitute: ["9M", "8M", "7M"], superpower: ["8M", "7T"], - swift: ["8M"], - taunt: ["8M", "7M"], + swift: ["9M", "8M"], + taunt: ["9M", "8M", "7M"], throatchop: ["8M", "7T"], - thunder: ["8M", "7M", "7S0"], - thunderbolt: ["8M", "7M"], - thunderpunch: ["8M", "8L48", "7T", "7L29", "7S0"], - thunderwave: ["8M", "7M"], - voltswitch: ["8M", "8L32", "7M", "7L15"], - wildcharge: ["8M", "8L72", "7M", "7L36"], - workup: ["8M", "7M"], + thunder: ["9M", "8M", "7M", "7S0"], + thunderbolt: ["9M", "8M", "7M"], + thunderpunch: ["9M", "8M", "8L48", "7T", "7L29", "7S0"], + thunderwave: ["9M", "8M", "7M"], + vacuumwave: ["9M"], + voltswitch: ["9M", "8M", "8L32", "7M", "7L15"], + wildcharge: ["9M", "8M", "8L72", "7M", "7L36"], + workup: ["9M", "8M", "7M"], }, eventData: [ { generation: 7, level: 50, moves: ["plasmafists", "thunderpunch", "closecombat", "thunder"], pokeball: "cherishball" }, @@ -80421,25 +81427,31 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, meltan: { learnset: { - acidarmor: ["9S0", "8L32", "8V", "7L36"], - endure: ["8M"], - facade: ["8M"], - flashcannon: ["9S0", "8M", "8L40", "8V", "7M", "7L45"], + acidarmor: ["9M", "9S0", "8L32", "8V", "7L36"], + brutalswing: ["9M"], + chargebeam: ["9M"], + endure: ["9M", "8M"], + facade: ["9M", "8M"], + flashcannon: ["9M", "9S0", "8M", "8L40", "8V", "7M", "7L45"], + gigaimpact: ["9M"], gyroball: ["8M"], - harden: ["8L1", "8V", "7L1"], - headbutt: ["9S0", "8L16", "8V", "7M", "7L1"], - irondefense: ["8M"], - protect: ["8M", "8V", "7M"], + harden: ["9M", "8L1", "8V", "7L1"], + headbutt: ["9M", "9S0", "8L16", "8V", "7M", "7L1"], + irondefense: ["9M", "8M"], + ironhead: ["9M"], + magnetbomb: ["9M"], + protect: ["9M", "8M", "8V", "7M"], rest: ["8M", "8V", "7M"], round: ["8M"], + selfdestruct: ["9M"], sleeptalk: ["8M"], snore: ["8M"], - steelbeam: ["8T"], - substitute: ["8M", "8V", "7M"], - tailwhip: ["8L8", "8V", "7L9"], - thunderbolt: ["8M", "8V", "7M"], - thundershock: ["8L1", "8V", "7L27"], - thunderwave: ["9S0", "8M", "8L24", "8V", "7M", "7L18"], + steelbeam: ["9M", "8T"], + substitute: ["9M", "8M", "8V", "7M"], + tailwhip: ["9M", "8L8", "8V", "7L9"], + thunderbolt: ["9M", "8M", "8V", "7M"], + thundershock: ["9M", "8L1", "8V", "7L27"], + thunderwave: ["9M", "9S0", "8M", "8L24", "8V", "7M", "7L18"], }, eventData: [ { generation: 9, level: 50, shiny: true, nature: "Adamant", moves: ["headbutt", "acidarmor", "thunderwave", "flashcannon"], ivs: { hp: 31, atk: 31, def: 31, spa: 20, spd: 20, spe: 20 }, pokeball: "cherishball" }, @@ -80447,52 +81459,54 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, melmetal: { learnset: { - acidarmor: ["8L32", "8V", "7L36"], + acidarmor: ["9M", "8L32", "8V", "7L36"], bodypress: ["8M"], - bodyslam: ["8M"], - brickbreak: ["8M", "8V", "7M"], - brutalswing: ["8M"], + bodyslam: ["9M", "8M"], + brickbreak: ["9M", "8M", "8V", "7M"], + brutalswing: ["9M", "8M"], + chargebeam: ["9M"], darkestlariat: ["8M"], - discharge: ["8L64"], - doubleironbash: ["8L88", "8V", "8S0", "7L72"], - dynamicpunch: ["8L72", "8S0"], - earthquake: ["8M", "8V", "7M"], + discharge: ["9M", "8L64"], + doubleironbash: ["9M", "8L88", "8V", "8S0", "7L72"], + dynamicpunch: ["9M", "8L72", "8S0"], + earthquake: ["9M", "8M", "8V", "7M"], electricterrain: ["8M"], - endure: ["8M"], - facade: ["8M", "8V", "7M"], - flashcannon: ["8M", "8L40", "8V", "7M", "7L45"], - gigaimpact: ["8M"], + endure: ["9M", "8M"], + facade: ["9M", "8M", "8V", "7M"], + flashcannon: ["9M", "8M", "8L40", "8V", "7M", "7L45"], + gigaimpact: ["9M", "8M"], gyroball: ["8M"], - harden: ["8L1", "8V", "7L1"], - headbutt: ["8L1", "8V", "7M", "7L1"], - heavyslam: ["8M"], + harden: ["9M", "8L1", "8V", "7L1"], + headbutt: ["9M", "8L1", "8V", "7M", "7L1"], + heavyslam: ["9M", "8M"], highhorsepower: ["8M"], - hyperbeam: ["8M", "8L96", "8V", "8S0", "7M", "7L90"], - icebeam: ["8M", "8V", "7M"], - icepunch: ["8M", "8V", "7M"], - irondefense: ["8M"], - ironhead: ["8M"], + hyperbeam: ["9M", "8M", "8L96", "8V", "8S0", "7M", "7L90"], + icebeam: ["9M", "8M", "8V", "7M"], + icepunch: ["9M", "8M", "8V", "7M"], + irondefense: ["9M", "8M"], + ironhead: ["9M", "8M"], + magnetbomb: ["9M"], megakick: ["8M"], megapunch: ["8M", "8L48", "8V", "7L54"], - protect: ["8M", "8L56", "8V", "7M", "7L63"], + protect: ["9M", "8M", "8L56", "8V", "7M", "7L63"], rest: ["8M", "8V", "7M"], - rockslide: ["8M", "8V", "7M"], - rocktomb: ["8M"], + rockslide: ["9M", "8M", "8V", "7M"], + rocktomb: ["9M", "8M"], round: ["8M"], - selfdestruct: ["8M", "8V", "7M"], + selfdestruct: ["9M", "8M", "8V", "7M"], sleeptalk: ["8M"], snore: ["8M"], - solarbeam: ["8M", "8V", "7M"], - steelbeam: ["8T"], + solarbeam: ["9M", "8M", "8V", "7M"], + steelbeam: ["9M", "8T"], steelroller: ["8T"], - substitute: ["8M", "8V", "7M"], + substitute: ["9M", "8M", "8V", "7M"], superpower: ["8M", "8L80", "8V", "7M", "7L81"], - tailwhip: ["8L1", "8V", "7L1"], - thunder: ["8M", "8V", "7M"], - thunderbolt: ["8M", "8V", "7M"], - thunderpunch: ["8M", "8L0", "8V", "8S0", "7M", "7L0"], - thundershock: ["8L1", "8V", "7L27"], - thunderwave: ["8M", "8L24", "8V", "7M", "7L1"], + tailwhip: ["9M", "8L1", "8V", "7L1"], + thunder: ["9M", "8M", "8V", "7M"], + thunderbolt: ["9M", "8M", "8V", "7M"], + thunderpunch: ["9M", "8M", "8L0", "8V", "8S0", "7M", "7L0"], + thundershock: ["9M", "8L1", "8V", "7L27"], + thunderwave: ["9M", "8M", "8L24", "8V", "7M", "7L1"], }, eventData: [ { generation: 8, level: 100, nature: "Brave", ivs: { hp: 31, atk: 31, def: 31, spa: 31, spd: 31, spe: 0 }, moves: ["doubleironbash", "hyperbeam", "dynamicpunch", "thunderpunch"], pokeball: "cherishball" }, @@ -81196,9 +82210,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M", "8M"], facade: ["9M", "8M"], faketears: ["9M", "8M"], + featherdance: ["9M"], fly: ["9M", "8M"], focusenergy: ["8M"], furyattack: ["9M", "8L12"], + gust: ["9M"], honeclaws: ["9M", "8L8"], leer: ["9M", "8L1"], nastyplot: ["9M", "8M"], @@ -81207,16 +82223,18 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab pluck: ["9M", "8L16"], powertrip: ["9M", "8L4"], protect: ["9M", "8M"], + razorwind: ["9M"], rest: ["9M", "8M"], retaliate: ["8M"], revenge: ["8M"], reversal: ["9M", "8M"], - rocksmash: ["9E", "8E"], + rocksmash: ["9M", "9E", "8E"], roost: ["9E", "8E"], round: ["8M"], sandattack: ["9E", "8E"], scaryface: ["9M", "8M", "8L24"], - skyattack: ["9E", "8E"], + skyattack: ["9M", "9E", "8E"], + slash: ["9M"], sleeptalk: ["9M", "8M"], snore: ["8M"], spite: ["9M", "9E", "8E"], @@ -81229,6 +82247,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab terablast: ["9M"], thief: ["9M", "8M"], uturn: ["9M", "8M"], + wingattack: ["9M"], workup: ["8M"], }, }, @@ -81246,9 +82265,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M", "8M"], facade: ["9M", "8M"], faketears: ["9M", "8M"], + featherdance: ["9M"], fly: ["9M", "8M"], focusenergy: ["8M"], furyattack: ["9M", "8L12"], + gust: ["9M"], honeclaws: ["9M", "8L1"], hurricane: ["9M"], leer: ["9M", "8L1"], @@ -81258,12 +82279,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab pluck: ["9M", "8L16"], powertrip: ["9M", "8L1"], protect: ["9M", "8M"], + razorwind: ["9M"], rest: ["9M", "8M"], retaliate: ["8M"], revenge: ["8M"], reversal: ["9M", "8M"], + rocksmash: ["9M"], round: ["8M"], scaryface: ["9M", "8M", "8L28"], + skyattack: ["9M"], + slash: ["9M"], sleeptalk: ["9M", "8M"], snore: ["8M"], spite: ["9M"], @@ -81277,7 +82302,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab terablast: ["9M"], thief: ["9M", "8M"], uturn: ["9M", "8M"], - workup: ["8M"], + wingattack: ["9M"], + workup: ["9M", "8M"], }, }, corviknight: { @@ -81299,11 +82325,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M", "8M"], facade: ["9M", "8M"], faketears: ["9M", "8M"], + featherdance: ["9M"], flashcannon: ["9M", "8M"], fly: ["9M", "8M"], focusenergy: ["8M"], furyattack: ["9M", "8L12"], gigaimpact: ["9M", "8M"], + gust: ["9M"], heavyslam: ["9M", "8M"], honeclaws: ["9M", "8L1"], hurricane: ["9M", "8M"], @@ -81312,23 +82340,29 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ironhead: ["9M", "8M"], leer: ["9M", "8L1"], lightscreen: ["9M", "8M"], + magnetbomb: ["9M"], metalclaw: ["9M"], metalsound: ["9M", "8L1"], nastyplot: ["9M", "8M"], + ominouswind: ["9M"], payback: ["8M"], peck: ["9M", "8L1"], pluck: ["9M", "8L16"], powertrip: ["9M", "8L1"], protect: ["9M", "8M"], raindance: ["9M"], + razorwind: ["9M"], reflect: ["9M", "8M"], rest: ["9M", "8M"], retaliate: ["8M"], revenge: ["8M"], reversal: ["9M", "8M"], + rocksmash: ["9M"], round: ["8M"], scaryface: ["9M", "8M", "8L28"], screech: ["9M", "8M"], + skyattack: ["9M"], + slash: ["9M"], sleeptalk: ["9M", "8M"], snore: ["8M"], spite: ["9M"], @@ -81344,7 +82378,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab terablast: ["9M"], thief: ["9M", "8M"], uturn: ["9M", "8M"], - workup: ["8M"], + wingattack: ["9M"], + workup: ["9M", "8M"], }, }, blipbug: { @@ -81459,91 +82494,115 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, nickit: { learnset: { - agility: ["8M"], + agility: ["9M", "8M"], assurance: ["8M", "8L16"], attract: ["8M"], batonpass: ["8M"], beatup: ["8M", "8L4"], - dig: ["8M"], - endure: ["8M"], - facade: ["8M"], - faketears: ["8M"], + darkpulse: ["9M"], + dig: ["9M", "8M"], + doubleteam: ["9M"], + endure: ["9M", "8M"], + facade: ["9M", "8M"], + fakeout: ["9M"], + faketears: ["9M", "8M"], + firstimpression: ["9M"], foulplay: ["8M", "8L36"], + healblock: ["9M"], honeclaws: ["8L8"], howl: ["8E"], - knockoff: ["8E"], + icywind: ["9M"], + knockoff: ["9M", "8E"], lashout: ["8T"], - mudshot: ["8M"], - nastyplot: ["8M", "8L20"], - nightslash: ["8L28"], - playrough: ["8M"], - protect: ["8M"], - quickattack: ["8L1"], + mimic: ["9M"], + mudshot: ["9M", "8M"], + nastyplot: ["9M", "8M", "8L20"], + nightslash: ["9M", "8L28"], + partingshot: ["9M"], + playrough: ["9M", "8M"], + protect: ["9M", "8M"], + quickattack: ["9M", "8L1"], quickguard: ["8E"], + razorwind: ["9M"], rest: ["8M"], + roar: ["9M"], round: ["8M"], screech: ["8M"], sleeptalk: ["8M"], - snarl: ["8M", "8L12"], + snarl: ["9M", "8M", "8L12"], snore: ["8M"], - substitute: ["8M"], + substitute: ["9M", "8M"], suckerpunch: ["8L24"], - swift: ["8M"], + swift: ["9M", "8M"], tailslap: ["8M", "8L32"], - tailwhip: ["8L1"], - taunt: ["8M"], + tailwhip: ["9M", "8L1"], + taunt: ["9M", "8M"], thief: ["8M"], - torment: ["8E"], + torment: ["9M", "8E"], + trailblaze: ["9M"], + willowisp: ["9M"], }, }, thievul: { learnset: { acrobatics: ["8M"], - agility: ["8M"], + agility: ["9M", "8M"], assurance: ["8M", "8L16"], attract: ["8M"], batonpass: ["8M"], beatup: ["8M", "8L1"], burningjealousy: ["8T"], - crunch: ["8M"], - darkpulse: ["8M"], - dig: ["8M"], - endure: ["8M"], - facade: ["8M"], - faketears: ["8M"], - firefang: ["8M"], + crunch: ["9M", "8M"], + darkpulse: ["9M", "8M"], + dig: ["9M", "8M"], + doubleteam: ["9M"], + endure: ["9M", "8M"], + facade: ["9M", "8M"], + fakeout: ["9M"], + faketears: ["9M", "8M"], + firefang: ["9M", "8M"], + firstimpression: ["9M"], foulplay: ["8M", "8L46"], - gigaimpact: ["8M"], + gigaimpact: ["9M", "8M"], grassknot: ["8M"], + healblock: ["9M"], honeclaws: ["8L1"], - hyperbeam: ["8M"], - icefang: ["8M"], + hyperbeam: ["9M", "8M"], + icefang: ["9M", "8M"], + icywind: ["9M"], + knockoff: ["9M"], lashout: ["8T"], - mudshot: ["8M"], - nastyplot: ["8M", "8L22"], - nightslash: ["8L34"], - partingshot: ["8L52"], - playrough: ["8M"], - protect: ["8M"], - psychic: ["8M"], - quickattack: ["8L1"], + mimic: ["9M"], + mudshot: ["9M", "8M"], + nastyplot: ["9M", "8M", "8L22"], + nightslash: ["9M", "8L34"], + partingshot: ["9M", "8L52"], + playrough: ["9M", "8M"], + protect: ["9M", "8M"], + psychic: ["9M", "8M"], + quickattack: ["9M", "8L1"], + razorwind: ["9M"], rest: ["8M"], + roar: ["9M"], round: ["8M"], screech: ["8M"], - shadowball: ["8M"], - shadowclaw: ["8M"], + shadowball: ["9M", "8M"], + shadowclaw: ["9M", "8M"], sleeptalk: ["8M"], - snarl: ["8M", "8L12"], + snarl: ["9M", "8M", "8L12"], snore: ["8M"], - substitute: ["8M"], + substitute: ["9M", "8M"], suckerpunch: ["8L28"], - swift: ["8M"], + swift: ["9M", "8M"], tailslap: ["8M", "8L40"], - tailwhip: ["8L1"], - taunt: ["8M"], + tailwhip: ["9M", "8L1"], + taunt: ["9M", "8M"], thief: ["8M", "8L0"], - thunderfang: ["8M"], - uturn: ["8M"], + thunderfang: ["9M", "8M"], + torment: ["9M"], + trailblaze: ["9M"], + uturn: ["9M", "8M"], + willowisp: ["9M"], }, }, gossifleur: { @@ -82558,6 +83617,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab hyperbeam: ["9M", "8M"], hypervoice: ["9M", "8M"], leer: ["9M", "8L1"], + magnetbomb: ["9M"], megakick: ["8M"], megapunch: ["8M"], metalsound: ["9M"], @@ -82601,12 +83661,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderpunch: ["9M", "8M"], thundershock: ["9M", "8L1"], thunderwave: ["9M", "8M"], + toxic: ["9M"], toxicspikes: ["9M"], trailblaze: ["9M"], uproar: ["9M", "8M"], venoshock: ["9M", "8M", "8L20"], voltswitch: ["9M", "8M"], wildcharge: ["9M", "8M"], + zapcannon: ["9M"], }, eventData: [ { generation: 8, level: 50, shiny: true, nature: "Rash", abilities: ["punkrock"], moves: ["overdrive", "sludgewave", "boomburst", "risingvoltage"], pokeball: "cherishball" }, @@ -82791,100 +83853,122 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab learnset: { attract: ["8M"], bind: ["8L10"], - bodyslam: ["8M"], - brickbreak: ["8M", "8L20"], + bodyslam: ["9M", "8M"], + brickbreak: ["9M", "8M", "8L20"], brine: ["8M"], - bulkup: ["8M", "8L25"], - circlethrow: ["8E"], - closecombat: ["8M"], + bulkup: ["9M", "8M", "8L25"], + bulletpunch: ["9M"], + chillingwater: ["9M"], + circlethrow: ["9M", "8E"], + closecombat: ["9M", "8M"], coaching: ["8T"], - detect: ["8L15"], + cometpunch: ["9M"], + detect: ["9M", "8L15"], dive: ["8M"], - endure: ["8M"], - facade: ["8M"], + doublehit: ["9M"], + drainpunch: ["9M"], + dualchop: ["9M"], + endure: ["9M", "8M"], + facade: ["9M", "8M"], feint: ["8L5"], - focusblast: ["8M"], - icepunch: ["8M"], - leer: ["8L1"], - liquidation: ["8M"], + focusblast: ["9M", "8M"], + icepunch: ["9M", "8M"], + knockoff: ["9M"], + leer: ["9M", "8L1"], + liquidation: ["9M", "8M"], + machpunch: ["9M"], megapunch: ["8M"], - muddywater: ["8M"], - mudshot: ["8M"], + muddywater: ["9M", "8M"], + mudshot: ["9M", "8M"], painsplit: ["8E"], payback: ["8M"], - poweruppunch: ["8E"], - protect: ["8M"], + poweruppunch: ["9M", "8E"], + protect: ["9M", "8M"], rest: ["8M"], retaliate: ["8M"], revenge: ["8M"], reversal: ["8M", "8L40"], - rocksmash: ["8L1"], + rocksmash: ["9M", "8L1"], round: ["8M"], seismictoss: ["8E"], sleeptalk: ["8M"], snore: ["8M"], soak: ["8E"], + stormthrow: ["9M"], submission: ["8L30"], - substitute: ["8M"], + substitute: ["9M", "8M"], suckerpunch: ["8E"], superpower: ["8M", "8L45"], - taunt: ["8M", "8L35"], - waterfall: ["8M"], - workup: ["8M"], + taunt: ["9M", "8M", "8L35"], + vacuumwave: ["9M"], + waterfall: ["9M", "8M"], + whirlpool: ["9M"], + workup: ["9M", "8M"], }, }, grapploct: { learnset: { attract: ["8M"], bind: ["8L1"], - bodyslam: ["8M"], - brickbreak: ["8M", "8L20"], + bodyslam: ["9M", "8M"], + brickbreak: ["9M", "8M", "8L20"], brine: ["8M"], brutalswing: ["8M"], - bulkup: ["8M", "8L25"], - closecombat: ["8M"], + bulkup: ["9M", "8M", "8L25"], + bulletpunch: ["9M"], + chillingwater: ["9M"], + circlethrow: ["9M"], + closecombat: ["9M", "8M"], coaching: ["8T"], - detect: ["8L15"], - dig: ["8M"], + cometpunch: ["9M"], + detect: ["9M", "8L15"], + dig: ["9M", "8M"], dive: ["8M"], - drainpunch: ["8M"], - endure: ["8M"], - facade: ["8M"], + doublehit: ["9M"], + drainpunch: ["9M", "8M"], + dualchop: ["9M"], + endure: ["9M", "8M"], + facade: ["9M", "8M"], feint: ["8L1"], - focusblast: ["8M"], - gigaimpact: ["8M"], - hydropump: ["8M"], - hyperbeam: ["8M"], - icepunch: ["8M"], - leer: ["8L1"], - liquidation: ["8M"], + focusblast: ["9M", "8M"], + gigaimpact: ["9M", "8M"], + hydropump: ["9M", "8M"], + hyperbeam: ["9M", "8M"], + icepunch: ["9M", "8M"], + knockoff: ["9M"], + leer: ["9M", "8L1"], + liquidation: ["9M", "8M"], + machpunch: ["9M"], megapunch: ["8M"], - muddywater: ["8M"], - mudshot: ["8M"], + muddywater: ["9M", "8M"], + mudshot: ["9M", "8M"], octazooka: ["8L1"], - octolock: ["8L0"], + octolock: ["9M", "8L0"], payback: ["8M"], - protect: ["8M"], + poweruppunch: ["9M"], + protect: ["9M", "8M"], rest: ["8M"], retaliate: ["8M"], revenge: ["8M"], reversal: ["8M", "8L40"], - rocksmash: ["8L1"], + rocksmash: ["9M", "8L1"], round: ["8M"], scaryface: ["8M"], skittersmack: ["8T"], sleeptalk: ["8M"], snore: ["8M"], stompingtantrum: ["8M"], + stormthrow: ["9M"], submission: ["8L30"], - substitute: ["8M"], + substitute: ["9M", "8M"], superpower: ["8M", "8L45"], - surf: ["8M"], - taunt: ["8M", "8L35"], - topsyturvy: ["8L50"], - waterfall: ["8M"], - whirlpool: ["8M"], - workup: ["8M"], + surf: ["9M", "8M"], + taunt: ["9M", "8M", "8L35"], + topsyturvy: ["9M", "8L50"], + vacuumwave: ["9M"], + waterfall: ["9M", "8M"], + whirlpool: ["9M", "8M"], + workup: ["9M", "8M"], }, }, sinistea: { @@ -83518,10 +84602,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bulkup: ["9M", "8M", "8L20"], closecombat: ["9M", "8M", "8L50"], coaching: ["9M", "8T"], + cometpunch: ["9M"], counter: ["9M", "8L60"], + doublehit: ["9M"], endeavor: ["9M"], endure: ["9M", "8M", "8L25"], facade: ["9M", "8M"], + fakeout: ["9M"], falseswipe: ["9M", "8M"], firstimpression: ["9M", "8L35"], focusblast: ["9M", "8M"], @@ -83534,6 +84621,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab irondefense: ["9M", "8M", "8L45"], ironhead: ["9M", "8M"], knockoff: ["9M"], + lowsweep: ["9M"], lunge: ["9M"], megahorn: ["9M", "8M", "8L55"], noretreat: ["9M", "8L40"], @@ -83551,6 +84639,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocktomb: ["9M", "8M"], round: ["8M"], screech: ["8M"], + seedbomb: ["9M"], + skullbash: ["9M"], sleeptalk: ["9M", "8M"], smartstrike: ["9M", "8M"], snore: ["8M"], @@ -83843,20 +84933,26 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab attract: ["8M"], bodyslam: ["9M"], calmmind: ["9M", "8M", "8L40"], + chargebeam: ["9M"], + chillingwater: ["9M"], dazzlinggleam: ["9M", "8M"], disarmingvoice: ["9M", "8L10"], drainingkiss: ["9M", "8M"], drainpunch: ["9M", "8M"], + dreameater: ["9M"], encore: ["9M", "8M", "8L5"], endure: ["9M", "8M"], energyball: ["9M", "8M"], expandingforce: ["9M", "8T"], extrasensory: ["9E", "8E"], facade: ["9M", "8M"], - fakeout: ["9E", "8E"], - futuresight: ["8M"], + fakeout: ["9M", "9E", "8E"], + futuresight: ["9M", "8M"], gravity: ["9M"], + growl: ["9M"], + healblock: ["9M"], healingwish: ["9M"], + heatwave: ["9M"], helpinghand: ["9M", "8M", "8L20"], hypervoice: ["9M", "8M"], imprison: ["9M", "8M"], @@ -83864,6 +84960,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab magicalleaf: ["9M", "8M"], magicroom: ["8M"], metronome: ["9M", "8M"], + mimic: ["9M"], + moonblast: ["9M"], + moonlight: ["9M"], mysticalfire: ["8M"], payday: ["8M"], playnice: ["9M", "8L1"], @@ -83877,6 +84976,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab psychicterrain: ["9M", "8M", "8L50"], psychup: ["9M", "9E", "8E"], psyshock: ["9M", "8M"], + razorwind: ["9M"], rest: ["9M", "8M"], round: ["8M"], shadowball: ["9M", "8M"], @@ -83889,9 +84989,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab takedown: ["9M"], terablast: ["9M"], terrainpulse: ["8T"], - triattack: ["8M"], + triattack: ["9M", "8M"], trick: ["9M", "8M"], trickroom: ["9M", "8M"], + vacuumwave: ["9M"], + wish: ["9M"], wonderroom: ["8M"], zenheadbutt: ["9M", "8M"], }, @@ -83906,19 +85008,24 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bodyslam: ["9M"], calmmind: ["9M", "8M", "8L40"], charm: ["9M"], + chillingwater: ["9M"], dazzlinggleam: ["9M", "8M"], disarmingvoice: ["9M", "8L10"], + doubleteam: ["9M"], drainingkiss: ["9M", "8M"], drainpunch: ["9M", "8M"], + dreameater: ["9M"], endure: ["9M", "8M"], energyball: ["9M", "8M"], expandingforce: ["8T"], facade: ["9M", "8M"], - fakeout: ["9E", "8E"], + fakeout: ["9M", "9E", "8E"], followme: ["9M", "8L25"], - futuresight: ["8M"], + futuresight: ["9M", "8M"], + growl: ["9M"], guardsplit: ["9M", "8L45"], guardswap: ["8M"], + healblock: ["9M"], healingwish: ["9M", "8L55"], healpulse: ["9E", "8E"], helpinghand: ["9M", "8M", "8L20"], @@ -83927,6 +85034,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lightscreen: ["9M", "8M"], magicalleaf: ["9M", "8M"], metronome: ["9M", "8M"], + moonblast: ["9M"], + moonlight: ["9M"], mysticalfire: ["8M"], payday: ["8M"], playnice: ["9M", "8L1"], @@ -83941,8 +85050,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab reflect: ["9M", "8M"], rest: ["9M", "8M"], round: ["8M"], - safeguard: ["8M"], + safeguard: ["9M", "8M"], shadowball: ["9M", "9S0", "8M"], + sing: ["9M"], skillswap: ["9M"], sleeptalk: ["9M", "8M"], snore: ["8M"], @@ -83952,8 +85062,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab takedown: ["9M"], terablast: ["9M"], terrainpulse: ["8T"], + triattack: ["9M"], trick: ["9M", "8M"], trickroom: ["9M", "9S0"], + wish: ["9M"], zenheadbutt: ["9M", "8M"], }, eventData: [ @@ -83982,7 +85094,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endeavor: ["9M"], endure: ["9M", "8M"], facade: ["9M", "8M"], - fakeout: ["9E", "8E"], + fakeout: ["9M", "9E", "8E"], faketears: ["9M", "8M"], firefang: ["9M", "8M"], flatter: ["9M", "8L20"], @@ -83994,7 +85106,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab leer: ["9M", "8L5"], nastyplot: ["9M", "8M"], outrage: ["9M", "8M"], - partingshot: ["9E", "8E"], + partingshot: ["9M", "9E", "8E"], payback: ["8M"], powertrip: ["9M", "8L10"], protect: ["9M", "8M"], @@ -84009,6 +85121,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab round: ["8M"], scaryface: ["9M", "8M"], seedbomb: ["9M", "8M"], + skullbash: ["9M"], sleeptalk: ["9M", "8M"], snarl: ["9M", "8M"], snore: ["8M"], @@ -84017,7 +85130,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab stompingtantrum: ["9M", "8M"], substitute: ["9M", "8M"], superfang: ["9M", "9E", "8E"], - swagger: ["9E", "8E"], + swagger: ["9M", "9E", "8E"], swift: ["9M", "8M"], tailwhip: ["9M", "8L1"], takedown: ["9M"], @@ -85845,7 +86958,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ], eventOnly: true, }, - enamorustherian: { eventOnly: true }, + enamorustherian: { + eventOnly: true, + }, sprigatito: { learnset: { acrobatics: ["9M"], @@ -86823,6 +87938,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dig: ["9M"], disable: ["9E"], doubleedge: ["9M"], + dreameater: ["9M"], endeavor: ["9M"], endure: ["9M"], facade: ["9M"], @@ -86838,6 +87954,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mudshot: ["9M"], mudslap: ["9M"], nightshade: ["9M"], + ominouswind: ["9M"], painsplit: ["9M"], phantomforce: ["9M"], playrough: ["9M"], @@ -86850,12 +87967,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab sandstorm: ["9M"], scaryface: ["9M"], shadowball: ["9M"], - shadowsneak: ["9E"], + shadowsneak: ["9M", "9E"], sleeptalk: ["9M"], + smokescreen: ["9M"], snarl: ["9M"], stompingtantrum: ["9M"], substitute: ["9M"], sunnyday: ["9M"], + swagger: ["9M"], tackle: ["9M"], tailwhip: ["9M"], takedown: ["9M"], @@ -86864,7 +87983,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thunderfang: ["9M"], trick: ["9M"], uproar: ["9M"], + willowisp: ["9M"], yawn: ["9E"], + zenheadbutt: ["9M"], }, }, houndstone: { @@ -86877,6 +87998,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab crunch: ["9M"], dig: ["9M"], doubleedge: ["9M"], + dreameater: ["9M"], endeavor: ["9M"], endure: ["9M"], facade: ["9M"], @@ -86893,6 +88015,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab mudshot: ["9M"], mudslap: ["9M"], nightshade: ["9M"], + ominouswind: ["9M"], painsplit: ["9M"], phantomforce: ["9M"], playrough: ["9M"], @@ -86904,12 +88027,17 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab roar: ["9M"], sandstorm: ["9M"], scaryface: ["9M"], + seedbomb: ["9M"], shadowball: ["9M"], + shadowclaw: ["9M"], + shadowsneak: ["9M"], sleeptalk: ["9M"], + smokescreen: ["9M"], snarl: ["9M"], stompingtantrum: ["9M"], substitute: ["9M"], sunnyday: ["9M"], + swagger: ["9M"], tackle: ["9M"], tailwhip: ["9M"], takedown: ["9M"], @@ -86919,6 +88047,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab trick: ["9M"], uproar: ["9M"], willowisp: ["9M"], + workup: ["9M"], + zenheadbutt: ["9M"], }, }, flittle: { @@ -87217,14 +88347,18 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab earthquake: ["9M"], endure: ["9M"], facade: ["9M"], - fissure: ["9E"], + fissure: ["9M", "9E"], flail: ["9M"], gigaimpact: ["9M"], heavyslam: ["9M"], hydropump: ["9M"], hyperbeam: ["9M"], icefang: ["9M"], + irontail: ["9M"], + lick: ["9M"], liquidation: ["9M"], + muddywater: ["9M"], + mudshot: ["9M"], nobleroar: ["9M"], orderup: ["9M"], outrage: ["9M"], @@ -87248,6 +88382,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab watergun: ["9M"], waterpulse: ["9M"], wavecrash: ["9M"], + whirlpool: ["9M"], yawn: ["9E"], zenheadbutt: ["9M"], }, @@ -87570,14 +88705,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ingrain: ["9E"], leafage: ["9M"], leafstorm: ["9M"], - leechseed: ["9E"], + leechseed: ["9M", "9E"], leer: ["9M"], magicalleaf: ["9M"], protect: ["9M"], ragepowder: ["9E"], razorleaf: ["9M"], rest: ["9M"], - rollout: ["9E"], + rollout: ["9M", "9E"], sandstorm: ["9M"], seedbomb: ["9M"], sleeptalk: ["9M"], @@ -87600,13 +88735,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bulletseed: ["9M"], burningjealousy: ["9M"], crunch: ["9M"], + doublehit: ["9M"], endeavor: ["9M"], endure: ["9M"], energyball: ["9M"], facade: ["9M"], fireblast: ["9M"], firefang: ["9M"], + firespin: ["9M"], flamethrower: ["9M"], + flareblitz: ["9M"], gigadrain: ["9M"], gigaimpact: ["9M"], grassknot: ["9M"], @@ -87619,12 +88757,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lashout: ["9M"], leafage: ["9M"], leafstorm: ["9M"], + leechseed: ["9M"], leer: ["9M"], magicalleaf: ["9M"], + nastyplot: ["9M"], + outrage: ["9M"], overheat: ["9M"], protect: ["9M"], razorleaf: ["9M"], rest: ["9M"], + rollout: ["9M"], sandstorm: ["9M"], scaryface: ["9M"], seedbomb: ["9M"], @@ -87635,10 +88777,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab substitute: ["9M"], sunnyday: ["9M"], superfang: ["9M"], + swagger: ["9M"], takedown: ["9M"], temperflare: ["9M"], terablast: ["9M"], thief: ["9M"], + thunderfang: ["9M"], trailblaze: ["9M"], willowisp: ["9M"], worryseed: ["9M"], @@ -88127,12 +89271,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dragonbreath: ["9M"], dragonclaw: ["9M"], dragonpulse: ["9M"], - dragonrush: ["9E"], + dragonrush: ["9M", "9E"], dragontail: ["9M"], endure: ["9M"], facade: ["9M"], focusenergy: ["9M"], - freezedry: ["9E"], + freezedry: ["9M", "9E"], helpinghand: ["9M"], icebeam: ["9M"], icefang: ["9M"], @@ -88167,10 +89311,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dragonbreath: ["9M"], dragonclaw: ["9M"], dragonpulse: ["9M"], + dragonrush: ["9M"], dragontail: ["9M"], endure: ["9M"], facade: ["9M"], focusenergy: ["9M"], + freezedry: ["9M"], + frostbreath: ["9M"], helpinghand: ["9M"], icebeam: ["9M"], icefang: ["9M"], @@ -88213,12 +89360,15 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dragonclaw: ["9M"], dragondance: ["9M"], dragonpulse: ["9M"], + dragonrush: ["9M"], dragontail: ["9M"], earthquake: ["9M"], endure: ["9M"], facade: ["9M"], falseswipe: ["9M"], focusenergy: ["9M"], + freezedry: ["9M"], + frostbreath: ["9M"], gigaimpact: ["9M"], glaiverush: ["9M", "9S0"], helpinghand: ["9M"], @@ -88226,6 +89376,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab hyperbeam: ["9M"], icebeam: ["9M"], icefang: ["9M"], + icehammer: ["9M"], iceshard: ["9M", "9S0"], iciclecrash: ["9M"], iciclespear: ["9M", "9S0"], @@ -88234,10 +89385,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab leer: ["9M"], outrage: ["9M"], protect: ["9M"], + psychicfangs: ["9M"], raindance: ["9M"], rest: ["9M"], scaleshot: ["9M", "9S0"], scaryface: ["9M"], + sheercold: ["9M"], sleeptalk: ["9M"], snowscape: ["9M"], stompingtantrum: ["9M"], @@ -88255,31 +89408,41 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, tatsugiri: { learnset: { + ancientpower: ["9M"], batonpass: ["9M", "9E"], + calmmind: ["9M"], chillingwater: ["9M"], counter: ["9E"], + darkpulse: ["9M"], dracometeor: ["9M"], dragoncheer: ["9M"], dragondance: ["9M"], dragonpulse: ["9M", "9S0"], + dragonrush: ["9M"], endure: ["9M"], facade: ["9M"], + flipturn: ["9M"], gigaimpact: ["9M"], harden: ["9M"], helpinghand: ["9M"], hydropump: ["9M"], hyperbeam: ["9M"], + icebeam: ["9M"], icywind: ["9M", "9S0"], lunge: ["9M"], memento: ["9M"], + mimic: ["9M"], mirrorcoat: ["9M"], muddywater: ["9M", "9S0"], + mudshot: ["9M"], nastyplot: ["9M"], outrage: ["9M"], protect: ["9M"], raindance: ["9M"], rapidspin: ["9E"], + razorwind: ["9M"], rest: ["9M"], + scald: ["9M"], sleeptalk: ["9M"], soak: ["9M"], splash: ["9M"], @@ -88288,6 +89451,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab takedown: ["9M"], taunt: ["9M", "9S0"], terablast: ["9M"], + tripleaxel: ["9M"], + waterfall: ["9M"], watergun: ["9M"], waterpulse: ["9M"], whirlpool: ["9M"], @@ -88328,19 +89493,21 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M"], facade: ["9M"], firefang: ["9M"], + flamecharge: ["9M"], gigaimpact: ["9M"], growl: ["9M"], + headbutt: ["9M"], hyperbeam: ["9M"], hypervoice: ["9M"], icespinner: ["9M"], ironhead: ["9M"], - irontail: ["9E"], + irontail: ["9M", "9E"], knockoff: ["9M", "9E"], mudshot: ["9M"], mudslap: ["9M"], outrage: ["9M"], overheat: ["9M"], - powerwhip: ["9E"], + powerwhip: ["9M", "9E"], protect: ["9M"], quickattack: ["9M"], raindance: ["9M"], @@ -88349,6 +89516,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab scaleshot: ["9M"], shedtail: ["9M"], shiftgear: ["9M"], + skullbash: ["9M"], sleeptalk: ["9M"], substitute: ["9M"], sunnyday: ["9M"], @@ -88734,6 +89902,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab aircutter: ["9M"], airslash: ["9M"], bravebird: ["9M"], + bulkup: ["9M"], copycat: ["9M"], doubleedge: ["9M", "9E"], dualwingbeat: ["9M"], @@ -88749,14 +89918,18 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab furyattack: ["9M"], gigaimpact: ["9M"], growl: ["9M"], + headbutt: ["9M"], heatwave: ["9M"], helpinghand: ["9M"], hurricane: ["9M"], hyperbeam: ["9M"], hypervoice: ["9M"], + ironhead: ["9M"], + knockoff: ["9M"], lashout: ["9M"], + lunge: ["9M"], mimic: ["9M"], - partingshot: ["9E"], + partingshot: ["9M", "9E"], peck: ["9M"], pounce: ["9M"], protect: ["9M"], @@ -88765,6 +89938,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab reversal: ["9M"], roost: ["9M"], scaryface: ["9M"], + seedbomb: ["9M"], + skullbash: ["9M"], + skyattack: ["9M"], sleeptalk: ["9M"], substitute: ["9M"], sunnyday: ["9M"], @@ -88777,6 +89953,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab torment: ["9M"], uproar: ["9M"], uturn: ["9M"], + workup: ["9M"], }, }, flamigo: { @@ -88787,13 +89964,15 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab aircutter: ["9M"], airslash: ["9M"], bravebird: ["9M"], + brickbreak: ["9M"], + brutalswing: ["9M"], bulkup: ["9M"], chillingwater: ["9M"], closecombat: ["9M"], copycat: ["9M"], detect: ["9M"], doublekick: ["9M"], - doubleteam: ["9E"], + doubleteam: ["9M", "9E"], dualwingbeat: ["9M"], endeavor: ["9M"], endure: ["9M"], @@ -88806,11 +89985,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab gigaimpact: ["9M"], hurricane: ["9M"], hyperbeam: ["9M"], + knockoff: ["9M"], liquidation: ["9M"], lowkick: ["9M"], lowsweep: ["9M"], lunge: ["9M"], megakick: ["9M"], + mimic: ["9M"], payback: ["9M"], peck: ["9M"], pounce: ["9M"], @@ -88819,8 +90000,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab quickguard: ["9E"], rest: ["9M"], reversal: ["9M"], + rocksmash: ["9M"], roost: ["9M"], - skyattack: ["9E"], + skyattack: ["9M", "9E"], sleeptalk: ["9M"], substitute: ["9M"], swordsdance: ["9M"], @@ -88830,9 +90012,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab terablast: ["9M"], thief: ["9M"], throatchop: ["9M"], + tripleaxel: ["9M"], upperhand: ["9M"], uturn: ["9M"], + waterfall: ["9M"], waterpulse: ["9M"], + whirlwind: ["9M"], wideguard: ["9M"], wingattack: ["9M"], }, @@ -88901,7 +90086,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, nacli: { learnset: { - ancientpower: ["9E"], + ancientpower: ["9M", "9E"], bodyslam: ["9M"], bulldoze: ["9M"], curse: ["9M", "9E"], @@ -88910,7 +90095,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab earthquake: ["9M"], endure: ["9M"], facade: ["9M"], - fissure: ["9E"], + fissure: ["9M", "9E"], flashcannon: ["9M"], harden: ["9M"], headbutt: ["9M"], @@ -88928,7 +90113,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rockpolish: ["9M"], rockslide: ["9M"], rockthrow: ["9M"], + rocktomb: ["9M"], sandstorm: ["9M"], + skullbash: ["9M"], sleeptalk: ["9M"], smackdown: ["9M"], stealthrock: ["9M"], @@ -88944,6 +90131,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, naclstack: { learnset: { + ancientpower: ["9M"], bodypress: ["9M"], bodyslam: ["9M"], bulldoze: ["9M"], @@ -88954,6 +90142,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab earthquake: ["9M"], endure: ["9M"], facade: ["9M"], + fissure: ["9M"], flashcannon: ["9M"], gigaimpact: ["9M"], harden: ["9M"], @@ -88973,8 +90162,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rockpolish: ["9M"], rockslide: ["9M"], rockthrow: ["9M"], + rocktomb: ["9M"], saltcure: ["9M"], sandstorm: ["9M"], + skullbash: ["9M"], sleeptalk: ["9M"], smackdown: ["9M"], stealthrock: ["9M"], @@ -88990,6 +90181,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab }, garganacl: { learnset: { + ancientpower: ["9M"], avalanche: ["9M"], block: ["9M"], bodypress: ["9M"], @@ -88999,12 +90191,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab curse: ["9M"], dig: ["9M"], doubleedge: ["9M"], + dynamicpunch: ["9M"], earthpower: ["9M"], earthquake: ["9M"], endure: ["9M"], explosion: ["9M"], facade: ["9M"], firepunch: ["9M"], + fissure: ["9M"], flashcannon: ["9M"], fling: ["9M"], focuspunch: ["9M"], @@ -89034,6 +90228,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rocktomb: ["9M"], saltcure: ["9M", "9S0"], sandstorm: ["9M"], + skullbash: ["9M"], sleeptalk: ["9M"], smackdown: ["9M"], stealthrock: ["9M"], @@ -89060,12 +90255,13 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab confuseray: ["9M"], dazzlinggleam: ["9M"], endure: ["9M"], - explosion: ["9E"], + explosion: ["9M", "9E"], facade: ["9M"], gunkshot: ["9M"], harden: ["9M"], irondefense: ["9M"], lightscreen: ["9M"], + magnetbomb: ["9M"], memento: ["9E"], meteorbeam: ["9M"], mudshot: ["9M"], @@ -89092,6 +90288,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab substitute: ["9M"], sunnyday: ["9M"], terablast: ["9M"], + toxic: ["9M"], toxicspikes: ["9M"], venoshock: ["9M"], }, @@ -89106,6 +90303,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab earthpower: ["9M"], endure: ["9M"], energyball: ["9M"], + explosion: ["9M"], facade: ["9M"], flashcannon: ["9M"], gigaimpact: ["9M"], @@ -89114,6 +90312,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab hyperbeam: ["9M"], irondefense: ["9M"], lightscreen: ["9M"], + magnetbomb: ["9M"], meteorbeam: ["9M"], mortalspin: ["9M"], mudshot: ["9M"], @@ -89142,6 +90341,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab substitute: ["9M"], sunnyday: ["9M"], terablast: ["9M"], + toxic: ["9M"], toxicspikes: ["9M"], venoshock: ["9M"], }, @@ -89165,20 +90365,24 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab foulplay: ["9M"], furyswipes: ["9M"], gunkshot: ["9M"], + healblock: ["9M"], helpinghand: ["9M"], knockoff: ["9M"], leer: ["9M"], + lightscreen: ["9M"], metronome: ["9M"], + mimic: ["9M"], mudshot: ["9M"], mudslap: ["9M"], nastyplot: ["9M"], - partingshot: ["9E"], + partingshot: ["9M", "9E"], poisonfang: ["9M"], poisonjab: ["9M"], pounce: ["9M"], protect: ["9M"], psychup: ["9M"], raindance: ["9M"], + reflect: ["9M"], rest: ["9M"], scratch: ["9M"], skittersmack: ["9M"], @@ -89189,7 +90393,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab substitute: ["9M"], sunnyday: ["9M"], superfang: ["9M", "9E"], - swagger: ["9E"], + swagger: ["9M", "9E"], switcheroo: ["9M"], swordsdance: ["9M"], takedown: ["9M"], @@ -89197,6 +90401,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab terablast: ["9M"], thief: ["9M"], throatchop: ["9M"], + toxic: ["9M"], + toxicspikes: ["9M"], trailblaze: ["9M"], uturn: ["9M"], venoshock: ["9M"], @@ -89207,6 +90413,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab acidspray: ["9M"], acrobatics: ["9M"], batonpass: ["9M"], + bite: ["9M"], dig: ["9M"], doodle: ["9M"], doubleedge: ["9M"], @@ -89214,21 +90421,26 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endeavor: ["9M"], endure: ["9M"], facade: ["9M"], + firstimpression: ["9M"], flatter: ["9M"], fling: ["9M"], foulplay: ["9M"], furyswipes: ["9M"], gigaimpact: ["9M"], gunkshot: ["9M"], + healblock: ["9M"], helpinghand: ["9M"], knockoff: ["9M"], leer: ["9M"], + lightscreen: ["9M"], lowkick: ["9M"], lowsweep: ["9M"], metronome: ["9M"], + mimic: ["9M"], mudshot: ["9M"], mudslap: ["9M"], nastyplot: ["9M"], + partingshot: ["9M"], poisonfang: ["9M"], poisonjab: ["9M"], poisontail: ["9M"], @@ -89236,9 +90448,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab protect: ["9M"], psychup: ["9M"], raindance: ["9M"], + razorwind: ["9M"], + reflect: ["9M"], rest: ["9M"], scaryface: ["9M"], scratch: ["9M"], + seedbomb: ["9M"], shadowclaw: ["9M"], skittersmack: ["9M"], slash: ["9M"], @@ -89248,6 +90463,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab substitute: ["9M"], sunnyday: ["9M"], superfang: ["9M"], + swagger: ["9M"], switcheroo: ["9M"], swordsdance: ["9M"], takedown: ["9M"], @@ -89255,7 +90471,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab terablast: ["9M"], thief: ["9M"], throatchop: ["9M"], + toxic: ["9M"], + toxicspikes: ["9M"], trailblaze: ["9M"], + triattack: ["9M"], uturn: ["9M"], venoshock: ["9M"], xscissor: ["9M"], @@ -89269,6 +90488,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab batonpass: ["9M"], bite: ["9M"], bodyslam: ["9M"], + bounce: ["9M"], charm: ["9M", "9S0"], copycat: ["9E"], covet: ["9M"], @@ -89276,10 +90496,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab dazzlinggleam: ["9M"], dig: ["9M"], doubleedge: ["9M"], + drainingkiss: ["9M"], endeavor: ["9M"], endure: ["9M"], facade: ["9M"], firefang: ["9M"], + flamecharge: ["9M"], growl: ["9M"], helpinghand: ["9M"], howl: ["9E"], @@ -89308,7 +90530,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab terablast: ["9M"], thunderfang: ["9M"], trailblaze: ["9M"], - wish: ["9E"], + wish: ["9M", "9E"], workup: ["9M"], yawn: ["9E"], }, @@ -89325,6 +90547,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab bite: ["9M"], bodypress: ["9M"], bodyslam: ["9M"], + bounce: ["9M"], charm: ["9M"], covet: ["9M"], crunch: ["9M"], @@ -89336,6 +90559,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab endure: ["9M"], facade: ["9M"], firefang: ["9M"], + flamecharge: ["9M"], gigaimpact: ["9M"], growl: ["9M"], helpinghand: ["9M"], @@ -89354,6 +90578,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rest: ["9M"], roar: ["9M"], scaryface: ["9M"], + seedbomb: ["9M"], sleeptalk: ["9M"], snarl: ["9M"], stompingtantrum: ["9M"], @@ -89365,6 +90590,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab terablast: ["9M"], thunderfang: ["9M"], trailblaze: ["9M"], + wish: ["9M"], workup: ["9M"], }, }, @@ -89372,6 +90598,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab learnset: { bite: ["9M"], bodyslam: ["9M"], + bounce: ["9M"], charm: ["9M"], crunch: ["9M"], darkpulse: ["9M"], @@ -89383,14 +90610,17 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab facade: ["9M"], faketears: ["9M"], firefang: ["9M"], + focusenergy: ["9M"], headbutt: ["9M"], helpinghand: ["9M"], honeclaws: ["9M"], icefang: ["9M"], jawlock: ["9M"], + knockoff: ["9M"], lashout: ["9M"], leer: ["9M"], lick: ["9M"], + lunge: ["9M"], payback: ["9M"], playrough: ["9M", "9E"], protect: ["9M"], @@ -89400,7 +90630,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab retaliate: ["9E"], reversal: ["9M"], roar: ["9M"], + rocksmash: ["9M"], scaryface: ["9M"], + seedbomb: ["9M"], sleeptalk: ["9M"], snarl: ["9M"], substitute: ["9M"], @@ -89419,6 +90651,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab learnset: { bite: ["9M"], bodyslam: ["9M"], + bounce: ["9M"], charm: ["9M"], comeuppance: ["9M"], crunch: ["9M"], @@ -89431,6 +90664,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab facade: ["9M"], faketears: ["9M"], firefang: ["9M"], + focusenergy: ["9M"], gigaimpact: ["9M"], headbutt: ["9M"], helpinghand: ["9M"], @@ -89439,9 +90673,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab hypervoice: ["9M"], icefang: ["9M"], jawlock: ["9M"], + knockoff: ["9M"], lashout: ["9M"], leer: ["9M"], lick: ["9M"], + lunge: ["9M"], outrage: ["9M"], painsplit: ["9M"], payback: ["9M"], @@ -89452,7 +90688,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rest: ["9M"], reversal: ["9M"], roar: ["9M"], + rocksmash: ["9M"], scaryface: ["9M"], + seedbomb: ["9M"], + skullbash: ["9M"], sleeptalk: ["9M"], snarl: ["9M"], spite: ["9M"], @@ -89568,6 +90807,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab astonish: ["9M", "9S2", "9S0"], confuseray: ["9M"], endure: ["9M"], + facade: ["9M"], hex: ["9M", "9S1"], lightscreen: ["9M"], nastyplot: ["9M"], @@ -89595,10 +90835,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab learnset: { astonish: ["9M"], chargebeam: ["9M"], + cometpunch: ["9M"], confuseray: ["9M"], dazzlinggleam: ["9M"], electroball: ["9M"], endure: ["9M"], + facade: ["9M"], flashcannon: ["9M"], fling: ["9M"], focusblast: ["9M"], @@ -89611,11 +90853,14 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lightscreen: ["9M"], lowkick: ["9M"], lowsweep: ["9M"], + magnetbomb: ["9M"], makeitrain: ["9M"], memento: ["9M"], metalsound: ["9M"], + metronome: ["9M"], nastyplot: ["9M"], nightshade: ["9M"], + ominouswind: ["9M"], poltergeist: ["9M"], powergem: ["9M"], protect: ["9M"], @@ -89626,9 +90871,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab rest: ["9M"], sandstorm: ["9M"], shadowball: ["9M"], + shadowpunch: ["9M"], sleeptalk: ["9M"], steelbeam: ["9M"], substitute: ["9M"], + surf: ["9M"], tackle: ["9M"], takedown: ["9M"], terablast: ["9M"], @@ -90964,7 +92211,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab learnset: { astonish: ["9M"], babydolleyes: ["9M"], + brickbreak: ["9M"], brutalswing: ["9M"], + bulldoze: ["9M"], covet: ["9M"], drainingkiss: ["9M"], encore: ["9M"], @@ -90974,6 +92223,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab fairywind: ["9M"], fakeout: ["9M"], faketears: ["9M"], + falseswipe: ["9M"], feint: ["9E"], flashcannon: ["9M"], flatter: ["9M"], @@ -90988,13 +92238,16 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab metronome: ["9M"], playrough: ["9M"], pounce: ["9M"], + poweruppunch: ["9M"], protect: ["9M"], quash: ["9E"], reflect: ["9M"], rest: ["9M"], rockslide: ["9M"], rocksmash: ["9M"], + rockthrow: ["9M"], rocktomb: ["9M"], + screech: ["9M"], skillswap: ["9M"], skittersmack: ["9M"], slam: ["9M"], @@ -91005,6 +92258,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab substitute: ["9M"], sweetkiss: ["9M"], swordsdance: ["9M"], + tackle: ["9M"], terablast: ["9M"], thief: ["9M"], thunderwave: ["9M"], @@ -91016,6 +92270,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab babydolleyes: ["9M"], brickbreak: ["9M"], brutalswing: ["9M"], + bulkup: ["9M"], + bulldoze: ["9M"], covet: ["9M"], drainingkiss: ["9M"], encore: ["9M"], @@ -91025,6 +92281,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab fairywind: ["9M"], fakeout: ["9M"], faketears: ["9M"], + falseswipe: ["9M"], flashcannon: ["9M"], flatter: ["9M"], fling: ["9M"], @@ -91037,12 +92294,15 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab metronome: ["9M"], playrough: ["9M"], pounce: ["9M"], + poweruppunch: ["9M"], protect: ["9M"], reflect: ["9M"], rest: ["9M"], rockslide: ["9M"], rocksmash: ["9M"], + rockthrow: ["9M"], rocktomb: ["9M"], + screech: ["9M"], skillswap: ["9M"], skittersmack: ["9M"], slam: ["9M"], @@ -91053,6 +92313,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab substitute: ["9M"], sweetkiss: ["9M"], swordsdance: ["9M"], + tackle: ["9M"], terablast: ["9M"], thief: ["9M"], thunderwave: ["9M"], @@ -91064,6 +92325,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab babydolleyes: ["9M"], brickbreak: ["9M"], brutalswing: ["9M"], + bulkup: ["9M"], bulldoze: ["9M"], covet: ["9M"], drainingkiss: ["9M"], @@ -91074,6 +92336,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab fairywind: ["9M"], fakeout: ["9M"], faketears: ["9M"], + falseswipe: ["9M"], flashcannon: ["9M"], flatter: ["9M"], fling: ["9M"], @@ -91082,6 +92345,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab hardpress: ["9M"], heavyslam: ["9M"], helpinghand: ["9M"], + hyperbeam: ["9M"], + icehammer: ["9M"], knockoff: ["9M"], lightscreen: ["9M"], metalclaw: ["9M"], @@ -91089,12 +92354,15 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab metronome: ["9M"], playrough: ["9M"], pounce: ["9M"], + poweruppunch: ["9M"], protect: ["9M"], reflect: ["9M"], rest: ["9M"], rockslide: ["9M"], rocksmash: ["9M"], + rockthrow: ["9M"], rocktomb: ["9M"], + screech: ["9M"], skillswap: ["9M"], skittersmack: ["9M"], slam: ["9M"], @@ -91106,9 +92374,11 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab substitute: ["9M"], sweetkiss: ["9M"], swordsdance: ["9M"], + tackle: ["9M"], terablast: ["9M"], thief: ["9M"], thunderwave: ["9M"], + woodhammer: ["9M"], }, }, charcadet: { @@ -91133,10 +92403,12 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lavaplume: ["9M"], leer: ["9M"], nightshade: ["9M"], + ominouswind: ["9M"], overheat: ["9M"], protect: ["9M"], rest: ["9M"], sleeptalk: ["9M"], + smokescreen: ["9M"], spite: ["9M", "9E"], substitute: ["9M"], sunnyday: ["9M"], @@ -91173,8 +92445,10 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab flashcannon: ["9M"], fling: ["9M"], focusblast: ["9M"], + futuresight: ["9M"], heatwave: ["9M"], helpinghand: ["9M"], + hyperbeam: ["9M"], incinerate: ["9M"], irondefense: ["9M"], lavaplume: ["9M"], @@ -91183,6 +92457,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab meteorbeam: ["9M"], mysticalfire: ["9M"], nightshade: ["9M"], + ominouswind: ["9M"], overheat: ["9M"], protect: ["9M"], psybeam: ["9M"], @@ -91195,6 +92470,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab scorchingsands: ["9M"], shadowball: ["9M"], sleeptalk: ["9M"], + smokescreen: ["9M"], solarbeam: ["9M"], spite: ["9M"], storedpower: ["9M"], @@ -91232,6 +92508,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab flamethrower: ["9M"], flareblitz: ["9M"], fling: ["9M"], + gigaimpact: ["9M"], heatwave: ["9M"], helpinghand: ["9M"], hex: ["9M"], @@ -91243,6 +92520,7 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab lightscreen: ["9M"], nightshade: ["9M"], nightslash: ["9M"], + ominouswind: ["9M"], overheat: ["9M"], phantomforce: ["9M"], poisonjab: ["9M"], @@ -91251,14 +92529,17 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab psychocut: ["9M"], psychup: ["9M"], quickguard: ["9M"], + razorwind: ["9M"], reflect: ["9M"], rest: ["9M"], shadowball: ["9M"], shadowclaw: ["9M"], shadowsneak: ["9M"], sleeptalk: ["9M"], + smokescreen: ["9M"], solarblade: ["9M"], spite: ["9M"], + stoneedge: ["9M"], storedpower: ["9M"], substitute: ["9M"], sunnyday: ["9M"], @@ -92017,9 +93298,15 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab ], eventOnly: true, }, - ogerponhearthflame: { eventOnly: true }, - ogerponwellspring: { eventOnly: true }, - ogerponcornerstone: { eventOnly: true }, + ogerponhearthflame: { + eventOnly: true, + }, + ogerponwellspring: { + eventOnly: true, + }, + ogerponcornerstone: { + eventOnly: true, + }, archaludon: { learnset: { aurasphere: ["9M"], @@ -98513,8 +99800,8 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab stompingtantrum: ["9M"], substitute: ["9M"], sunnyday: ["9M"], - superfang: ["9M"], supercellslam: ["9M"], + superfang: ["9M"], swallow: ["9E"], tackle: ["9M"], takedown: ["9M"], @@ -98522,9 +99809,9 @@ export const Learnsets: import('../../../sim/dex-species').ModdedLearnsetDataTab thief: ["9M"], throatchop: ["9M"], thunder: ["9M"], + thunderbolt: ["9M"], thundershock: ["9M"], thunderwave: ["9M"], - thunderbolt: ["9M"], trailblaze: ["9M"], uproar: ["9M"], voltswitch: ["9M"], diff --git a/data/mods/gen9legendsou/moves.ts b/data/mods/gen9legendsou/moves.ts index 9885166c88..71bfbd2479 100644 --- a/data/mods/gen9legendsou/moves.ts +++ b/data/mods/gen9legendsou/moves.ts @@ -1,67 +1,10 @@ export const Moves: import('../../../sim/dex-moves').ModdedMoveDataTable = { - gearup: { + volttackle: { inherit: true, - onHitSide(side, source, move) { - const targets = side.allies().filter(target => ( - target.hasAbility(['plus', 'minus', 'magneticflux']) && - (!target.volatiles['maxguard'] || this.runEvent('TryHit', target, source, move)) - )); - if (!targets.length) return false; - let didSomething = false; - for (const target of targets) { - didSomething = this.boost({ atk: 1, spa: 1 }, target, source, move, false, true) || didSomething; + onModifyMove(move, pokemon, target) { + if (pokemon.baseSpecies.name === "Raichu-Mega-X") { + move.self = { boosts: { atk: 1 } }; } - return didSomething; - }, - }, - magneticflux: { - inherit: true, - onHitSide(side, source, move) { - const targets = side.allies().filter(target => ( - target.hasAbility(['plus', 'minus', 'magneticflux']) && - (!target.volatiles['maxguard'] || this.runEvent('TryHit', target, source, move)) - )); - if (!targets.length) return false; - let didSomething = false; - for (const target of targets) { - didSomething = this.boost({ def: 1, spd: 1 }, target, source, move, false, true) || didSomething; - } - return didSomething; - }, - }, - smackdown: { - inherit: true, - condition: { - noCopy: true, - onStart(pokemon) { - let applies = false; - if (pokemon.hasType('Flying') || pokemon.hasAbility(['levitate', 'ionbattery'])) applies = true; - if (pokemon.hasItem('ironball') || pokemon.volatiles['ingrain'] || - this.field.getPseudoWeather('gravity')) applies = false; - if (pokemon.removeVolatile('fly') || pokemon.removeVolatile('bounce')) { - applies = true; - this.queue.cancelMove(pokemon); - pokemon.removeVolatile('twoturnmove'); - } - if (pokemon.volatiles['magnetrise']) { - applies = true; - delete pokemon.volatiles['magnetrise']; - } - if (pokemon.volatiles['telekinesis']) { - applies = true; - delete pokemon.volatiles['telekinesis']; - } - if (!applies) return false; - this.add('-start', pokemon, 'Smack Down'); - }, - onRestart(pokemon) { - if (pokemon.removeVolatile('fly') || pokemon.removeVolatile('bounce')) { - this.queue.cancelMove(pokemon); - pokemon.removeVolatile('twoturnmove'); - this.add('-start', pokemon, 'Smack Down'); - } - }, - // groundedness implemented in battle.engine.js:BattlePokemon#isGrounded }, }, }; diff --git a/data/mods/gen9legendsou/pokedex.ts b/data/mods/gen9legendsou/pokedex.ts index 0efaf6127f..a61c115910 100644 --- a/data/mods/gen9legendsou/pokedex.ts +++ b/data/mods/gen9legendsou/pokedex.ts @@ -5,7 +5,15 @@ export const Pokedex: import('../../../sim/dex-species').ModdedSpeciesDataTable }, victreebelmega: { inherit: true, - abilities: { 0: "Corrosion" }, + abilities: { 0: "Toxic Debris" }, + }, + raichumegax: { + inherit: true, + abilities: { 0: "Levitate" }, + }, + raichumegay: { + inherit: true, + abilities: { 0: "Transistor" }, }, starmiemega: { inherit: true, @@ -28,6 +36,14 @@ export const Pokedex: import('../../../sim/dex-species').ModdedSpeciesDataTable inherit: true, abilities: { 0: "Fluffy" }, }, + absolmegaz: { + inherit: true, + abilities: { 0: "Technician" }, + }, + chimechomega: { + inherit: true, + abilities: { 0: "Levitate" }, + }, skarmorymega: { inherit: true, abilities: { 0: "Tough Claws" }, @@ -40,6 +56,10 @@ export const Pokedex: import('../../../sim/dex-species').ModdedSpeciesDataTable inherit: true, baseStats: { hp: 60, atk: 100, def: 85, spa: 80, spd: 85, spe: 100 }, }, + staraptormega: { + inherit: true, + abilities: { 0: "Tough Claws" }, + }, gallademega: { inherit: true, abilities: { 0: "Sharpness" }, @@ -48,6 +68,22 @@ export const Pokedex: import('../../../sim/dex-species').ModdedSpeciesDataTable inherit: true, abilities: { 0: "Snow Warning" }, }, + garchompmegaz: { + inherit: true, + abilities: { 0: "Neuroforce" }, + }, + lucariomegaz: { + inherit: true, + abilities: { 0: "Mind's Eye" }, + }, + heatranmega: { + inherit: true, + abilities: { 0: "Earth Eater" }, + }, + darkraimega: { + inherit: true, + abilities: { 0: "Dark Aura" }, + }, emboarmega: { inherit: true, abilities: { 0: "Supreme Overlord" }, @@ -56,6 +92,10 @@ export const Pokedex: import('../../../sim/dex-species').ModdedSpeciesDataTable inherit: true, abilities: { 0: "Mold Breaker" }, }, + golurkmega: { + inherit: true, + abilities: { 0: "Adaptability" }, + }, audinomega: { inherit: true, abilities: { 0: "Regenerator" }, @@ -70,7 +110,7 @@ export const Pokedex: import('../../../sim/dex-species').ModdedSpeciesDataTable }, eelektrossmega: { inherit: true, - abilities: { 0: "Ion Battery" }, + abilities: { 0: "Hadron Engine" }, }, chandeluremega: { inherit: true, @@ -78,7 +118,7 @@ export const Pokedex: import('../../../sim/dex-species').ModdedSpeciesDataTable }, chesnaughtmega: { inherit: true, - abilities: { 0: "Protective Thorns" }, + abilities: { 0: "Bulletproof" }, }, delphoxmega: { inherit: true, @@ -88,6 +128,14 @@ export const Pokedex: import('../../../sim/dex-species').ModdedSpeciesDataTable inherit: true, abilities: { 0: "Protean" }, }, + meowsticmega: { + inherit: true, + abilities: { 0: "Psychic Surge" }, + }, + meowsticfmega: { + inherit: true, + abilities: { 0: "Psychic Surge" }, + }, pyroarmega: { inherit: true, abilities: { 0: "Drought" }, @@ -98,11 +146,11 @@ export const Pokedex: import('../../../sim/dex-species').ModdedSpeciesDataTable }, floettemega: { inherit: true, - abilities: { 0: "Ange" }, + abilities: { 0: "Regenerator" }, }, malamarmega: { inherit: true, - abilities: { 0: "Contrarian" }, + abilities: { 0: "Contrary" }, }, barbaraclemega: { inherit: true, @@ -110,18 +158,62 @@ export const Pokedex: import('../../../sim/dex-species').ModdedSpeciesDataTable }, hawluchamega: { inherit: true, - abilities: { 0: "Luchador's Pride" }, + abilities: { 0: "Stamina" }, }, zygardemega: { inherit: true, abilities: { 0: "Aura Break" }, }, + crabominablemega: { + inherit: true, + abilities: { 0: "Ice Scales" }, + }, + golisopodmega: { + inherit: true, + abilities: { 0: "Regenerator" }, + }, drampamega: { inherit: true, abilities: { 0: "Drizzle" }, }, + magearnamega: { + inherit: true, + abilities: { 0: "Soul-Heart" }, + }, + magearnaoriginalmega: { + inherit: true, + abilities: { 0: "Soul-Heart" }, + }, + zeraoramega: { + inherit: true, + abilities: { 0: "Iron Fist" }, + }, falinksmega: { inherit: true, - abilities: { 0: "Brass Bond" }, + abilities: { 0: "Dauntless Shield" }, + }, + scovillainmega: { + inherit: true, + abilities: { 0: "Contrary" }, + }, + glimmoramega: { + inherit: true, + abilities: { 0: "Toxic Chain" }, + }, + tatsugiricurlymega: { + inherit: true, + abilities: { 0: "Drizzle" }, + }, + tatsugiridroopymega: { + inherit: true, + abilities: { 0: "Drizzle" }, + }, + tatsugiristretchymega: { + inherit: true, + abilities: { 0: "Drizzle" }, + }, + baxcaliburmega: { + inherit: true, + abilities: { 0: "Thermal Exchange" }, }, }; diff --git a/data/mods/gen9legendsou/scripts.ts b/data/mods/gen9legendsou/scripts.ts index 71a1287428..e22640c99d 100644 --- a/data/mods/gen9legendsou/scripts.ts +++ b/data/mods/gen9legendsou/scripts.ts @@ -9,7 +9,7 @@ export const Scripts: ModdedBattleScriptsData = { 'powerlens', 'powerweight', 'quickclaw', 'rockyhelmet', 'scopelens', 'sharpbeak', 'shellbell', 'silkscarf', 'silverpowder', 'softsand', 'spelltag', 'twistedspoon', 'weaknesspolicy', 'whiteherb', 'wiseglasses', 'bottlecap', 'goldbottlecap', 'dawnstone', 'duskstone', 'firestone', 'galaricacuff', 'galaricawreath', 'icestone', 'leafstone', 'moonstone', 'sachet', 'shinystone', - 'sunstone', 'thunderstone', 'waterstone', 'whippeddream', 'bignugget', + 'sunstone', 'thunderstone', 'waterstone', 'whippeddream', 'bignugget', 'redorb', 'blueorb', ]; const legalBerries = [ 'aspearberry', 'babiriberry', 'chartiberry', 'cheriberry', 'chestoberry', 'chilanberry', 'chopleberry', 'cobaberry', 'colburberry', @@ -23,7 +23,6 @@ export const Scripts: ModdedBattleScriptsData = { for (const i in this.data.Items) { if (this.data.Items[i].isNonstandard === 'CAP' || this.data.Items[i].isNonstandard === 'Custom') continue; if ([...legalItems, ...votedLegalitems, ...legalBerries].includes(i) || this.data.Items[i].megaStone) { - if (['blazikenite', 'swampertite', 'sceptilite'].includes(i)) continue; this.modData('Items', i).isNonstandard = null; } else { this.modData('Items', i).isNonstandard = 'Past'; @@ -34,21 +33,6 @@ export const Scripts: ModdedBattleScriptsData = { this.modData('Moves', i).isNonstandard = null; } }, - pokemon: { - isGrounded(negateImmunity = false) { - if ('gravity' in this.battle.field.pseudoWeather) return true; - if ('ingrain' in this.volatiles && this.battle.gen >= 4) return true; - if ('smackdown' in this.volatiles) return true; - const item = (this.ignoringItem() ? '' : this.item); - if (item === 'ironball') return true; - // If a Fire/Flying type uses Burn Up and Roost, it becomes ???/Flying-type, but it's still grounded. - if (!negateImmunity && this.hasType('Flying') && !(this.hasType('???') && 'roost' in this.volatiles)) return false; - if (this.hasAbility(['levitate', 'ionbattery']) && !this.battle.suppressingAbility(this)) return null; - if ('magnetrise' in this.volatiles) return false; - if ('telekinesis' in this.volatiles) return false; - return item !== 'airballoon'; - }, - }, actions: { canMegaEvo(pokemon) { const species = pokemon.baseSpecies; @@ -61,8 +45,21 @@ export const Scripts: ModdedBattleScriptsData = { pokemon.baseMoves.includes(this.battle.toID(altForme.requiredMove)) && !item.zMove) { return altForme.name; } - if (item.megaEvolves === species.name) { - return item.megaStone; + if (Array.isArray(item.megaEvolves)) { + if (!Array.isArray(item.megaStone)) { + throw new Error(`${item.name}#megaEvolves and ${item.name}#megaStone type mismatch`); + } + if (item.megaEvolves.length !== item.megaStone.length) { + throw new Error(`${item.name}#megaEvolves and ${item.name}#megaStone length mismatch`); + } + const index = item.megaEvolves.indexOf(species.name); + if (index < 0) return null; + return item.megaStone[index]; + } else { + if (item.megaEvolves === species.name) { + if (Array.isArray(item.megaStone)) throw new Error(`${item.name}#megaEvolves and ${item.name}#megaStone type mismatch`); + return item.megaStone; + } } return null; }, @@ -101,123 +98,5 @@ export const Scripts: ModdedBattleScriptsData = { this.battle.runEvent('AfterMega', pokemon); return true; }, - modifyDamage(baseDamage, pokemon, target, move, suppressMessages = false) { - const tr = this.battle.trunc; - if (!move.type) move.type = '???'; - const type = move.type; - - baseDamage += 2; - - if (move.spreadHit) { - // multi-target modifier (doubles only) - const spreadModifier = this.battle.gameType === 'freeforall' ? 0.5 : 0.75; - this.battle.debug(`Spread modifier: ${spreadModifier}`); - baseDamage = this.battle.modify(baseDamage, spreadModifier); - } else if (move.multihitType === 'parentalbond' && move.hit > 1) { - // Parental Bond modifier - const bondModifier = this.battle.gen > 6 ? 0.25 : 0.5; - this.battle.debug(`Parental Bond modifier: ${bondModifier}`); - baseDamage = this.battle.modify(baseDamage, bondModifier); - } else if (move.multihitType === 'brassbond' as 'parentalbond' && move.hit > 1) { - // Brass Bond modifier - const bondModifier = 0.15; - this.battle.debug(`Brass Bond modifier: ${bondModifier}`); - baseDamage = this.battle.modify(baseDamage, bondModifier); - } - - // weather modifier - baseDamage = this.battle.runEvent('WeatherModifyDamage', pokemon, target, move, baseDamage); - - // crit - not a modifier - const isCrit = target.getMoveHitData(move).crit; - if (isCrit) { - baseDamage = tr(baseDamage * (move.critModifier || (this.battle.gen >= 6 ? 1.5 : 2))); - } - - // random factor - also not a modifier - baseDamage = this.battle.randomizer(baseDamage); - - // STAB - // The "???" type never gets STAB - // Not even if you Roost in Gen 4 and somehow manage to use - // Struggle in the same turn. - // (On second thought, it might be easier to get a MissingNo.) - if (type !== '???') { - let stab: number | [number, number] = 1; - - const isSTAB = move.forceSTAB || pokemon.hasType(type) || pokemon.getTypes(false, true).includes(type); - if (isSTAB) { - stab = 1.5; - } - - // The Stellar tera type makes this incredibly confusing - // If the move's type does not match one of the user's base types, - // the Stellar tera type applies a one-time 1.2x damage boost for that type. - // - // If the move's type does match one of the user's base types, - // then the Stellar tera type applies a one-time 2x STAB boost for that type, - // and then goes back to using the regular 1.5x STAB boost for those types. - if (pokemon.terastallized === 'Stellar') { - if (!pokemon.stellarBoostedTypes.includes(type) || move.stellarBoosted) { - stab = isSTAB ? 2 : [4915, 4096]; - move.stellarBoosted = true; - if (pokemon.species.name !== 'Terapagos-Stellar') { - pokemon.stellarBoostedTypes.push(type); - } - } - } else { - if (pokemon.terastallized === type && pokemon.getTypes(false, true).includes(type)) { - stab = 2; - } - stab = this.battle.runEvent('ModifySTAB', pokemon, target, move, stab); - } - - baseDamage = this.battle.modify(baseDamage, stab); - } - - // types - let typeMod = target.runEffectiveness(move); - typeMod = this.battle.clampIntRange(typeMod, -6, 6); - target.getMoveHitData(move).typeMod = typeMod; - if (typeMod > 0) { - if (!suppressMessages) this.battle.add('-supereffective', target); - - for (let i = 0; i < typeMod; i++) { - baseDamage *= 2; - } - } - if (typeMod < 0) { - if (!suppressMessages) this.battle.add('-resisted', target); - - for (let i = 0; i > typeMod; i--) { - baseDamage = tr(baseDamage / 2); - } - } - - if (isCrit && !suppressMessages) this.battle.add('-crit', target); - - if (pokemon.status === 'brn' && move.category === 'Physical' && !pokemon.hasAbility('guts')) { - if (this.battle.gen < 6 || move.id !== 'facade') { - baseDamage = this.battle.modify(baseDamage, 0.5); - } - } - - // Generation 5, but nothing later, sets damage to 1 before the final damage modifiers - if (this.battle.gen === 5 && !baseDamage) baseDamage = 1; - - // Final modifier. Modifiers that modify damage after min damage check, such as Life Orb. - baseDamage = this.battle.runEvent('ModifyDamage', pokemon, target, move, baseDamage); - - if (move.isZOrMaxPowered && target.getMoveHitData(move).zBrokeProtect) { - baseDamage = this.battle.modify(baseDamage, 0.25); - this.battle.add('-zbroken', target); - } - - // Generation 6-7 moves the check for minimum 1 damage after the final modifier... - if (this.battle.gen !== 5 && !baseDamage) return 1; - - // ...but 16-bit truncation happens even later, and can truncate to 0 - return tr(baseDamage, 16); - }, }, }; diff --git a/data/mods/gen9ssb/scripts.ts b/data/mods/gen9ssb/scripts.ts index d30331eeb1..f1b3cbba00 100644 --- a/data/mods/gen9ssb/scripts.ts +++ b/data/mods/gen9ssb/scripts.ts @@ -964,8 +964,23 @@ export const Scripts: ModdedBattleScriptsData = { return altForme.name; } // a hacked-in Megazard X can mega evolve into Megazard Y, but not into Megazard X - if (item.megaEvolves === species.baseSpecies && item.megaStone !== species.name) { - return item.megaStone; + if (Array.isArray(item.megaEvolves)) { + if (!Array.isArray(item.megaStone)) { + throw new Error(`${item.name}#megaEvolves and ${item.name}#megaStone type mismatch`); + } + if (item.megaEvolves.length !== item.megaStone.length) { + throw new Error(`${item.name}#megaEvolves and ${item.name}#megaStone length mismatch`); + } + // FIXME: Change to species.name when champions comes + const index = item.megaEvolves.indexOf(species.baseSpecies); + if (index < 0) return null; + return item.megaStone[index]; + // FIXME: Change to species.name when champions comes + } else { + if (item.megaEvolves === species.baseSpecies) { + if (Array.isArray(item.megaStone)) throw new Error(`${item.name}#megaEvolves and ${item.name}#megaStone type mismatch`); + return item.megaStone; + } } return null; }, diff --git a/data/mods/mixandmega/scripts.ts b/data/mods/mixandmega/scripts.ts index 59cd8a8ec0..33a6a9d994 100644 --- a/data/mods/mixandmega/scripts.ts +++ b/data/mods/mixandmega/scripts.ts @@ -6,9 +6,9 @@ export const Scripts: ModdedBattleScriptsData = { if (!item.megaStone && !item.onDrive && !(item.onPlate && !item.zMove) && !item.onMemory) continue; this.modData('Items', i).onTakeItem = false; if (item.isNonstandard === "Past") this.modData('Items', i).isNonstandard = null; - if (item.megaStone) { + /* if (item.megaStone) { this.modData('FormatsData', this.toID(item.megaStone)).isNonstandard = null; - } + } */ } }, start() { @@ -386,8 +386,8 @@ export const Scripts: ModdedBattleScriptsData = { const item = pokemon.getItem(); if (item.megaStone) { - if (item.megaStone === pokemon.baseSpecies.name) return null; - return item.megaStone; + if (item.megaStone.includes(pokemon.baseSpecies.name)) return null; + return Array.isArray(item.megaStone) ? item.megaStone[0] : item.megaStone; } else { return null; } diff --git a/data/pokedex.ts b/data/pokedex.ts index f0adebc430..149c2e8186 100644 --- a/data/pokedex.ts +++ b/data/pokedex.ts @@ -803,8 +803,8 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { evoType: "useItem", evoItem: "Thunder Stone", eggGroups: ["Field", "Fairy"], - otherFormes: ["Raichu-Alola"], - formeOrder: ["Raichu", "Raichu-Alola"], + otherFormes: ["Raichu-Alola", "Raichu-Mega-X", "Raichu-Mega-Y"], + formeOrder: ["Raichu", "Raichu-Alola", "Raichu-Mega-X", "Raichu-Mega-Y"], }, raichualola: { num: 26, @@ -823,6 +823,36 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { evoRegion: "Alola", eggGroups: ["Field", "Fairy"], }, + raichumegax: { + num: 26, + name: "Raichu-Mega-X", + baseSpecies: "Raichu", + forme: "Mega-X", + types: ["Electric"], + baseStats: { hp: 60, atk: 135, def: 95, spa: 90, spd: 95, spe: 110 }, + abilities: { 0: "Surge Surfer" }, + heightm: 1.2, + weightkg: 38, + color: "Yellow", + eggGroups: ["Field", "Fairy"], + requiredItem: "Raichunite X", + gen: 9, + }, + raichumegay: { + num: 26, + name: "Raichu-Mega-Y", + baseSpecies: "Raichu", + forme: "Mega-Y", + types: ["Electric"], + baseStats: { hp: 60, atk: 100, def: 55, spa: 160, spd: 80, spe: 130 }, + abilities: { 0: "Surge Surfer" }, + heightm: 1, + weightkg: 26, + color: "Yellow", + eggGroups: ["Field", "Fairy"], + requiredItem: "Raichunite Y", + gen: 9, + }, sandshrew: { num: 27, name: "Sandshrew", @@ -6626,6 +6656,23 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { evoCondition: "at night", eggGroups: ["Amorphous"], canHatch: true, + otherFormes: ["Chimecho-Mega"], + formeOrder: ["Chimecho", "Chimecho-Mega"], + }, + chimechomega: { + num: 358, + name: "Chimecho-Mega", + baseSpecies: "Chimecho", + forme: "Mega", + types: ["Psychic", "Steel"], + baseStats: { hp: 75, atk: 50, def: 110, spa: 135, spd: 120, spe: 65 }, + abilities: { 0: "Levitate" }, + heightm: 1.2, + weightkg: 8, + color: "Blue", + eggGroups: ["Amorphous"], + requiredItem: "Chimechite", + gen: 9, }, absol: { num: 359, @@ -6637,8 +6684,8 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { weightkg: 47, color: "White", eggGroups: ["Field"], - otherFormes: ["Absol-Mega"], - formeOrder: ["Absol", "Absol-Mega"], + otherFormes: ["Absol-Mega", "Absol-Mega-Z"], + formeOrder: ["Absol", "Absol-Mega", "Absol-Mega-Z"], }, absolmega: { num: 359, @@ -6654,6 +6701,21 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { eggGroups: ["Field"], requiredItem: "Absolite", }, + absolmegaz: { + num: 359, + name: "Absol-Mega-Z", + baseSpecies: "Absol", + forme: "Mega-Z", + types: ["Dark", "Ghost"], + baseStats: { hp: 65, atk: 154, def: 60, spa: 75, spd: 60, spe: 151 }, + abilities: { 0: "Magic Bounce" }, + heightm: 1.2, + weightkg: 49, + color: "Black", + eggGroups: ["Field"], + requiredItem: "Absolite Z", + gen: 9, + }, wynaut: { num: 360, name: "Wynaut", @@ -7352,6 +7414,23 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { prevo: "Staravia", evoLevel: 34, eggGroups: ["Flying"], + otherFormes: ["Staraptor-Mega"], + formeOrder: ["Staraptor", "Staraptor-Mega"], + }, + staraptormega: { + num: 398, + name: "Staraptor-Mega", + baseSpecies: "Staraptor", + forme: "Mega", + types: ["Fighting", "Flying"], + baseStats: { hp: 85, atk: 140, def: 100, spa: 60, spd: 90, spe: 110 }, + abilities: { 0: "Intimidate", H: "Reckless" }, + heightm: 1.9, + weightkg: 50, + color: "Gray", + eggGroups: ["Flying"], + requiredItem: "Staraptite", + gen: 9, }, bidoof: { num: 399, @@ -8066,8 +8145,8 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { prevo: "Gabite", evoLevel: 48, eggGroups: ["Monster", "Dragon"], - otherFormes: ["Garchomp-Mega"], - formeOrder: ["Garchomp", "Garchomp-Mega"], + otherFormes: ["Garchomp-Mega", "Garchomp-Mega-Z"], + formeOrder: ["Garchomp", "Garchomp-Mega", "Garchomp-Mega-Z"], }, garchompmega: { num: 445, @@ -8083,6 +8162,21 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { eggGroups: ["Monster", "Dragon"], requiredItem: "Garchompite", }, + garchompmegaz: { + num: 445, + name: "Garchomp-Mega-Z", + baseSpecies: "Garchomp", + forme: "Mega-Z", + types: ["Dragon"], + baseStats: { hp: 108, atk: 130, def: 85, spa: 141, spd: 85, spe: 151 }, + abilities: { 0: "Sand Force" }, + heightm: 1.9, + weightkg: 99, + color: "Blue", + eggGroups: ["Monster", "Dragon"], + requiredItem: "Garchompite Z", + gen: 9, + }, munchlax: { num: 446, name: "Munchlax", @@ -8125,8 +8219,8 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { evoType: "levelFriendship", evoCondition: "during the day", eggGroups: ["Field", "Human-Like"], - otherFormes: ["Lucario-Mega"], - formeOrder: ["Lucario", "Lucario-Mega"], + otherFormes: ["Lucario-Mega", "Lucario-Mega-Z"], + formeOrder: ["Lucario", "Lucario-Mega", "Lucario-Mega-Z"], }, lucariomega: { num: 448, @@ -8143,6 +8237,22 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { eggGroups: ["Field", "Human-Like"], requiredItem: "Lucarionite", }, + lucariomegaz: { + num: 448, + name: "Lucario-Mega-Z", + baseSpecies: "Lucario", + forme: "Mega-Z", + types: ["Fighting", "Steel"], + genderRatio: { M: 0.875, F: 0.125 }, + baseStats: { hp: 70, atk: 100, def: 70, spa: 164, spd: 70, spe: 151 }, + abilities: { 0: "Adaptability" }, + heightm: 1.3, + weightkg: 49.4, + color: "Gray", + eggGroups: ["Field", "Human-Like"], + requiredItem: "Lucarionite Z", + gen: 9, + }, hippopotas: { num: 449, name: "Hippopotas", @@ -8809,6 +8919,24 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { color: "Brown", tags: ["Sub-Legendary"], eggGroups: ["Undiscovered"], + otherFormes: ["Heatran-Mega"], + formeOrder: ["Heatran", "Heatran-Mega"], + }, + heatranmega: { + num: 485, + name: "Heatran-Mega", + baseSpecies: "Heatran", + forme: "Mega", + types: ["Fire", "Steel"], + baseStats: { hp: 91, atk: 120, def: 106, spa: 175, spd: 141, spe: 67 }, + abilities: { 0: "Flash Fire", H: "Flame Body" }, + heightm: 2.8, + weightkg: 570, + color: "Brown", + tags: ["Sub-Legendary"], + eggGroups: ["Undiscovered"], + requiredItem: "Heatranite", + gen: 9, }, regigigas: { num: 486, @@ -8906,6 +9034,25 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { color: "Black", tags: ["Mythical"], eggGroups: ["Undiscovered"], + otherFormes: ["Darkrai-Mega"], + formeOrder: ["Darkrai", "Darkrai-Mega"], + }, + darkraimega: { + num: 491, + name: "Darkrai-Mega", + baseSpecies: "Darkrai", + forme: "Mega", + types: ["Dark"], + gender: "N", + baseStats: { hp: 70, atk: 120, def: 130, spa: 165, spd: 130, spe: 85 }, + abilities: { 0: "Bad Dreams" }, + heightm: 3, + weightkg: 240, + color: "Black", + tags: ["Mythical"], + eggGroups: ["Undiscovered"], + requiredItem: "Darkranite", + gen: 9, }, shaymin: { num: 492, @@ -11275,6 +11422,24 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { prevo: "Golett", evoLevel: 43, eggGroups: ["Mineral"], + otherFormes: ["Golurk-Mega"], + formeOrder: ["Golurk", "Golurk-Mega"], + }, + golurkmega: { + num: 623, + name: "Golurk-Mega", + baseSpecies: "Golurk", + forme: "Mega", + types: ["Ground", "Ghost"], + gender: "N", + baseStats: { hp: 89, atk: 159, def: 105, spa: 70, spd: 105, spe: 55 }, + abilities: { 0: "Iron Fist", 1: "Klutz", H: "No Guard" }, + heightm: 4, + weightkg: 330, + color: "Green", + eggGroups: ["Mineral"], + requiredItem: "Golurkite", + gen: 9, }, pawniard: { num: 624, @@ -12537,8 +12702,8 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { prevo: "Espurr", evoLevel: 25, eggGroups: ["Field"], - otherFormes: ["Meowstic-F"], - formeOrder: ["Meowstic", "Meowstic-F"], + otherFormes: ["Meowstic-F", "Meowstic-Mega", "Meowstic-F-Mega"], + formeOrder: ["Meowstic", "Meowstic-F", "Meowstic-Mega", "Meowstic-F-Mega"], }, meowsticf: { num: 678, @@ -12556,6 +12721,39 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { evoLevel: 25, eggGroups: ["Field"], }, + meowsticmega: { + num: 678, + name: "Meowstic-Mega", + baseSpecies: "Meowstic", + forme: "Mega", + types: ["Psychic"], + gender: "M", + baseStats: { hp: 74, atk: 48, def: 76, spa: 143, spd: 101, spe: 124 }, + abilities: { 0: "Keen Eye", 1: "Infiltrator", H: "Competitive" }, + heightm: 0.8, + weightkg: 10.1, + color: "Blue", + eggGroups: ["Field"], + requiredItem: "Meowsticite", + gen: 9, + }, + meowsticfmega: { + num: 678, + name: "Meowstic-F-Mega", + baseSpecies: "Meowstic", + forme: "F-Mega", + types: ["Psychic"], + gender: "F", + baseStats: { hp: 74, atk: 48, def: 76, spa: 143, spd: 101, spe: 124 }, + abilities: { 0: "Keen Eye", 1: "Infiltrator", H: "Competitive" }, + heightm: 0.8, + weightkg: 10.1, + color: "White", + eggGroups: ["Field"], + requiredItem: "Meowsticite", + battleOnly: "Meowstic-F", + gen: 9, + }, honedge: { num: 679, name: "Honedge", @@ -13751,6 +13949,23 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { evoType: "useItem", evoItem: "Ice Stone", eggGroups: ["Water 3"], + otherFormes: ["Crabominable-Mega"], + formeOrder: ["Crabominable", "Crabominable-Mega"], + }, + crabominablemega: { + num: 740, + name: "Crabominable-Mega", + baseSpecies: "Crabominable", + forme: "Mega", + types: ["Fighting", "Ice"], + baseStats: { hp: 97, atk: 157, def: 122, spa: 62, spd: 107, spe: 33 }, + abilities: { 0: "Hyper Cutter", 1: "Iron Fist", H: "Anger Point" }, + heightm: 2.6, + weightkg: 252.8, + color: "White", + eggGroups: ["Water 3"], + requiredItem: "Crabominite", + gen: 9, }, oricorio: { num: 741, @@ -14284,6 +14499,23 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { prevo: "Wimpod", evoLevel: 30, eggGroups: ["Bug", "Water 3"], + otherFormes: ["Golisopod-Mega"], + formeOrder: ["Golisopod", "Golisopod-Mega"], + }, + golisopodmega: { + num: 768, + name: "Golisopod-Mega", + baseSpecies: "Golisopod", + forme: "Mega", + types: ["Bug", "Steel"], + baseStats: { hp: 75, atk: 150, def: 175, spa: 70, spd: 120, spe: 40 }, + abilities: { 0: "Emergency Exit" }, + heightm: 2.3, + weightkg: 148, + color: "Gray", + eggGroups: ["Bug", "Water 3"], + requiredItem: "Golisopite", + gen: 9, }, sandygast: { num: 769, @@ -15192,8 +15424,8 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { color: "Gray", eggGroups: ["Undiscovered"], tags: ["Mythical"], - otherFormes: ["Magearna-Original"], - formeOrder: ["Magearna", "Magearna-Original"], + otherFormes: ["Magearna-Original", "Magearna-Mega", "Magearna-Original-Mega"], + formeOrder: ["Magearna", "Magearna-Original", "Magearna-Mega", "Magearna-Original-Mega"], }, magearnaoriginal: { num: 801, @@ -15209,6 +15441,39 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { color: "Red", eggGroups: ["Undiscovered"], }, + magearnamega: { + num: 801, + name: "Magearna-Mega", + baseSpecies: "Magearna", + forme: "Mega", + types: ["Steel", "Fairy"], + gender: "N", + baseStats: { hp: 80, atk: 125, def: 115, spa: 170, spd: 115, spe: 95 }, + abilities: { 0: "Soul-Heart" }, + heightm: 1.3, + weightkg: 248.1, + color: "Gray", + eggGroups: ["Undiscovered"], + requiredItem: "Magearnite", + gen: 9, + }, + magearnaoriginalmega: { + num: 801, + name: "Magearna-Original-Mega", + baseSpecies: "Magearna", + forme: "Original-Mega", + types: ["Steel", "Fairy"], + gender: "N", + baseStats: { hp: 80, atk: 125, def: 115, spa: 170, spd: 115, spe: 95 }, + abilities: { 0: "Soul-Heart" }, + heightm: 1.3, + weightkg: 248.1, + color: "Red", + eggGroups: ["Undiscovered"], + requiredItem: "Magearnite", + battleOnly: "Magearna-Original", + gen: 9, + }, marshadow: { num: 802, name: "Marshadow", @@ -15290,6 +15555,25 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { color: "Yellow", tags: ["Mythical"], eggGroups: ["Undiscovered"], + otherFormes: ["Zeraora-Mega"], + formeOrder: ["Zeraora", "Zeraora-Mega"], + }, + zeraoramega: { + num: 807, + name: "Zeraora-Mega", + baseSpecies: "Zeraora", + forme: "Mega", + types: ["Electric"], + gender: "N", + baseStats: { hp: 88, atk: 157, def: 75, spa: 147, spd: 80, spe: 153 }, + abilities: { 0: "Volt Absorb" }, + heightm: 1.5, + weightkg: 44.5, + color: "Yellow", + tags: ["Mythical"], + eggGroups: ["Undiscovered"], + requiredItem: "Zeraorite", + gen: 9, }, meltan: { num: 808, @@ -17986,6 +18270,22 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { evoType: "useItem", evoItem: "Fire Stone", eggGroups: ["Grass"], + otherFormes: ["Scovillain-Mega"], + formeOrder: ["Scovillain", "Scovillain-Mega"], + }, + scovillainmega: { + num: 952, + name: "Scovillain-Mega", + baseSpecies: "Scovillain", + forme: "Mega", + types: ["Grass", "Fire"], + baseStats: { hp: 65, atk: 138, def: 85, spa: 138, spd: 85, spe: 75 }, + abilities: { 0: "Chlorophyll", 1: "Insomnia", H: "Moody" }, + heightm: 1.2, + weightkg: 22, + color: "Green", + eggGroups: ["Grass"], + requiredItem: "Scovillainite", }, rellor: { num: 953, @@ -18230,6 +18530,22 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { prevo: "Glimmet", evoLevel: 35, eggGroups: ["Mineral"], + otherFormes: ["Glimmora-Mega"], + formeOrder: ["Glimmora", "Glimmora-Mega"], + }, + glimmoramega: { + num: 970, + name: "Glimmora-Mega", + baseSpecies: "Glimmora", + forme: "Mega", + types: ["Rock", "Poison"], + baseStats: { hp: 83, atk: 90, def: 105, spa: 150, spd: 96, spe: 101 }, + abilities: { 0: "Toxic Debris", H: "Corrosion" }, + heightm: 2.8, + weightkg: 77, + color: "Blue", + eggGroups: ["Mineral"], + requiredItem: "Glimmoranite", }, greavard: { num: 971, @@ -18326,23 +18642,80 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { heightm: 0.3, weightkg: 8, color: "Red", - cosmeticFormes: ["Tatsugiri-Droopy", "Tatsugiri-Stretchy"], - formeOrder: ["Tatsugiri", "Tatsugiri-Droopy", "Tatsugiri-Stretchy"], eggGroups: ["Water 2"], + otherFormes: ["Tatsugiri-Droopy", "Tatsugiri-Stretchy", "Tatsugiri-Curly-Mega", "Tatsugiri-Droopy-Mega", "Tatsugiri-Stretchy-Mega"], + formeOrder: ["Tatsugiri", "Tatsugiri-Droopy", "Tatsugiri-Stretchy", "Tatsugiri-Curly-Mega", "Tatsugiri-Droopy-Mega", "Tatsugiri-Stretchy-Mega"], }, tatsugiridroopy: { - isCosmeticForme: true, + num: 978, name: "Tatsugiri-Droopy", baseSpecies: "Tatsugiri", forme: "Droopy", + types: ["Dragon", "Water"], + baseStats: { hp: 68, atk: 50, def: 60, spa: 120, spd: 95, spe: 82 }, + abilities: { 0: "Commander", H: "Storm Drain" }, + heightm: 0.3, + weightkg: 8, color: "Pink", + eggGroups: ["Water 2"], }, tatsugiristretchy: { - isCosmeticForme: true, + num: 978, name: "Tatsugiri-Stretchy", baseSpecies: "Tatsugiri", forme: "Stretchy", + types: ["Dragon", "Water"], + baseStats: { hp: 68, atk: 50, def: 60, spa: 120, spd: 95, spe: 82 }, + abilities: { 0: "Commander", H: "Storm Drain" }, + heightm: 0.3, + weightkg: 8, color: "Yellow", + eggGroups: ["Water 2"], + }, + tatsugiricurlymega: { + num: 978, + name: "Tatsugiri-Curly-Mega", + baseSpecies: "Tatsugiri", + forme: "Curly-Mega", + types: ["Dragon", "Water"], + baseStats: { hp: 68, atk: 65, def: 90, spa: 135, spd: 125, spe: 92 }, + abilities: { 0: "Commander", H: "Storm Drain" }, + heightm: 0.3, + weightkg: 8, + color: "Red", + eggGroups: ["Water 2"], + requiredItem: "Tatsugirinite", + battleOnly: "Tatsugiri", + }, + tatsugiridroopymega: { + num: 978, + name: "Tatsugiri-Droopy-Mega", + baseSpecies: "Tatsugiri", + forme: "Droopy-Mega", + types: ["Dragon", "Water"], + baseStats: { hp: 68, atk: 65, def: 90, spa: 135, spd: 125, spe: 92 }, + abilities: { 0: "Commander", H: "Storm Drain" }, + heightm: 0.3, + weightkg: 8, + color: "Pink", + eggGroups: ["Water 2"], + requiredItem: "Tatsugirinite", + battleOnly: "Tatsugiri-Droopy", + }, + tatsugiristretchymega: { + num: 978, + name: "Tatsugiri-Stretchy-Mega", + baseSpecies: "Tatsugiri", + forme: "Stretchy-Mega", + types: ["Dragon", "Water"], + baseStats: { hp: 68, atk: 65, def: 90, spa: 135, spd: 125, spe: 92 }, + abilities: { 0: "Commander", H: "Storm Drain" }, + heightm: 0.3, + weightkg: 8, + color: "Yellow", + eggGroups: ["Water 2"], + requiredItem: "Tatsugirinite", + battleOnly: "Tatsugiri-Stretchy", }, annihilape: { num: 979, @@ -18626,6 +18999,22 @@ export const Pokedex: import('../sim/dex-species').SpeciesDataTable = { prevo: "Arctibax", evoLevel: 54, eggGroups: ["Dragon", "Mineral"], + otherFormes: ["Baxcalibur-Mega"], + formeOrder: ["Baxcalibur", "Baxcalibur-Mega"], + }, + baxcaliburmega: { + num: 998, + name: "Baxcalibur-Mega", + baseSpecies: "Baxcalibur", + forme: "Mega", + types: ["Dragon", "Ice"], + baseStats: { hp: 115, atk: 175, def: 117, spa: 105, spd: 101, spe: 87 }, + abilities: { 0: "Thermal Exchange", H: "Ice Body" }, + heightm: 2.1, + weightkg: 315, + color: "Blue", + eggGroups: ["Dragon", "Mineral"], + requiredItem: "Baxcaliburite", }, gimmighoul: { num: 999, diff --git a/data/random-battles/gen7/teams.ts b/data/random-battles/gen7/teams.ts index cc14fb277a..99ad0e24b1 100644 --- a/data/random-battles/gen7/teams.ts +++ b/data/random-battles/gen7/teams.ts @@ -1607,7 +1607,8 @@ export class RandomGen7Teams extends RandomGen8Teams { if (isMonotype) { // Prevents Mega Evolutions from breaking the type limits if (itemData.megaStone) { - const megaSpecies = this.dex.species.get(itemData.megaStone); + const megaSpecies = this.dex.species.get(Array.isArray(itemData.megaStone) ? + itemData.megaStone[0] : itemData.megaStone); if (types.length > megaSpecies.types.length) types = [species.types[0]]; // Only check the second type because a Mega Evolution should always share the first type with its base forme. if (megaSpecies.types[1] && types[1] && megaSpecies.types[1] !== types[1]) { diff --git a/data/rulesets.ts b/data/rulesets.ts index 908a6ccb49..f051d043f3 100644 --- a/data/rulesets.ts +++ b/data/rulesets.ts @@ -1507,9 +1507,17 @@ export const Rulesets: import('../sim/dex-formats').FormatDataTable = { typeTable = typeTable.filter(type => species.types.includes(type)); } const item = this.dex.items.get(set.item); - if (item.megaStone && species.baseSpecies === item.megaEvolves) { - species = this.dex.species.get(item.megaStone); - typeTable = typeTable.filter(type => species.types.includes(type)); + if (item.megaStone) { + if (Array.isArray(item.megaStone)) { + const index = (item.megaEvolves as string[]).indexOf(species.name); + if (index >= 0) { + species = this.dex.species.get(item.megaStone[index]); + typeTable = typeTable.filter(type => species.types.includes(type)); + } + } else { + species = this.dex.species.get(item.megaStone); + typeTable = typeTable.filter(type => species.types.includes(type)); + } } if (item.id === "ultranecroziumz" && species.baseSpecies === "Necrozma") { species = this.dex.species.get("Necrozma-Ultra"); @@ -1548,9 +1556,17 @@ export const Rulesets: import('../sim/dex-formats').FormatDataTable = { } color = species.color; const item = this.dex.items.get(set.item); - if (item.megaStone && species.baseSpecies === item.megaEvolves) { - species = this.dex.species.get(item.megaStone); - color = species.color; + if (item.megaStone) { + if (Array.isArray(item.megaStone)) { + const index = (item.megaEvolves as string[]).indexOf(species.name); + if (index >= 0) { + species = this.dex.species.get(item.megaStone[index]); + color = species.color; + } + } else { + species = this.dex.species.get(item.megaStone); + color = species.color; + } } if (item.id === "ultranecroziumz" && species.baseSpecies === "Necrozma") { species = this.dex.species.get("Necrozma-Ultra"); @@ -2652,8 +2668,10 @@ export const Rulesets: import('../sim/dex-formats').FormatDataTable = { } if (set.item && this.dex.items.get(set.item).megaStone) { const item = this.dex.items.get(set.item); - if (item.megaEvolves === species.baseSpecies) { - species = this.dex.species.get(item.megaStone); + if (item.megaEvolves?.includes(species.name)) { + species = this.dex.species.get(Array.isArray(item.megaEvolves) ? + (item.megaStone as string[])[item.megaEvolves.indexOf(species.name)] : + item.megaStone as string); } } if (this.ruleTable.isRestrictedSpecies(species) || @@ -2675,7 +2693,11 @@ export const Rulesets: import('../sim/dex-formats').FormatDataTable = { } if (set.item) { const item = this.dex.items.get(set.item); - if (item.megaEvolves === set.species) godSpecies = this.dex.species.get(item.megaStone); + if (item.megaEvolves?.includes(set.species)) { + godSpecies = this.dex.species.get(Array.isArray(item.megaEvolves) ? + (item.megaStone as string[])[item.megaEvolves.indexOf(set.species)] : + item.megaStone as string); + } if (["Zacian", "Zamazenta"].includes(godSpecies.baseSpecies) && item.id.startsWith('rusted')) { godSpecies = this.dex.species.get(set.species + "-Crowned"); } diff --git a/server/chat-plugins/othermetas.ts b/server/chat-plugins/othermetas.ts index 2a495d203c..eb6a01d60f 100644 --- a/server/chat-plugins/othermetas.ts +++ b/server/chat-plugins/othermetas.ts @@ -130,8 +130,8 @@ export const commands: Chat.ChatCommands = { megaSpecies = dex.species.get(forcedForme); baseSpecies = dex.species.get(forcedForme.split('-')[0]); } else { - megaSpecies = dex.species.get(stone.megaStone); - baseSpecies = dex.species.get(stone.megaEvolves); + megaSpecies = dex.species.get(Array.isArray(stone.megaStone) ? stone.megaStone[0] : stone.megaStone); + baseSpecies = dex.species.get(Array.isArray(stone.megaEvolves) ? stone.megaEvolves[0] : stone.megaEvolves); } break; } @@ -278,8 +278,8 @@ export const commands: Chat.ChatCommands = { megaSpecies = dex.species.get(forcedForme); baseSpecies = dex.species.get(forcedForme.split('-')[0]); } else { - megaSpecies = dex.species.get(aStone.megaStone); - baseSpecies = dex.species.get(aStone.megaEvolves); + megaSpecies = dex.species.get(Array.isArray(aStone.megaStone) ? aStone.megaStone[0] : aStone.megaStone); + baseSpecies = dex.species.get(Array.isArray(aStone.megaEvolves) ? aStone.megaEvolves[0] : aStone.megaEvolves); } break; } diff --git a/server/chat-plugins/randombattles/ssb.tsx b/server/chat-plugins/randombattles/ssb.tsx index 825475d868..5f7df25a44 100644 --- a/server/chat-plugins/randombattles/ssb.tsx +++ b/server/chat-plugins/randombattles/ssb.tsx @@ -372,8 +372,9 @@ class SSBSetsHTML extends Chat.JSX.Component<{ target: string }> { - {(!Array.isArray(set.item) && item.megaStone) && - } + {(!Array.isArray(set.item) && item.megaStone) && } {/* keys and Kennedy have an itemless forme change */} {['Rayquaza'].includes(set.species) && } {['Cinderace'].includes(set.species) && } diff --git a/server/chat-plugins/randombattles/winrates.tsx b/server/chat-plugins/randombattles/winrates.tsx index a921222e24..cbba1ce0a4 100644 --- a/server/chat-plugins/randombattles/winrates.tsx +++ b/server/chat-plugins/randombattles/winrates.tsx @@ -134,7 +134,7 @@ export function getSpeciesName(set: PokemonSet, format: Format) { } else if (species === "Groudon" && item.name === "Red Orb") { return "Groudon-Primal"; } else if (item.megaStone) { - return item.megaStone; + return Array.isArray(item.megaStone) ? item.megaStone[0] : item.megaStone; } else if (species === "Rayquaza" && moves.includes('Dragon Ascent') && !item.zMove && megaRayquazaPossible) { return "Rayquaza-Mega"; } else if (species === "Poltchageist-Artisan") { // Babymons from here on out diff --git a/sim/battle-actions.ts b/sim/battle-actions.ts index 3b5405ee40..aae2853f91 100644 --- a/sim/battle-actions.ts +++ b/sim/battle-actions.ts @@ -1873,10 +1873,23 @@ export class BattleActions { } // Temporary hardcode until generation shift if ((species.baseSpecies === "Floette" || species.baseSpecies === "Zygarde") && item.megaEvolves === species.name) { - return item.megaStone; + return item.megaStone as string; } // a hacked-in Megazard X can mega evolve into Megazard Y, but not into Megazard X - if (item.megaEvolves === species.baseSpecies && item.megaStone !== species.name) { + if (Array.isArray(item.megaEvolves)) { + if (!Array.isArray(item.megaStone)) { + throw new Error(`${item.name}#megaEvolves and ${item.name}#megaStone type mismatch`); + } + if (item.megaEvolves.length !== item.megaStone.length) { + throw new Error(`${item.name}#megaEvolves and ${item.name}#megaStone length mismatch`); + } + // FIXME: Change to species.name when champions comes + const index = item.megaEvolves.indexOf(species.baseSpecies); + if (index < 0) return null; + return item.megaStone[index]; + // FIXME: Change to species.name when champions comes + } else if (item.megaEvolves === species.baseSpecies && item.megaStone !== species.name) { + if (Array.isArray(item.megaStone)) throw new Error(`${item.name}#megaEvolves and ${item.name}#megaStone type mismatch`); return item.megaStone; } return null; diff --git a/sim/dex-items.ts b/sim/dex-items.ts index 8b5641572f..ef97fd8f43 100644 --- a/sim/dex-items.ts +++ b/sim/dex-items.ts @@ -47,13 +47,13 @@ export class Item extends BasicEffect implements Readonly { * forme this allows transformation into. * undefined, if not a mega stone. */ - readonly megaStone?: string; + readonly megaStone?: string | string[]; /** * If this is a mega stone: The name (e.g. Charizard) of the * forme this allows transformation from. * undefined, if not a mega stone. */ - readonly megaEvolves?: string; + readonly megaEvolves?: string | string[]; /** * If this is a Z crystal: true if the Z Crystal is generic * (e.g. Firium Z). If species-specific, the name diff --git a/sim/dex-species.ts b/sim/dex-species.ts index 14f3c5f33a..fab61861ca 100644 --- a/sim/dex-species.ts +++ b/sim/dex-species.ts @@ -329,7 +329,7 @@ export class Species extends BasicEffect implements Readonly { // Kill turns for Toxic Orb to KO Tatsugiri for (let i = 0; i < 7; i++) battle.makeChoices(); battle.makeChoices('', 'switch teddiursa'); - assert.cantMove(() => battle.p2.choose('move sleeptalk, switch tatsugiri')); + assert.cantMove(() => battle.p2.choose('move sleeptalk, switch tatsugiridroopy')); battle.makeChoices('auto', 'switch tatsugiridroopy, move orderup 1'); assert.statStage(battle.p2.pokemon[1], 'atk', 3); }); diff --git a/test/sim/data.js b/test/sim/data.js index de12aec5b8..d9f62e41fa 100644 --- a/test/sim/data.js +++ b/test/sim/data.js @@ -113,15 +113,15 @@ describe('Dex data', () => { assert.equal(entry.evoItem, item.exists && item.name, `Misspelled/nonexistent evo item "${entry.evoItem}" of ${entry.name}`); } - const battleOnly = ['Mega', 'Mega-X', 'Mega-Y', 'Primal'].includes(entry.forme) ? entry.baseSpecies : entry.battleOnly; + const battleOnly = ['Mega', 'Mega-X', 'Mega-Y', 'Mega-Z', 'Primal'].includes(entry.forme) ? entry.baseSpecies : entry.battleOnly; if (entry.requiredAbility) { assert(entry.battleOnly, `Forme ${entry.name} with requiredAbility must have battleOnly`); } if (entry.requiredItem) { - assert(battleOnly || entry.changesFrom, `Forme ${entry.name} with requiredAbility must have battleOnly or changesFrom`); + assert(battleOnly || entry.changesFrom, `Forme ${entry.name} with requiredItem must have battleOnly or changesFrom`); } if (entry.requiredMove) { - assert(battleOnly || entry.changesFrom, `Forme ${entry.name} with requiredAbility must have battleOnly or changesFrom`); + assert(battleOnly || entry.changesFrom, `Forme ${entry.name} with requiredMove must have battleOnly or changesFrom`); } } }); @@ -377,12 +377,12 @@ describe('Dex data', () => { // Lycanroc (2) + Minior (1) + Mimikyu (1) + Necrozma (2) + Magearna (1) + Toxtricity (1) + // Antique (2) + Eiscue (1) + Indeedee (1) + Cramorant (2) + Morpeko (1) + Crowned (2) + // Urshifu (1) + Zarude (1) + Calyrex (2) + Oinkologne (1) + Ursaluna (1) + Dudunsparce (1) + - // Palafin (1) + Maushold (1) + Squawkabilly (3) + Gimmighoul (1) + Basculegion (1) + + // Palafin (1) + Maushold (1) + Squawkabilly (3) + Tatsugiri (2) + Gimmighoul (1) + Basculegion (1) + // Masterpiece (2) + Ogerpon (7) + Terapagos (2) formes[9] = 8 + 3 + 4 + 16 + 7 + 4 + 16 + 3 + 5 + 1 + 17 + 2 + 2 + 1 + 1 + 1 + 2 + 1 + 1 + 3 + 1 + 2 + 1 + 1 + 2 + 1 + 1 + 2 + 1 + 1 + 2 + 1 + 2 + 1 + 1 + 1 + 2 + 1 + 1 + - 1 + 1 + 3 + 1 + 1 + 2 + 7 + 2; + 1 + 1 + 3 + 2 + 1 + 1 + 2 + 7 + 2; for (const gen of [1, 2, 3, 4, 5, 6, 7, 8, 9]) { it(`Gen ${gen} should have ${species[gen]} species and ${formes[gen]} formes`, () => { @@ -400,10 +400,12 @@ describe('Dex data', () => { // Vulpix (1) + Ninetales (1) + Wormadam (2) + Cherrim (1) + Rotom (5) + Origin (3) + Arceus (17) + // Shaymin (1) + Therian (4) + Hisui (16) + Basculin (1) + Basculegion (1) formes['gen8legends'] = 1 + 1 + 2 + 1 + 5 + 3 + 17 + 1 + 4 + 16 + 1 + 1; - species['gen9legends'] = 231; - // Mega (66) + Vivillon (2) + Floette (1) + Meowstic (1) + Aegislash (1) + Pumpkaboo (3) + Gourgeist (3) + - // Zygarde (2) + Alola (1) + Galar (4) - formes['gen9legends'] = 66 + 2 + 1 + 1 + 1 + 3 + 3 + 2 + 1 + 4; + species['gen9legends'] = 362; + // Mega (90) + Primal (2) + Rotom (5) + Keldeo (1) + Meloetta + Genesect (4) + Vivillon (2) + Floette (1) + + // Meowstic (1) + Aegislash (1) + Pumpkaboo (3) + Gourgeist (3) + Zygarde (2) + Mimikyu (1) + Magearna (1) + + // Alola (4) + Toxtricity (1) + Indeedee (1) + Morpeko (1) + Galar (8) + Hisui (1) + Squawkabilly (3) + + // Tatsugiri (2) + Gimmighoul (1) + formes['gen9legends'] = 92 + 2 + 5 + 1 + 1 + 4 + 2 + 1 + 1 + 1 + 3 + 3 + 2 + 1 + 1 + 4 + 1 + 1 + 1 + 8 + 1 + 3 + 2 + 1; for (const mod of ['gen7letsgo', 'gen8bdsp', 'gen8legends', 'gen9legends']) { it(`${mod} should have ${species[mod]} species and ${formes[mod]} formes`, () => {